summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-29 17:41:45 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-29 17:41:45 +0000
commit1cc521e47d703c69471cf8fc93dbe76a35489807 (patch)
tree51746346a53549aa94da3d0c820dcca4d633a59a /dev-python/ipy
parentAdd ~sparc (diff)
downloadgentoo-2-1cc521e47d703c69471cf8fc93dbe76a35489807.tar.gz
gentoo-2-1cc521e47d703c69471cf8fc93dbe76a35489807.tar.bz2
gentoo-2-1cc521e47d703c69471cf8fc93dbe76a35489807.zip
Delete older ebuilds.
Diffstat (limited to 'dev-python/ipy')
-rw-r--r--dev-python/ipy/ipy-0.56.ebuild30
-rw-r--r--dev-python/ipy/ipy-0.63.ebuild50
2 files changed, 0 insertions, 80 deletions
diff --git a/dev-python/ipy/ipy-0.56.ebuild b/dev-python/ipy/ipy-0.56.ebuild
deleted file mode 100644
index c530c34719ce..000000000000
--- a/dev-python/ipy/ipy-0.56.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# 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.56.ebuild,v 1.2 2009/09/07 21:18:01 maekke Exp $
-
-inherit distutils
-
-MY_P="${P/ip/IP}"
-
-DESCRIPTION="A python Module for handling IP-Addresses and Networks"
-SRC_URI="http://cheeseshop.python.org/packages/source/I/IPy/${MY_P}.tar.gz"
-HOMEPAGE="http://software.inl.fr/trac/trac.cgi/wiki/IPy"
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="amd64 ~ppc ~ppc64 ~sparc x86"
-IUSE="examples"
-
-S="${WORKDIR}/${MY_P}"
-
-src_test() {
- PYTHONPATH=. "${python}" test/test_IPy.py || die "src_test failed"
-}
-
-src_install() {
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r example
- fi
-}
diff --git a/dev-python/ipy/ipy-0.63.ebuild b/dev-python/ipy/ipy-0.63.ebuild
deleted file mode 100644
index 309913b2283e..000000000000
--- a/dev-python/ipy/ipy-0.63.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.63.ebuild,v 1.1 2009/08/28 22:24:02 arfrever Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-MY_P="${P/ip/IP}"
-
-DESCRIPTION="A python Module for handling IP-Addresses and Networks"
-HOMEPAGE="http://software.inl.fr/trac/trac.cgi/wiki/IPy"
-SRC_URI="http://cheeseshop.python.org/packages/source/I/IPy/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="examples"
-
-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
-}
-
-src_install() {
- distutils_src_install
-
- if use examples; then
- insinto /usr/share/doc/${PF}
- doins -r example
- fi
-}
-
-pkg_postinst() {
- python_mod_optimize IPy.py
-}
-
-pkg_postrm() {
- python_mod_cleanup
-}