diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-02-19 18:13:02 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2011-02-19 18:13:02 +0000 |
commit | 29beb6583e6430bbbbe90e59ce7002877b8d8607 (patch) | |
tree | 248d933e29b112023d411413755ceb8761f3a2fa /net-zope/acquisition | |
parent | Version bump, and unify git/non-git ebuilds in the process. (diff) | |
download | gentoo-2-29beb6583e6430bbbbe90e59ce7002877b8d8607.tar.gz gentoo-2-29beb6583e6430bbbbe90e59ce7002877b8d8607.tar.bz2 gentoo-2-29beb6583e6430bbbbe90e59ce7002877b8d8607.zip |
Delete older ebuild.
Diffstat (limited to 'net-zope/acquisition')
-rw-r--r-- | net-zope/acquisition/acquisition-2.13.5.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/net-zope/acquisition/acquisition-2.13.5.ebuild b/net-zope/acquisition/acquisition-2.13.5.ebuild deleted file mode 100644 index 924aea9d99fa..000000000000 --- a/net-zope/acquisition/acquisition-2.13.5.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-zope/acquisition/acquisition-2.13.5.ebuild,v 1.2 2010/11/28 22:05:23 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" -DISTUTILS_SRC_TEST="nosetests" - -inherit distutils - -MY_PN="Acquisition" -MY_P="${MY_PN}-${PV}" - -DESCRIPTION="Acquisition is a mechanism that allows objects to obtain attributes from the containment hierarchy they're in." -HOMEPAGE="http://pypi.python.org/pypi/Acquisition" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip" - -LICENSE="ZPL" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="" - -RDEPEND="net-zope/extensionclass - net-zope/zope-interface" -DEPEND="${RDEPEND} - app-arch/unzip - dev-python/setuptools" - -S="${WORKDIR}/${MY_P}" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") - -DOCS="CHANGES.txt src/Acquisition/README.txt" -PYTHON_MODNAME="${MY_PN}" - -distutils_src_test_pre_hook() { - local module - for module in Acquisition; do - ln -fs "../../$(ls -d build-${PYTHON_ABI}/lib.*)/${module}/_${module}.so" "src/${module}/_${module}.so" || die "Symlinking ${module}/_${module}.so failed with Python ${PYTHON_ABI}" - done -} - -src_install() { - distutils_src_install - python_clean_installation_image - - delete_tests() { - rm -f "${ED}$(python_get_sitedir)/Acquisition/tests.py" - } - python_execute_function -q delete_tests -} |