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: pypax-0.8.2.ebuild ChangeLog
Date: Mon, 20 May 2013 22:05:42
Message-Id: 20130520220536.B84672171D@flycatcher.gentoo.org
1 blueness 13/05/20 22:05:36
2
3 Modified: ChangeLog
4 Added: pypax-0.8.2.ebuild
5 Log:
6 Version bump: avoid ELF_C_RDWR_MMAP for uclibc systems
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.61 dev-python/pypax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.61&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.61&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?r1=1.60&r2=1.61
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v
20 retrieving revision 1.60
21 retrieving revision 1.61
22 diff -u -r1.60 -r1.61
23 --- ChangeLog 13 Apr 2013 07:36:48 -0000 1.60
24 +++ ChangeLog 20 May 2013 22:05:36 -0000 1.61
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pypax
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.60 2013/04/13 07:36:48 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.61 2013/05/20 22:05:36 blueness Exp $
30 +
31 +*pypax-0.8.2 (20 May 2013)
32 +
33 + 20 May 2013; Anthony G. Basile <blueness@g.o> +pypax-0.8.2.ebuild:
34 + Version bump: avoid ELF_C_RDWR_MMAP for uclibc systems
35
36 13 Apr 2013; Agostino Sarubbo <ago@g.o> pypax-0.8.1-r1.ebuild:
37 Stable for sparc, wrt bug #464426
38
39
40
41 1.1 dev-python/pypax/pypax-0.8.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pypax-0.8.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/pypax-0.8.2.ebuild,v 1.1 2013/05/20 22:05:36 blueness Exp $
51
52 EAPI="5"
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} pypy{1_9,2_0} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Python module to get or set either PT_PAX and/or XATTR_PAX flags"
59 HOMEPAGE="http://dev.gentoo.org/~blueness/elfix/
60 http://www.gentoo.org/proj/en/hardened/pax-quickstart.xml"
61 SRC_URI="http://dev.gentoo.org/~blueness/elfix/elfix-${PV}.tar.gz"
62
63 S="${WORKDIR}/elfix-${PV}/scripts"
64
65 LICENSE="GPL-3"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
68 IUSE="+ptpax +xtpax"
69
70 REQUIRED_USE="|| ( ptpax xtpax )"
71
72 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
73 ptpax? ( dev-libs/elfutils )
74 xtpax? ( sys-apps/attr )"
75
76 RDEPEND=""
77
78 src_compile() {
79 unset PTPAX
80 unset XTPAX
81 use ptpax && export PTPAX="yes"
82 use xtpax && export XTPAX="yes"
83 }