summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-16 20:40:41 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-16 20:40:41 +0000
commit91479cd620d605adb886fb76e282d2bdf2f35d8a (patch)
treed4bad0a5f25f7dd924520c0c5c801ad3c1e3c223 /dev-python/apipkg
parentVersion bump. (diff)
downloadgentoo-2-91479cd620d605adb886fb76e282d2bdf2f35d8a.tar.gz
gentoo-2-91479cd620d605adb886fb76e282d2bdf2f35d8a.tar.bz2
gentoo-2-91479cd620d605adb886fb76e282d2bdf2f35d8a.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/apipkg')
-rw-r--r--dev-python/apipkg/apipkg-1.0_beta6.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/apipkg/apipkg-1.0_beta6.ebuild b/dev-python/apipkg/apipkg-1.0_beta6.ebuild
deleted file mode 100644
index b448fa039fa2..000000000000
--- a/dev-python/apipkg/apipkg-1.0_beta6.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/apipkg/apipkg-1.0_beta6.ebuild,v 1.1 2010/10/02 23:18:01 arfrever Exp $
-
-EAPI="3"
-SUPPORT_PYTHON_ABIS="1"
-DISTUTILS_SRC_TEST="py.test"
-
-inherit distutils
-
-MY_P="${PN}-${PV/_beta/b}"
-
-DESCRIPTION="apipkg: namespace control and lazy-import mechanism"
-HOMEPAGE="http://pypi.python.org/pypi/apipkg"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/setuptools"
-RDEPEND=""
-
-S="${WORKDIR}/${MY_P}"
-
-DOCS="CHANGELOG README.txt"
-PYTHON_MODNAME="apipkg.py"
-
-src_prepare() {
- distutils_src_prepare
-
- # Fix tests with Python 3.
- sed \
- -e "s/print (realtest.x.module.__map__)/print((realtest.x.module.__map__))/" \
- -e "s/print mod.__dict__.keys()/print(list(mod.__dict__.keys()))/" \
- -i test_apipkg.py
-
- # Disable failing test.
- sed -e "s/test_onfirstaccess_setsnewattr/_&/" -i test_apipkg.py
-}