Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/pax-utils: pax-utils-1.0.3.ebuild ChangeLog
Date: Sun, 29 Mar 2015 20:12:07
Message-Id: 20150329201200.51D9814CC2@oystercatcher.gentoo.org
1 vapier 15/03/29 20:11:59
2
3 Modified: ChangeLog
4 Added: pax-utils-1.0.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
9
10 Revision Changes Path
11 1.174 app-misc/pax-utils/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?rev=1.174&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?rev=1.174&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/ChangeLog?r1=1.173&r2=1.174
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v
20 retrieving revision 1.173
21 retrieving revision 1.174
22 diff -u -r1.173 -r1.174
23 --- ChangeLog 10 Mar 2015 05:34:03 -0000 1.173
24 +++ ChangeLog 29 Mar 2015 20:11:59 -0000 1.174
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/pax-utils
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.173 2015/03/10 05:34:03 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/ChangeLog,v 1.174 2015/03/29 20:11:59 vapier Exp $
30 +
31 +*pax-utils-1.0.3 (29 Mar 2015)
32 +
33 + 29 Mar 2015; Mike Frysinger <vapier@g.o> +pax-utils-1.0.3.ebuild:
34 + Version bump.
35
36 *pax-utils-1.0.2 (10 Mar 2015)
37
38
39
40
41 1.1 app-misc/pax-utils/pax-utils-1.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pax-utils-1.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-misc/pax-utils/pax-utils-1.0.3.ebuild,v 1.1 2015/03/29 20:11:59 vapier Exp $
51
52 EAPI="4"
53
54 inherit eutils toolchain-funcs unpacker
55
56 DESCRIPTION="ELF related utils for ELF 32/64 binaries that can check files for security relevant properties"
57 HOMEPAGE="https://wiki.gentoo.org/index.php?title=Project:Hardened/PaX_Utilities"
58 SRC_URI="mirror://gentoo/pax-utils-${PV}.tar.xz
59 http://dev.gentoo.org/~solar/pax/pax-utils-${PV}.tar.xz
60 http://dev.gentoo.org/~vapier/dist/pax-utils-${PV}.tar.xz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
65 IUSE="caps python"
66
67 RDEPEND="caps? ( sys-libs/libcap )
68 python? ( dev-python/pyelftools )"
69 DEPEND="${RDEPEND}
70 app-arch/xz-utils"
71
72 _emake() {
73 emake \
74 USE_CAP=$(usex caps) \
75 USE_PYTHON=$(usex python) \
76 "$@"
77 }
78
79 src_configure() {
80 # Avoid slow configure+gnulib+make if on an up-to-date Linux system
81 if use prefix || ! use kernel_linux || \
82 has_version '<sys-libs/glibc-2.10'
83 then
84 econf $(use_with caps) $(use_with python)
85 else
86 tc-export CC
87 fi
88 }
89
90 src_compile() {
91 _emake
92 }
93
94 src_test() {
95 _emake check
96 }
97
98 src_install() {
99 _emake DESTDIR="${ED}" PKGDOCDIR='$(DOCDIR)'/${PF} install
100 }