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.5.ebuild ChangeLog
Date: Sat, 07 Jun 2014 14:33:59
Message-Id: 20140607143355.231FA2004E@flycatcher.gentoo.org
1 blueness 14/06/07 14:33:55
2
3 Modified: ChangeLog
4 Added: pypax-0.8.5.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
9
10 Revision Changes Path
11 1.85 dev-python/pypax/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.85&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?rev=1.85&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/ChangeLog?r1=1.84&r2=1.85
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v
20 retrieving revision 1.84
21 retrieving revision 1.85
22 diff -u -r1.84 -r1.85
23 --- ChangeLog 31 Mar 2014 21:23:38 -0000 1.84
24 +++ ChangeLog 7 Jun 2014 14:33:54 -0000 1.85
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pypax
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.84 2014/03/31 21:23:38 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.85 2014/06/07 14:33:54 blueness Exp $
30 +
31 +*pypax-0.8.5 (07 Jun 2014)
32 +
33 + 07 Jun 2014; Anthony G. Basile <blueness@g.o> +pypax-0.8.5.ebuild:
34 + Version bump
35
36 31 Mar 2014; Michał Górny <mgorny@g.o> pypax-0.8.1-r1.ebuild,
37 pypax-0.8.3.ebuild, pypax-0.8.4.ebuild:
38
39
40
41 1.1 dev-python/pypax/pypax-0.8.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pypax/pypax-0.8.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pypax-0.8.5.ebuild
47 ===================================================================
48 # Copyright 1999-2014 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.5.ebuild,v 1.1 2014/06/07 14:33:54 blueness Exp $
51
52 EAPI="5"
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_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 distutils-r1_src_compile
84 }