mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-23 09:47:30 -08:00
This is a major rewrite for a major bump. As we can see in the bug referred below, a *lot* of work can be poured into this ebuild but we can also see that having too large a scope makes us never bump. Thus, I opted for a bump that didn't widen the scope of the v1.0.5 ebuild. We can always improve upon this ebuild later. This work is strongly inspired by maurerpe's fine work at https://github.com/maurerpe/arduino-overlay/tree/master/dev-embedded/arduino-ide but I scaled down the unbundling effort for simplicity's sake. Closes: https://bugs.gentoo.org/525882 Closes: https://github.com/gentoo/gentoo/pull/7166 Package-Manager: Portage-2.3.19, Repoman-2.3.6
32 lines
1.4 KiB
Diff
32 lines
1.4 KiB
Diff
diff --git a/build/build.xml b/build/build.xml
|
|
index d95f8def6..13ba60286 100644
|
|
--- a/build/build.xml
|
|
+++ b/build/build.xml
|
|
@@ -641,7 +641,7 @@
|
|
</chmod>
|
|
</target>
|
|
|
|
- <target name="linux-libastyle-x86" depends="linux-build" description="Download libastyle.so for x86/x64 arch">
|
|
+ <target name="linux-libastyle-x86" depends="linux-build" description="Download libastyle.so for x86/x64 arch" if="never">
|
|
<antcall target="unzip">
|
|
<param name="archive_file" value="./libastylej-2.05.1-3.zip" />
|
|
<param name="archive_url" value="https://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
|
|
@@ -666,7 +666,7 @@
|
|
|
|
</target>
|
|
|
|
- <target name="linux-libastyle-arm" depends="linux-build" description="Download libastyle.so for ARM">
|
|
+ <target name="linux-libastyle-arm" depends="linux-build" description="Download libastyle.so for ARM" if="never">
|
|
<antcall target="unzip">
|
|
<param name="archive_file" value="./libastylej-2.05.1-3.zip" />
|
|
<param name="archive_url" value="https://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
|
|
@@ -1186,7 +1186,7 @@
|
|
depends="linux-clean, windows-clean, macosx-clean, subprojects-clean">
|
|
</target>
|
|
|
|
- <target name="avr-toolchain-bundle" unless="light_bundle">
|
|
+ <target name="avr-toolchain-bundle" if="never">
|
|
<!-- Unzip AVR tools -->
|
|
<mkdir dir="${staging_folder}/work/${staging_hardware_folder}/tmp/gcc"/>
|
|
|