diff options
-rw-r--r-- | libre/xtensa-elf-gcc/PKGBUILD | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/libre/xtensa-elf-gcc/PKGBUILD b/libre/xtensa-elf-gcc/PKGBUILD index 185dee992..a172c7a1f 100644 --- a/libre/xtensa-elf-gcc/PKGBUILD +++ b/libre/xtensa-elf-gcc/PKGBUILD @@ -2,25 +2,27 @@ _target=xtensa-elf pkgname=$_target-gcc -_pkgver=8.2.0 +_pkgver=8.3.0 #_snapshot=8-20180824 pkgver=$_pkgver${_snapshot/*-/+} -_islver=0.19 +_islver=0.20 pkgrel=1 -pkgdesc="The GNU Compiler Collection - cross compiler for Xtensa target" -arch=('x86_64' 'i686' 'armv7h') +pkgdesc='The GNU Compiler Collection - cross compiler for Xtensa target' +arch=(x86_64 i686 armv7h) url='http://gcc.gnu.org/' license=(GPL LGPL FDL) 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 +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=('64898a165f67e136d802a92e7633bf1b06c85266027e52127ea025bf5fc2291b5e858288aac0bdba246e6cdf7c6ec88bc8e0e7f3f6f1985f4297710cafde56ed' - '08f4db964d9e02ec8aa9779378ed76e0ddf1d56f81f87664dbf787555ce496cdc87e836f8a51ae137f45e648c604870cce07ee45919eafb549e404afb8f27083' +sha512sums=('1811337ae3add9680cec64968a2509d085b6dc5b6783fc1e8c295e3e47416196fd1a3ad8dfe7e10be2276b4f62c357659ce2902f239f60a8648548231b4b5802' + 'SKIP' + 'afe2e159b74646a26449268637403d271f9e3f6410d8cc1c9cffca41370c4357b165dea844db0c2a654591f954e54710dda650c8088abd4711406aa6302da950' '7637408259cef4b14a2f41690bbc769ad0dc6cf4d1c782405526aeb58f68193269af6882b23fb57c3521174e45709ed2d54f0af1f835646e70a3bfd9f626aad9') +validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek <jakub@redhat.com> if [ -n "$_snapshot" ]; then _basedir=gcc-$_snapshot @@ -41,11 +43,11 @@ prepare() { patch -p1 -i ../gcc.patch - mkdir $srcdir/build-gcc + mkdir $srcdir/gcc-build } build() { - cd build-gcc + cd gcc-build # using -pipe causes spurious test-suite failures # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565 @@ -78,15 +80,13 @@ build() { --with-mpc \ --with-isl \ --with-libelf \ - --enable-gnu-indirect-function \ - --with-pkgversion='Parabola Repository' \ - --with-bugurl='https://labs.parabola.nu/' + --enable-gnu-indirect-function make $MAKEFLAGS all-gcc } package() { - cd build-gcc + cd gcc-build make DESTDIR="$pkgdir" install-gcc |