Hello community, here is the log from the commit of package pax-utils for openSUSE:Factory checked in at 2013-08-23 14:00:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/pax-utils (Old) and /work/SRC/openSUSE:Factory/.pax-utils.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "pax-utils" Changes: -------- --- /work/SRC/openSUSE:Factory/pax-utils/pax-utils.changes 2011-09-23 12:21:46.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.pax-utils.new/pax-utils.changes 2013-08-23 14:00:19.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Aug 19 19:22:35 UTC 2013 - [email protected] + +- pax-utils-lib64.patch: scanelf -l does not scan lib64 as + it should in x86_64 + +------------------------------------------------------------------- New: ---- pax-utils-lib64.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ pax-utils.spec ++++++ --- /var/tmp/diff_new_pack.1VLHZW/_old 2013-08-23 14:00:20.000000000 +0200 +++ /var/tmp/diff_new_pack.1VLHZW/_new 2013-08-23 14:00:20.000000000 +0200 @@ -1,7 +1,7 @@ # -# spec file for package pax-utils (Version 0.1.16) +# spec file for package pax-utils # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -14,8 +14,6 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # - -# norootforbuild # icecream 0 @@ -23,12 +21,13 @@ BuildRequires: libcap-devel Url: http://www.gentoo.org/proj/en/hardened/pax-utils.xml Summary: Tools to Check ELF Files for Security Relevant Properties -Version: 0.1.16 -Release: 42 License: GPL-2.0+ Group: Productivity/Security +Version: 0.1.16 +Release: 0 Source: http://dev.gentoo.org/~solar/pax/pax-utils-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build +Patch: pax-utils-lib64.patch %description Tools to check ELF files for security relevant properties such as @@ -42,7 +41,8 @@ Mike Frysinger <[email protected]> %prep -%setup +%setup -q +%patch %build # This package failed when testing with -Wl,-as-needed being default. ++++++ pax-utils-lib64.patch ++++++ --- scanelf.c.orig +++ scanelf.c @@ -1570,9 +1570,18 @@ static void scanelf_ldpath(void) ++i; } - if (!scan_l) scanelf_dir("/lib"); - if (!scan_ul) scanelf_dir("/usr/lib"); - if (!scan_ull) scanelf_dir("/usr/local/lib"); + if (!scan_l) { + scanelf_dir("/lib"); + scanelf_dir("/lib64"); + } + if (!scan_ul) { + scanelf_dir("/usr/lib"); + scanelf_dir("/usr/lib64"); + } + if (!scan_ull) { + scanelf_dir("/usr/local/lib"); + scanelf_dir("/usr/local/lib64"); + } } /* scan env PATH for paths */ -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
