diff options
author | randomnobody <nobody@420blaze.it> | 2022-08-26 01:15:39 +0000 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-09-03 09:22:29 +0300 |
commit | c74d1244ec0a6d3d897a3dec57ca5add9655da58 (patch) | |
tree | 29500c502af4699efab45b9fa213c5da1d472725 | |
parent | Update to 2.38 (diff) | |
download | i686-elf-binutils-master.tar.xz |
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 14 |
2 files changed, 12 insertions, 14 deletions
@@ -1,7 +1,7 @@ pkgbase = i686-elf-binutils pkgdesc = A set of programs to assemble and manipulate binary and object files for the i686-elf target - pkgver = 2.36.1 - pkgrel = 2 + pkgver = 2.39 + pkgrel = 1 url = http://www.gnu.org/software/binutils/ arch = i686 arch = x86_64 @@ -10,12 +10,10 @@ pkgbase = i686-elf-binutils depends = libelf options = !emptydirs options = !docs - source = http://mirrors.kernel.org/gnu/binutils/binutils-2.36.1.tar.xz - source = https://mirrors.kernel.org/gnu/binutils/binutils-2.36.1.tar.xz.sig - source = libiberty-ignore-cflags.patch + source = https://mirrors.kernel.org/gnu/binutils/binutils-2.39.tar.xz + source = https://mirrors.kernel.org/gnu/binutils/binutils-2.39.tar.xz.sig validpgpkeys = 3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F - sha256sums = e81d9edf373f193af428a0f256674aea62a9d74dfe93f65192d4eae030b0f3b0 + sha256sums = 645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00 sha256sums = SKIP - sha256sums = 8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c pkgname = i686-elf-binutils @@ -1,8 +1,9 @@ -# Maintainer: Finlay Maroney <finman292004@protonmail.com> +# Maintainer: randomnobody <nobody "at" 420blaze "dot" it> +# Contributor: Finlay Maroney <finman292004@protonmail.com> _target=i686-elf pkgname=$_target-binutils -pkgver=2.38 +pkgver=2.39 pkgrel=1 pkgdesc='A set of programs to assemble and manipulate binary and object files for the i686-elf target' arch=(i686 x86_64) @@ -10,11 +11,11 @@ url='http://www.gnu.org/software/binutils/' license=(GPL) depends=(zlib libelf) options=(!emptydirs !docs) -source=("http://mirrors.kernel.org/gnu/binutils/binutils-$pkgver.tar.xz" +source=("https://mirrors.kernel.org/gnu/binutils/binutils-$pkgver.tar.xz" "https://mirrors.kernel.org/gnu/binutils/binutils-$pkgver.tar.xz.sig" "libiberty-ignore-cflags.patch") _basedir=binutils-$pkgver -sha256sums=('e316477a914f567eccc34d5d29785b8b0f5a10208d36bbacedcc39048ecfe024' +sha256sums=('645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00' 'SKIP' '8b2aea00e98f7c311b1d0fb14e4b435a03c65fde32bc992c924edb6fa7b83c9c') validpgpkeys=("3A24BC1E8FB409FA9F14371813FCEF89DD9E3C4F") @@ -34,7 +35,7 @@ build() { --with-sysroot \ --prefix=/usr \ --bindir=/usr/bin \ - --libdir=/usr/lib/i686-elf/ \ + --libdir=/usr/lib/i686-elf/ \ --disable-nls \ --disable-werror @@ -43,7 +44,7 @@ build() { check() { cd binutils-build - + # do not abort on errors - manually check log files make -k check } @@ -55,4 +56,3 @@ package() { rm -r ${pkgdir}/usr/share/{info,man} } - |