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