diff options
author | David P <megver83@parabola.nu> | 2020-03-28 21:32:08 -0400 |
---|---|---|
committer | David P <megver83@parabola.nu> | 2020-03-28 21:32:08 -0400 |
commit | 259cb9cc22f8fd1c5b6947bd28afe2c9c768354c (patch) | |
tree | e28b8c7a8ffd7b2eddf3f9032d101d51566d3a31 | |
parent | 529f19a63f119b2554f23dd8841a134780ef7c39 (diff) | |
download | abslibre-259cb9cc22f8fd1c5b6947bd28afe2c9c768354c.tar.gz abslibre-259cb9cc22f8fd1c5b6947bd28afe2c9c768354c.tar.bz2 abslibre-259cb9cc22f8fd1c5b6947bd28afe2c9c768354c.zip |
updpkg: libre/xtensa-elf-gcc 9.3.0-1
Signed-off-by: David P <megver83@parabola.nu>
-rw-r--r-- | libre/xtensa-elf-gcc/PKGBUILD | 36 |
1 files changed, 16 insertions, 20 deletions
diff --git a/libre/xtensa-elf-gcc/PKGBUILD b/libre/xtensa-elf-gcc/PKGBUILD index 546bf2b64..730c3b9ff 100644 --- a/libre/xtensa-elf-gcc/PKGBUILD +++ b/libre/xtensa-elf-gcc/PKGBUILD @@ -2,10 +2,9 @@ _target=xtensa-elf pkgname=$_target-gcc -_pkgver=9.2.0 -#_snapshot=8-20180824 -pkgver=$_pkgver${_snapshot/*-/+} -_islver=0.21 +_pkgver=9.3.0 +pkgver=$_pkgver +_islver=0.22 pkgrel=1 pkgdesc='The GNU Compiler Collection - cross compiler for Xtensa target' arch=(x86_64 i686 armv7h) @@ -15,13 +14,10 @@ depends=($_target-binutils libmpc zlib) makedepends=(gmp mpfr) options=(!emptydirs !strip) source=(https://gcc.gnu.org/pub/gcc/releases/gcc-$_pkgver/gcc-$_pkgver.tar.xz{,.sig} - #https://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz - http://isl.gforge.inria.fr/isl-$_islver.tar.bz2 - https://raw.githubusercontent.com/qca/open-ath9k-htc-firmware/master/local/patches/gcc.patch) -sha512sums=('a12dff52af876aee0fd89a8d09cdc455f35ec46845e154023202392adc164848faf8ee881b59b681b696e27c69fd143a214014db4214db62f9891a1c8365c040' + http://isl.gforge.inria.fr/isl-$_islver.tar.bz2) +sha512sums=('4b9e3639eef6e623747a22c37a904b4750c93b6da77cf3958d5047e9b5ebddb7eebe091cc16ca0a227c0ecbd2bf3b984b221130f269a97ee4cc18f9cf6c444de' 'SKIP' - '48f3b8d90550e8ab28837b5757f87bf99cddec67769877e04942abef69bbe526ef4c863951d55dd89a6027dc09df48988c8df6029782f990aa4d5b67e65f6d53' - '7637408259cef4b14a2f41690bbc769ad0dc6cf4d1c782405526aeb58f68193269af6882b23fb57c3521174e45709ed2d54f0af1f835646e70a3bfd9f626aad9') + 'fc2c9796979610dd51143dcefe4f5c989c4354571cc5a1fcc6b932fd41f42a54f6b43adfd289af61be7bd06f3a523fa6a7d7ee56680e32d8036beb4c188fa668') validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek <jakub@redhat.com> if [ -n "$_snapshot" ]; then @@ -40,8 +36,6 @@ prepare() { # hack! - some configure tests for header files using "$CPP $CPPFLAGS" sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" "$srcdir"/$_basedir/{libiberty,gcc}/configure - - patch -p1 -i ../gcc.patch mkdir $srcdir/gcc-build } @@ -82,21 +76,23 @@ build() { --with-libelf \ --enable-gnu-indirect-function - make $MAKEFLAGS all-gcc + make all-gcc } package() { - cd gcc-build - - make DESTDIR="$pkgdir" install-gcc + make -C gcc-build DESTDIR="$pkgdir" install-gcc # strip target binaries - find "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( -name \*.a -or -name \*.o \) -exec $_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' \; + find "$pkgdir"/usr/lib/gcc/$_target/ \ + -type f -and \( -name \*.a -or -name \*.o \) \ + -exec $_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges \ + -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line \ + -R .debug_str -R .debug_ranges -R .debug_loc '{}' \; # strip host binaries - find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( -executable \) -exec strip '{}' \; + find "$pkgdir/usr/bin/" "$pkgdir/usr/lib/gcc/$_target/" -type f \ + -and \( -executable \) -exec strip '{}' \; # Remove files that conflict with host gcc package - rm -r "$pkgdir"/usr/share/man/man7 - rm -r "$pkgdir"/usr/share/info + rm -r "$pkgdir/usr/share/"{man/man7,info} } |