diff options
author | 2012-05-24 01:11:52 +0000 | |
---|---|---|
committer | 2012-05-24 01:11:52 +0000 | |
commit | a03344e956ef1443dfe4451c986f51b6455ec914 (patch) | |
tree | b895c698483c456c493ed48633381dca3cdfe2b4 /dev-python/miniupnpc | |
parent | Version bump as required by net-p2p/transmission >= 2.52. Build static archiv... (diff) | |
download | gentoo-2-a03344e956ef1443dfe4451c986f51b6455ec914.tar.gz gentoo-2-a03344e956ef1443dfe4451c986f51b6455ec914.tar.bz2 gentoo-2-a03344e956ef1443dfe4451c986f51b6455ec914.zip |
Version bump with ~ppc/~ppc64 keywording. Require at least Python 2.6 and restrict Python 2.5 to declare it unsupported.
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/miniupnpc')
-rw-r--r-- | dev-python/miniupnpc/ChangeLog | 9 | ||||
-rw-r--r-- | dev-python/miniupnpc/miniupnpc-1.6.20120509.ebuild | 30 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-python/miniupnpc/ChangeLog b/dev-python/miniupnpc/ChangeLog index 21611faed291..c347a2d547ba 100644 --- a/dev-python/miniupnpc/ChangeLog +++ b/dev-python/miniupnpc/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-python/miniupnpc # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/miniupnpc/ChangeLog,v 1.2 2012/02/21 08:29:34 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/miniupnpc/ChangeLog,v 1.3 2012/05/24 01:11:52 ssuominen Exp $ + +*miniupnpc-1.6.20120509 (24 May 2012) + + 24 May 2012; Samuli Suominen <ssuominen@gentoo.org> + +miniupnpc-1.6.20120509.ebuild: + Version bump with ~ppc/~ppc64 keywording. Require at least Python 2.6 and + restrict Python 2.5 to declare it unsupported. 21 Feb 2012; Patrick Lauer <patrick@gentoo.org> miniupnpc-1.6.ebuild: Restricting jython diff --git a/dev-python/miniupnpc/miniupnpc-1.6.20120509.ebuild b/dev-python/miniupnpc/miniupnpc-1.6.20120509.ebuild new file mode 100644 index 000000000000..dcce0cfde0a7 --- /dev/null +++ b/dev-python/miniupnpc/miniupnpc-1.6.20120509.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/miniupnpc/miniupnpc-1.6.20120509.ebuild,v 1.1 2012/05/24 01:11:52 ssuominen Exp $ + +EAPI=4 + +SUPPORT_PYTHON_ABIS=1 +PYTHON_DEPEND="2:2.6" +RESTRICT_PYTHON_ABIS="2.5 3.* *-jython" + +inherit distutils eutils + +DESCRIPTION="UPnP client library and a simple UPnP client" +HOMEPAGE="http://miniupnp.free.fr/" +SRC_URI="http://miniupnp.free.fr/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND=">=net-libs/miniupnpc-${PV}" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/0001-Link-Python-module-against-the-shared-library.patch + rm -f Changelog.txt README # Installed by net-libs/miniupnpc + + distutils_src_prepare +} |