Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypax/
Date: Mon, 22 Aug 2016 00:22:36
Message-Id: 1471825332.483173e88cf607d2ad1d92a1fc708b352009efa5.blueness@gentoo
1 commit: 483173e88cf607d2ad1d92a1fc708b352009efa5
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 22 00:22:12 2016 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 22 00:22:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=483173e8
7
8 dev-python/pypax: move python 3.5 support back to stable 0.9.2
9
10 Package-Manager: portage-2.2.28
11
12 dev-python/pypax/pypax-0.9.2-r1.ebuild | 49 ----------------------------------
13 dev-python/pypax/pypax-0.9.2.ebuild | 4 +--
14 2 files changed, 2 insertions(+), 51 deletions(-)
15
16 diff --git a/dev-python/pypax/pypax-0.9.2-r1.ebuild b/dev-python/pypax/pypax-0.9.2-r1.ebuild
17 deleted file mode 100644
18 index 0bf29a4..0000000
19 --- a/dev-python/pypax/pypax-0.9.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,49 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI="5"
27 -
28 -PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
29 -
30 -inherit distutils-r1
31 -
32 -if [[ ${PV} == "9999" ]] ; then
33 - EGIT_REPO_URI="git://anongit.gentoo.org/proj/elfix.git"
34 - inherit git-2
35 -else
36 - SRC_URI="https://dev.gentoo.org/~blueness/elfix/elfix-${PV}.tar.gz"
37 - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
38 - S="${WORKDIR}/elfix-${PV}"
39 -fi
40 -
41 -DESCRIPTION="Python module to get or set either PT_PAX and/or XATTR_PAX flags"
42 -HOMEPAGE="https://dev.gentoo.org/~blueness/elfix/
43 - https://www.gentoo.org/proj/en/hardened/pax-quickstart.xml"
44 -
45 -LICENSE="GPL-3"
46 -SLOT="0"
47 -IUSE="+ptpax +xtpax"
48 -
49 -REQUIRED_USE="|| ( ptpax xtpax )"
50 -
51 -RDEPEND="
52 - ptpax? ( dev-libs/elfutils )
53 - xtpax? ( sys-apps/attr )"
54 -
55 -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
56 - ${RDEPEND}"
57 -
58 -src_compile() {
59 - cd scripts
60 - unset PTPAX
61 - unset XTPAX
62 - use ptpax && export PTPAX="yes"
63 - use xtpax && export XTPAX="yes"
64 - distutils-r1_src_compile
65 -}
66 -
67 -src_install() {
68 - cd scripts
69 - distutils-r1_src_install
70 -}
71
72 diff --git a/dev-python/pypax/pypax-0.9.2.ebuild b/dev-python/pypax/pypax-0.9.2.ebuild
73 index 3122b9e..b6937a0 100644
74 --- a/dev-python/pypax/pypax-0.9.2.ebuild
75 +++ b/dev-python/pypax/pypax-0.9.2.ebuild
76 @@ -1,10 +1,10 @@
77 -# Copyright 1999-2015 Gentoo Foundation
78 +# Copyright 1999-2016 Gentoo Foundation
79 # Distributed under the terms of the GNU General Public License v2
80 # $Id$
81
82 EAPI="5"
83
84 -PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
85 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
86
87 inherit distutils-r1