diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-23 21:40:37 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-23 21:40:37 +0000 |
commit | 019ba0af0816a66910e73cbb9de0b06ae1c5b39e (patch) | |
tree | c212c0eb04103bfd955b3bec207470ffdf643a64 /dev-python/testtools | |
parent | EAPI 3, prefix, other improvements (diff) | |
download | historical-019ba0af0816a66910e73cbb9de0b06ae1c5b39e.tar.gz historical-019ba0af0816a66910e73cbb9de0b06ae1c5b39e.tar.bz2 historical-019ba0af0816a66910e73cbb9de0b06ae1c5b39e.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/testtools')
-rw-r--r-- | dev-python/testtools/files/testtools-0.9.4-fix_test.patch | 10 | ||||
-rw-r--r-- | dev-python/testtools/testtools-0.9.4.ebuild | 34 |
2 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/testtools/files/testtools-0.9.4-fix_test.patch b/dev-python/testtools/files/testtools-0.9.4-fix_test.patch deleted file mode 100644 index 688627bf374f..000000000000 --- a/dev-python/testtools/files/testtools-0.9.4-fix_test.patch +++ /dev/null @@ -1,10 +0,0 @@ -=== modified file 'testtools/testresult/real.py' ---- testtools/testresult/real.py 2010-07-02 00:40:20 +0000 -+++ testtools/testresult/real.py 2010-07-19 17:37:46 +0000 -@@ -566,4 +566,4 @@ - if not chars[-1].endswith('\n'): - chars.append('\n') - chars.append('------------\n') -- return _u(''.join(chars)) -+ return _u('').join(chars) - diff --git a/dev-python/testtools/testtools-0.9.4.ebuild b/dev-python/testtools/testtools-0.9.4.ebuild deleted file mode 100644 index 6c5848f51b99..000000000000 --- a/dev-python/testtools/testtools-0.9.4.ebuild +++ /dev/null @@ -1,34 +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/testtools/testtools-0.9.4.ebuild,v 1.3 2010/07/20 07:31:17 fauli Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils versionator eutils - -SERIES="$(get_version_component_range 1-2)" - -DESCRIPTION="Extensions to the Python unittest library" -HOMEPAGE="https://launchpad.net/testtools" -SRC_URI="http://launchpad.net/${PN}/${SERIES}/${PV}/+download/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="" - -DEPEND="" -RDEPEND="" - -src_prepare() { - # fixed upstream for everything > 0.9.4 - epatch "${FILESDIR}"/${P}-fix_test.patch -} - -src_test() { - testing() { - PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" -m testtools.run testtools.tests.test_suite - } - python_execute_function testing -} |