Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pypax: ChangeLog pypax-0.8.0.ebuild
Date: Sat, 29 Dec 2012 15:27:13
Message-Id: 20121229152703.DEAA92171D@flycatcher.gentoo.org
1 blueness 12/12/29 15:27:03
2
3 Modified: ChangeLog
4 Added: pypax-0.8.0.ebuild
5 Log:
6 Version bump, use portage for link mappings in revdep-pax and migrate-pax
7
8 (Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.33 dev-python/pypax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 29 Dec 2012 14:24:30 -0000 1.32
24 +++ ChangeLog 29 Dec 2012 15:27:03 -0000 1.33
25 @@ -1,3 +1,6 @@
26 +# ChangeLog for dev-python/pypax
27 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.33 2012/12/29 15:27:03 blueness Exp $
29
30 29 Dec 2012; Agostino Sarubbo <ago@g.o> pypax-0.7.0.ebuild:
31 Stable for sparc, wrt bug #445334
32
33
34
35 1.1 dev-python/pypax/pypax-0.8.0.ebuild
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.0.ebuild?rev=1.1&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.0.ebuild?rev=1.1&content-type=text/plain
39
40 Index: pypax-0.8.0.ebuild
41 ===================================================================
42 # Copyright 1999-2012 Gentoo Foundation
43 # Distributed under the terms of the GNU General Public License v2
44 # $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/pypax-0.8.0.ebuild,v 1.1 2012/12/29 15:27:03 blueness Exp $
45
46 EAPI="3"
47
48 SUPPORT_PYTHON_ABIS="1"
49 RESTRICT_PYTHON_ABIS="*-jython"
50
51 inherit distutils
52
53 DESCRIPTION="Python module for reading or writing PaX flags to an ELF."
54 HOMEPAGE="http://dev.gentoo.org/~blueness/elfix/
55 http://www.gentoo.org/proj/en/hardened/pax-quickstart.xml"
56 SRC_URI="http://dev.gentoo.org/~blueness/elfix/elfix-${PV}.tar.gz"
57
58 S="${WORKDIR}/elfix-${PV}/scripts"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
63 IUSE="+ptpax +xtpax"
64
65 DEPEND="
66 dev-libs/elfutils
67 xtpax? ( sys-apps/attr )"
68
69 RDEPEND=""
70
71 src_compile() {
72 unset PTPAX
73 unset XTPAX
74 use ptpax && export PTPAX="yes"
75 use xtpax && export XTPAX="yes"
76 distutils_src_compile
77 }