From: Markos Chandras Date: Fri, 5 Aug 2011 22:54:34 +0000 (+0000) Subject: Remove old ebuild. Requested by Arfrever X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f3db4c245246d9b2d8116d8b4f4f722723822189;p=wtk-overlay.git Remove old ebuild. Requested by Arfrever Package-Manager: portage-2.2.0_alpha50/cvs/Linux x86_64 --- diff --git a/ChangeLog b/ChangeLog index e7ac7d4..7a03f29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,11 @@ # ChangeLog for dev-python/execnet -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header$ + 05 Aug 2011; Markos Chandras + -files/execnet-1.0.6-test-nice.patch, -execnet-1.0.8.ebuild: + Remove old ebuild. Requested by Arfrever + *execnet-1.0.9 (24 Dec 2010) 24 Dec 2010; Arfrever Frehtes Taifersar Arahesis diff --git a/execnet-1.0.8.ebuild b/execnet-1.0.8.ebuild deleted file mode 100644 index 2434db1..0000000 --- a/execnet-1.0.8.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header$ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" -DISTUTILS_SRC_TEST="py.test" - -inherit distutils eutils - -DESCRIPTION="Rapid multi-Python deployment" -HOMEPAGE="http://codespeak.net/execnet/ http://pypi.python.org/pypi/execnet/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc" - -DEPEND="dev-python/setuptools - doc? ( dev-python/sphinx )" -RDEPEND="" - -src_prepare() { - distutils_src_prepare - - # Fix test with nice (bug #301417). - epatch "${FILESDIR}/${PN}-1.0.6-test-nice.patch" -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - cd doc - emake html || die "Generation of documentation failed" - fi -} - -src_test() { - distutils_src_test 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.6-test-nice.patch b/files/execnet-1.0.6-test-nice.patch deleted file mode 100644 index 6119fcb..0000000 --- a/files/execnet-1.0.6-test-nice.patch +++ /dev/null @@ -1,17 +0,0 @@ -diff -r -U1 execnet-1.0.6.orig/testing/test_xspec.py execnet-1.0.6/testing/test_xspec.py ---- execnet-1.0.6.orig/testing/test_xspec.py 2010-04-21 16:19:48.000000000 +0200 -+++ execnet-1.0.6/testing/test_xspec.py 2010-05-03 22:12:56.000000000 +0200 -@@ -72,2 +72,8 @@ - def test_popen_nice(self): -+ import os -+ localnice = os.nice(0) -+ MAXNICE = 19 -+ nice = localnice+5 -+ if nice > MAXNICE: -+ nice = MAXNICE - gw = execnet.makegateway("popen//nice=5") -@@ -81,3 +87,3 @@ - if remotenice is not None: -- assert remotenice == 5 -+ assert remotenice == nice -