From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] elfutils: Update to 0.177 Date: Mon, 02 Sep 2019 14:06:34 +0200 Message-ID: <20190902120634.11893-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1294797925059320294==" List-Id: --===============1294797925059320294== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable * Update project and download URL Signed-off-by: Stefan Schantl --- elfutils/elfutils.nm | 8 +-- .../elfutils-0.166-elfcmp-comp-gcc6.patch | 50 ------------------- 2 files changed, 4 insertions(+), 54 deletions(-) delete mode 100644 elfutils/patches/elfutils-0.166-elfcmp-comp-gcc6.patch diff --git a/elfutils/elfutils.nm b/elfutils/elfutils.nm index 6e3c32df9..f9bde8a6e 100644 --- a/elfutils/elfutils.nm +++ b/elfutils/elfutils.nm @@ -4,12 +4,12 @@ ############################################################################= ### =20 name =3D elfutils -version =3D 0.166 +version =3D 0.177 release =3D 1 =20 maintainer =3D Michael Tremer groups =3D Development/Libraries -url =3D https://fedorahosted.org/elfutils/ +url =3D https://sourceware.org/elfutils/ license =3D GPLv2 with exceptions summary =3D A collection of utilities and DSOs to handle compiled objects. =20 @@ -21,7 +21,7 @@ description (to check for well-formed ELF files). end =20 -source_dl =3D https://fedorahosted.org/releases/e/l/elfutils/%{version}/ +source_dl =3D https://sourceware.org/elfutils/ftp/%{version} sources =3D %{thisapp}.tar.bz2 =20 build @@ -32,7 +32,7 @@ build zlib-devel end =20 - # fails + # TEST: run-elfclassify.sh fails #test # make check #end diff --git a/elfutils/patches/elfutils-0.166-elfcmp-comp-gcc6.patch b/elfutil= s/patches/elfutils-0.166-elfcmp-comp-gcc6.patch deleted file mode 100644 index 2183b35c5..000000000 --- a/elfutils/patches/elfutils-0.166-elfcmp-comp-gcc6.patch +++ /dev/null @@ -1,50 +0,0 @@ -From 836a16fe5b5bab4a3afe2c991c104652775ce3a3 Mon Sep 17 00:00:00 2001 -From: David Abdurachmanov -Date: Mon, 11 Apr 2016 16:00:57 +0200 -Subject: [PATCH] elfcmp: fix self-comparison error with GCC 6 -MIME-Version: 1.0 -Content-Type: text/plain; charset=3DUTF-8 -Content-Transfer-Encoding: 8bit - -Noticed with Fedora 24 Alpha, gcc (GCC) 6.0.0 20160406 -(Red Hat 6.0.0-0.20). - -elfcmp.c: In function =E2=80=98main=E2=80=99: -elfcmp.c:364:199: error: self-comparison always evaluates -to false [-Werror=3Dtautological-compare] - if (unlikely (name1 =3D=3D NULL || name2 =3D=3D NULL - -Signed-off-by: David Abdurachmanov ---- - src/ChangeLog | 4 ++++ - src/elfcmp.c | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -diff --git a/src/ChangeLog b/src/ChangeLog -index f74b5dc..bdc9d13 100644 ---- a/src/ChangeLog -+++ b/src/ChangeLog -@@ -1,3 +1,7 @@ -+2016-04-11 David Abdurachmanov -+ -+ * elfcmp.c (main): Fix self-comparison error with GCC 6. -+ - 2016-03-21 Mark Wielaard -=20 - * nm.c (show_symbols): Check for malloc size argument overflow. -diff --git a/src/elfcmp.c b/src/elfcmp.c -index 852b92f..7b5d39c 100644 ---- a/src/elfcmp.c -+++ b/src/elfcmp.c -@@ -368,7 +368,7 @@ main (int argc, char *argv[]) - && sym1->st_shndx !=3D SHN_UNDEF) - || sym1->st_info !=3D sym2->st_info - || sym1->st_other !=3D sym2->st_other -- || sym1->st_shndx !=3D sym1->st_shndx)) -+ || sym1->st_shndx !=3D sym2->st_shndx)) - { - // XXX Do we want to allow reordered symbol tables? - symtab_mismatch: ---=20 -1.8.3.1 - --=20 2.20.1 --===============1294797925059320294==--