diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-06-07 14:33:54 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-06-07 14:33:54 +0000 |
commit | e033d4f61b2e51b27dd1e0c6f0a13c3642c663f7 (patch) | |
tree | 334eda5f55e8d0547b7f99c5c0859331c4dd1961 /dev-python/pypax | |
parent | Fix libmwaw version, bug 511518 (diff) | |
download | gentoo-2-e033d4f61b2e51b27dd1e0c6f0a13c3642c663f7.tar.gz gentoo-2-e033d4f61b2e51b27dd1e0c6f0a13c3642c663f7.tar.bz2 gentoo-2-e033d4f61b2e51b27dd1e0c6f0a13c3642c663f7.zip |
Version bump
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Diffstat (limited to 'dev-python/pypax')
-rw-r--r-- | dev-python/pypax/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/pypax/pypax-0.8.5.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/dev-python/pypax/ChangeLog b/dev-python/pypax/ChangeLog index b5c8515968d3..02a97d03b5e5 100644 --- a/dev-python/pypax/ChangeLog +++ b/dev-python/pypax/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/pypax # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.84 2014/03/31 21:23:38 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.85 2014/06/07 14:33:54 blueness Exp $ + +*pypax-0.8.5 (07 Jun 2014) + + 07 Jun 2014; Anthony G. Basile <blueness@gentoo.org> +pypax-0.8.5.ebuild: + Version bump 31 Mar 2014; Michał Górny <mgorny@gentoo.org> pypax-0.8.1-r1.ebuild, pypax-0.8.3.ebuild, pypax-0.8.4.ebuild: diff --git a/dev-python/pypax/pypax-0.8.5.ebuild b/dev-python/pypax/pypax-0.8.5.ebuild new file mode 100644 index 000000000000..ea885f848a28 --- /dev/null +++ b/dev-python/pypax/pypax-0.8.5.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/pypax-0.8.5.ebuild,v 1.1 2014/06/07 14:33:54 blueness Exp $ + +EAPI="5" + +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 ) + +inherit distutils-r1 + +DESCRIPTION="Python module to get or set either PT_PAX and/or XATTR_PAX flags" +HOMEPAGE="http://dev.gentoo.org/~blueness/elfix/ + http://www.gentoo.org/proj/en/hardened/pax-quickstart.xml" +SRC_URI="http://dev.gentoo.org/~blueness/elfix/elfix-${PV}.tar.gz" + +S="${WORKDIR}/elfix-${PV}/scripts" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="+ptpax +xtpax" + +REQUIRED_USE="|| ( ptpax xtpax )" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + ptpax? ( dev-libs/elfutils ) + xtpax? ( sys-apps/attr )" + +RDEPEND="" + +src_compile() { + unset PTPAX + unset XTPAX + use ptpax && export PTPAX="yes" + use xtpax && export XTPAX="yes" + distutils-r1_src_compile +} |