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
commit36b0ec07f6e345e81ad7e1fa025cc3eeac46c6e8 (patch)
tree4f18580dc18666fea13b39832c321981f45cc9de /dev-python/apipkg
parentVersion bump. (diff)
downloadhistorical-36b0ec07f6e345e81ad7e1fa025cc3eeac46c6e8.tar.gz
historical-36b0ec07f6e345e81ad7e1fa025cc3eeac46c6e8.tar.bz2
historical-36b0ec07f6e345e81ad7e1fa025cc3eeac46c6e8.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
-}