summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-14 16:39:08 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-11-14 16:39:08 +0000
commit756589df0652a8ccbad144fd2e551112c9843158 (patch)
treefa9316d9b810d98143a063c7bee9e22a47d33dec /dev-python/testoob
parentDisable build of 11x client. (diff)
downloadhistorical-756589df0652a8ccbad144fd2e551112c9843158.tar.gz
historical-756589df0652a8ccbad144fd2e551112c9843158.tar.bz2
historical-756589df0652a8ccbad144fd2e551112c9843158.zip
Delete older ebuilds.
Diffstat (limited to 'dev-python/testoob')
-rw-r--r--dev-python/testoob/testoob-1.12.ebuild35
-rw-r--r--dev-python/testoob/testoob-1.13.ebuild32
2 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/testoob/testoob-1.12.ebuild b/dev-python/testoob/testoob-1.12.ebuild
deleted file mode 100644
index c07aaa9a7a3f..000000000000
--- a/dev-python/testoob/testoob-1.12.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/testoob/testoob-1.12.ebuild,v 1.3 2006/10/21 01:47:30 agriffis Exp $
-
-inherit distutils eutils
-
-DESCRIPTION="Advanced Python testing framework"
-HOMEPAGE="http://testoob.sourceforge.net/"
-SRC_URI="mirror://sourceforge/testoob/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ia64 ~sparc x86"
-IUSE="pdf threads"
-
-DEPEND="virtual/python"
-RDEPEND="${DEPEND}
- dev-python/4suite
- pdf? ( dev-python/reportlab )
- threads? ( dev-python/twisted )"
-
-DOCS="docs/*"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -e '1iimport warnings' -i tests/helpers.py
- sed -e '5d' -i setup.py
-}
-
-src_test() {
- distutils_python_version
- PATH="src/testoob:${PATH}" PYTHONPATH="src" \
- "${python}" tests/alltests.py || die "alltests.py failed"
-}
diff --git a/dev-python/testoob/testoob-1.13.ebuild b/dev-python/testoob/testoob-1.13.ebuild
deleted file mode 100644
index 143766269e7c..000000000000
--- a/dev-python/testoob/testoob-1.13.ebuild
+++ /dev/null
@@ -1,32 +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/testoob/testoob-1.13.ebuild,v 1.2 2009/09/07 02:50:12 arfrever Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-DESCRIPTION="Advanced Python testing framework"
-HOMEPAGE="http://testoob.sourceforge.net/"
-SRC_URI="mirror://sourceforge/testoob/${P}.tar.bz2"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~sparc ~x86"
-IUSE="pdf threads"
-
-DEPEND=""
-RDEPEND="dev-python/4suite
- pdf? ( dev-python/reportlab )
- threads? ( dev-python/twisted )"
-RESTRICT_PYTHON_ABIS="3.*"
-
-DOCS="docs/*"
-
-src_test() {
- testing() {
- PATH="build-${PYTHON_ABI}/scripts-${PYTHON_ABI}:${PATH}" PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" tests/alltests.py
- }
- python_execute_function testing
-}