diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-22 22:20:07 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-03-22 22:20:07 +0000 |
commit | f765a810c5d743370a0f70f5aa00062cd3919af0 (patch) | |
tree | a318b26011a2407e5cc1b3a5736d910c5146bcd3 /dev-python/fabric | |
parent | Restrict Jython ABIs. Simplify installation. (diff) | |
download | historical-f765a810c5d743370a0f70f5aa00062cd3919af0.tar.gz historical-f765a810c5d743370a0f70f5aa00062cd3919af0.tar.bz2 historical-f765a810c5d743370a0f70f5aa00062cd3919af0.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/fabric')
-rw-r--r-- | dev-python/fabric/fabric-0.9.4.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/fabric/fabric-0.9.4.ebuild b/dev-python/fabric/fabric-0.9.4.ebuild deleted file mode 100644 index 9e0c1ea9649f..000000000000 --- a/dev-python/fabric/fabric-0.9.4.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/fabric/fabric-0.9.4.ebuild,v 1.1 2011/02/19 17:45:35 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" -DISTUTILS_SRC_TEST="nosetests" - -inherit distutils - -MY_PN="Fabric" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Fabric is a simple, Pythonic tool for remote execution and deployment." -HOMEPAGE="http://fabfile.org http://pypi.python.org/pypi/Fabric" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND=">=dev-python/paramiko-1.7.6" -DEPEND="${RDEPEND} - dev-python/setuptools - test? ( dev-python/fudge )" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - distutils_src_prepare - - # PyCrypto is a dependency of paramiko, not Fabric. - sed -e "/install_requires=/s/'pycrypto %s' % PYCRYPTO, //" -i setup.py -} - -src_test() { - distutils_src_test --with-doctest -} |