Skip to content

Commit b99d55b

Browse files
committed
Add missing tools checksums
1 parent 6080907 commit b99d55b

10 files changed

+10
-5
lines changed

arduino-core/src/cc/arduino/contributions/packages/HostDependentDownloadableContribution.java

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ public boolean isCompatible(Platform platform) {
6060
// Debian 7.9 on BBB: "arm-linux-gnueabihf"
6161
// Raspbian on PI Zero: "arm-linux-gnueabihf"
6262
return host.matches("arm.*-linux-gnueabihf");
63+
} else if (osArch.contains("aarch64")) {
64+
return host.matches("aarch64.*-linux-gnu*");
6365
} else if (osArch.contains("amd64")) {
6466
return host.matches("x86_64-.*linux-gnu");
6567
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8daedfa3cd5571f2df24639952ff041da9852360

build/build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
<property name="portable" value="false" />
9696

9797
<property name="ARDUINO-BUILDER-VERSION" value="1.4.0" />
98-
<property name="LIBLISTSERIAL-VERSION" value="1.4.0" />
98+
<property name="LIBLISTSERIAL-VERSION" value="1.4.1" />
9999
<property name="AVRGCC-VERSION" value="5.4.0-atmel3.6.1-arduino2" />
100100
<property name="AVRDUDE-VERSION" value="6.3.0-arduino14" />
101101
<property name="AVRCORE-VERSION" value="1.6.22" />
@@ -731,7 +731,7 @@
731731
</antcall>
732732

733733
<antcall target="unzip">
734-
<param name="archive_file" value="./liblistSerials-${LIBLISTSERIAL-VERSION}-2.zip" />
734+
<param name="archive_file" value="./liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
735735
<param name="archive_url" value="https://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
736736
<param name="final_folder" value="${staging_folder}/liblistSerials-${LIBLISTSERIAL-VERSION}" />
737737
<param name="dest_folder" value="${staging_folder}" />

build/libastylej-2.05.1-3.zip.sha

-1
This file was deleted.

build/libastylej-2.05.1-4.zip.sha

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
821c2b8c7560f9ff934b052e2b26eaeca05ea28f
1+
5ececb9bf18622f1ab61cd5cf9751ee0556a77e9

build/liblistSerials-1.4.0.zip.sha

-1
This file was deleted.

build/liblistSerials-1.4.1.zip.sha

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
b9de6fb3b4a9828bf200051e7eac093225fd52c9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6c6b568c7aac03a08f633c92569fb77e807c8d34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
c516f845e0f673a408bb93224cb4366f3d3e1284
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ae9ce82d51e3d568eca7f6594c28c863dc39fbf1

0 commit comments

Comments
 (0)