Delete older ebuild.
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
Wed, 7 Jul 2010 21:55:12 +0000 (21:55 +0000)
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
Wed, 7 Jul 2010 21:55:12 +0000 (21:55 +0000)
execnet-1.0.5.ebuild [deleted file]
files/execnet-1.0.5-test-nice.patch [deleted file]

diff --git a/execnet-1.0.5.ebuild b/execnet-1.0.5.ebuild
deleted file mode 100644 (file)
index d894ae2..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header$
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils eutils
-
-DESCRIPTION="Rapid multi-Python deployment"
-HOMEPAGE="http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet"
-SRC_URI="http://pypi.python.org/packages/source/e/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc test"
-
-DEPEND="dev-python/setuptools
-       doc? ( dev-python/sphinx )
-       test? ( >=dev-python/py-1.1.1 )"
-RDEPEND=""
-
-src_prepare() {
-       distutils_src_prepare
-
-       # fixing test with nice, bug #301417
-       epatch "${FILESDIR}"/${P}-test-nice.patch
-}
-
-src_compile() {
-       distutils_src_compile
-       if use doc; then
-               pushd doc
-               emake html || die "emake html failed"
-               popd
-       fi
-}
-
-src_test() {
-       testing() {
-               PYTHONPATH="build-${PYTHON_ABI}/lib" py.test testing
-       }
-       python_execute_function testing
-}
-
-src_install() {
-       distutils_src_install
-       if use doc; then
-               dohtml -r doc/_build/html/* || die "dohtml failed"
-       fi
-}
diff --git a/files/execnet-1.0.5-test-nice.patch b/files/execnet-1.0.5-test-nice.patch
deleted file mode 100644 (file)
index 84143f3..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-ôÏÌØËÏ × execnet-1.0.5//testing: __init__.pyc
-diff -r -U1 execnet-1.0.5.orig//testing/test_xspec.py execnet-1.0.5//testing/test_xspec.py
---- execnet-1.0.5.orig//testing/test_xspec.py  2009-12-11 15:05:52.000000000 +0100
-+++ execnet-1.0.5//testing/test_xspec.py       2010-02-23 13:17:51.000000000 +0100
-@@ -72,2 +72,4 @@
-     def test_popen_nice(self):
-+        import os
-+        localnice=os.nice(0)
-         gw = execnet.makegateway("popen//nice=5")
-@@ -81,3 +83,3 @@
-         if remotenice is not None:
--            assert remotenice == 5
-+            assert remotenice == localnice+5
-ôÏÌØËÏ × execnet-1.0.5//testing: test_xspec.pyc