diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2014-11-03 12:57:56 +0000 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-11-03 12:57:56 +0000 |
commit | f9a89873868fb404869e046e65f97070dfc2df5b (patch) | |
tree | 7c73b5b7c54c2e9356f8ecfe3cc9118afb7fab68 /dev-python/pypax | |
parent | Update PostgreSQL dependencies and/or checks to virtual/postgresql. (diff) | |
download | gentoo-2-f9a89873868fb404869e046e65f97070dfc2df5b.tar.gz gentoo-2-f9a89873868fb404869e046e65f97070dfc2df5b.tar.bz2 gentoo-2-f9a89873868fb404869e046e65f97070dfc2df5b.zip |
Version bump
(Portage version: 2.2.8-r2/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.9.0.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/dev-python/pypax/ChangeLog b/dev-python/pypax/ChangeLog index 6bde45a82a97..2a57a303abe1 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.90 2014/09/08 20:49:32 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/ChangeLog,v 1.91 2014/11/03 12:57:56 blueness Exp $ + +*pypax-0.9.0 (03 Nov 2014) + + 03 Nov 2014; Anthony G. Basile <blueness@gentoo.org> +pypax-0.9.0.ebuild: + Version bump 08 Sep 2014; Anthony G. Basile <blueness@gentoo.org> -pypax-0.8.1-r1.ebuild, -pypax-0.8.3.ebuild, -pypax-0.8.5.ebuild, pypax-0.8.4.ebuild, diff --git a/dev-python/pypax/pypax-0.9.0.ebuild b/dev-python/pypax/pypax-0.9.0.ebuild new file mode 100644 index 000000000000..ce662a2dcdcc --- /dev/null +++ b/dev-python/pypax/pypax-0.9.0.ebuild @@ -0,0 +1,38 @@ +# 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.9.0.ebuild,v 1.1 2014/11/03 12:57:56 blueness Exp $ + +EAPI="5" + +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy ) + +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 )" + +RDEPEND=" + ptpax? ( dev-libs/elfutils ) + xtpax? ( sys-apps/attr )" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + ${RDEPEND}" + +src_compile() { + unset PTPAX + unset XTPAX + use ptpax && export PTPAX="yes" + use xtpax && export XTPAX="yes" + distutils-r1_src_compile +} |