diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-30 20:57:37 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-10-30 20:57:37 +0000 |
commit | ef4b23962a09b64c973f37f5d4cb941c2175986b (patch) | |
tree | 44e7f90157a95e7ea5539b3dc3c1130133fbbcc9 /dev-python/lxml | |
parent | Delete older ebuilds. (diff) | |
download | historical-ef4b23962a09b64c973f37f5d4cb941c2175986b.tar.gz historical-ef4b23962a09b64c973f37f5d4cb941c2175986b.tar.bz2 historical-ef4b23962a09b64c973f37f5d4cb941c2175986b.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/lxml')
-rw-r--r-- | dev-python/lxml/lxml-2.2.1.ebuild | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/dev-python/lxml/lxml-2.2.1.ebuild b/dev-python/lxml/lxml-2.2.1.ebuild deleted file mode 100644 index 4cd2ea943cd5..000000000000 --- a/dev-python/lxml/lxml-2.2.1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/lxml/lxml-2.2.1.ebuild,v 1.9 2009/07/31 12:33:35 chainsaw Exp $ - -EAPI="2" - -NEED_PYTHON="2.3" - -inherit distutils flag-o-matic - -DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries" -HOMEPAGE="http://codespeak.net/lxml/" -SRC_URI="http://codespeak.net/lxml/${P}.tgz" -LICENSE="BSD ElementTree GPL-2 PSF-2.4" -SLOT="0" -KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86" -IUSE="doc examples +threads" - -RDEPEND=">=dev-libs/libxml2-2.7.2 - >=dev-libs/libxslt-1.1.15" -DEPEND="${RDEPEND} - >=dev-python/cython-0.9.8 - >=dev-python/setuptools-0.6_rc5" - -pkg_setup() { - # Tests fail with some optimizations. - replace-flags -O[2-9]* -O1 -} - -src_prepare() { - # Use Cython instead of own bundled version of Pyrex. - epatch "${FILESDIR}/${PN}-2.0.3-no-fake-pyrex.patch" -} - -src_compile() { - local myconf - use threads || myconf+=" --without-threading" - ${python} setup.py build ${myconf} || die "compilation failed" -} - -src_install() { - distutils_src_install - - if use doc; then - dohtml doc/html/* - dodoc *.txt - docinto doc - dodoc doc/*.txt - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r samples/* - fi -} - -src_test() { - distutils_python_version - python setup.py build_ext -i || die "building extensions for test use failed" - einfo "Running test" - "${python}" test.py || die "tests failed" - export PYTHONPATH="${PYTHONPATH}:${S}/src" - einfo "Running selftest" - "${python}" selftest.py || die "selftest failed" - einfo "Running selftest2" - "${python}" selftest2.py || die "selftest2 failed" -} |