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.1-r1.ebuild ChangeLog
Date: Thu, 28 Feb 2013 14:39:47
Message-Id: 20130228143944.7470A2171D@flycatcher.gentoo.org
1 blueness 13/02/28 14:39:44
2
3 Modified: ChangeLog
4 Added: pypax-0.8.1-r1.ebuild
5 Log:
6 Build with python 2.5, bug #459632
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.51 dev-python/pypax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.51&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.51&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?r1=1.50&r2=1.51
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v
20 retrieving revision 1.50
21 retrieving revision 1.51
22 diff -u -r1.50 -r1.51
23 --- ChangeLog 20 Feb 2013 15:01:15 -0000 1.50
24 +++ ChangeLog 28 Feb 2013 14:39:44 -0000 1.51
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.50 2013/02/20 15:01:15 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.51 2013/02/28 14:39:44 blueness Exp $
30 +
31 +*pypax-0.8.1-r1 (28 Feb 2013)
32 +
33 + 28 Feb 2013; Anthony G. Basile <blueness@g.o> +pypax-0.8.1-r1.ebuild:
34 + Build with python 2.5, bug #459632
35
36 20 Feb 2013; Jeroen Roovers <jer@g.o> pypax-0.8.1.ebuild:
37 Stable for HPPA (bug #456656).
38
39
40
41 1.1 dev-python/pypax/pypax-0.8.1-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.1-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.1-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pypax-0.8.1-r1.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.1-r1.ebuild,v 1.1 2013/02/28 14:39:44 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 }