diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-01-22 08:19:34 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-01-22 08:19:34 +0000 |
commit | e1b33b94a180d7704c5503b4dcaf8602fa07c214 (patch) | |
tree | 5b1af823877893cf71285450c1326215f7356381 /dev-python/python-prctl | |
parent | Bump (diff) | |
download | gentoo-2-e1b33b94a180d7704c5503b4dcaf8602fa07c214.tar.gz gentoo-2-e1b33b94a180d7704c5503b4dcaf8602fa07c214.tar.bz2 gentoo-2-e1b33b94a180d7704c5503b4dcaf8602fa07c214.zip |
Bump
(Portage version: 2.2.0_alpha159/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-python/python-prctl')
-rw-r--r-- | dev-python/python-prctl/ChangeLog | 10 | ||||
-rw-r--r-- | dev-python/python-prctl/python-prctl-1.4.0.ebuild | 30 |
2 files changed, 37 insertions, 3 deletions
diff --git a/dev-python/python-prctl/ChangeLog b/dev-python/python-prctl/ChangeLog index a387914b4c37..f604a6955c24 100644 --- a/dev-python/python-prctl/ChangeLog +++ b/dev-python/python-prctl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/python-prctl -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/python-prctl/ChangeLog,v 1.2 2012/02/23 10:21:48 patrick Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-prctl/ChangeLog,v 1.3 2013/01/22 08:19:34 patrick Exp $ + +*python-prctl-1.4.0 (22 Jan 2013) + + 22 Jan 2013; Patrick Lauer <patrick@gentoo.org> +python-prctl-1.4.0.ebuild: + Bump 23 Feb 2012; Patrick Lauer <patrick@gentoo.org> python-prctl-1.3.1.ebuild: Restricting python @@ -10,4 +15,3 @@ 19 Nov 2011; Samuli Suominen <ssuominen@gentoo.org> +python-prctl-1.3.1.ebuild: Initial commit. - diff --git a/dev-python/python-prctl/python-prctl-1.4.0.ebuild b/dev-python/python-prctl/python-prctl-1.4.0.ebuild new file mode 100644 index 000000000000..3145a1d3a6ee --- /dev/null +++ b/dev-python/python-prctl/python-prctl-1.4.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-prctl/python-prctl-1.4.0.ebuild,v 1.1 2013/01/22 08:19:34 patrick Exp $ + +EAPI=3 + +PYTHON_DEPEND="2:2.6" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" + +inherit distutils + +DESCRIPTION="Control process attributes through prctl" +HOMEPAGE="http://github.com/seveas/python-prctl" +SRC_URI="http://github.com/seveas/${PN}/tarball/v${PV} -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="sys-libs/libcap" +DEPEND="${RDEPEND}" + +PYTHON_MODNAME="prctl.py" + +src_unpack() { + unpack ${A} + mv *-${PN}-* "${S}" +} |