diff options
Diffstat (limited to 'dev-python/ipy')
-rw-r--r-- | dev-python/ipy/ChangeLog | 8 | ||||
-rw-r--r-- | dev-python/ipy/ipy-0.70.ebuild | 41 |
2 files changed, 48 insertions, 1 deletions
diff --git a/dev-python/ipy/ChangeLog b/dev-python/ipy/ChangeLog index 32e5842e1bdb..b2ed2084913e 100644 --- a/dev-python/ipy/ChangeLog +++ b/dev-python/ipy/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-python/ipy # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ipy/ChangeLog,v 1.15 2009/10/03 22:18:27 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipy/ChangeLog,v 1.16 2009/10/30 20:19:31 arfrever Exp $ + +*ipy-0.70 (30 Oct 2009) + + 30 Oct 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + +ipy-0.70.ebuild: + Version bump. *ipy-0.64 (04 Oct 2009) diff --git a/dev-python/ipy/ipy-0.70.ebuild b/dev-python/ipy/ipy-0.70.ebuild new file mode 100644 index 000000000000..2e98bdd06c22 --- /dev/null +++ b/dev-python/ipy/ipy-0.70.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ipy/ipy-0.70.ebuild,v 1.1 2009/10/30 20:19:31 arfrever Exp $ + +EAPI="2" +SUPPORT_PYTHON_ABIS="1" + +inherit distutils + +MY_PN="IPy" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="A python Module for handling IP-Addresses and Networks" +HOMEPAGE="http://software.inl.fr/trac/trac.cgi/wiki/IPy http://pypi.python.org/pypi/IPy" +SRC_URI="http://pypi.python.org/packages/source/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" +RESTRICT_PYTHON_ABIS="3.*" + +S="${WORKDIR}/${MY_P}" + +src_test() { + testing() { + PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" test/test_IPy.py + } + python_execute_function testing +} + +pkg_postinst() { + python_mod_optimize IPy.py +} + +pkg_postrm() { + python_mod_cleanup +} |