summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-06-18 11:08:48 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-06-18 11:08:48 +0000
commit50e5f3de86e7b1ae3a0b7bc13d42f870fc6e3dbb (patch)
tree4ce942069461299202c72feb2d221d09eaa7e1b2 /dev-python
parentUse PYTHON_DEPEND instead of NEED_PYTHON. (diff)
downloadhistorical-50e5f3de86e7b1ae3a0b7bc13d42f870fc6e3dbb.tar.gz
historical-50e5f3de86e7b1ae3a0b7bc13d42f870fc6e3dbb.tar.bz2
historical-50e5f3de86e7b1ae3a0b7bc13d42f870fc6e3dbb.zip
Delete older ebuild.
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild b/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild
deleted file mode 100644
index 02f306c2c2db..000000000000
--- a/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/beautifulsoup/beautifulsoup-3.0.7.ebuild,v 1.8 2010/05/22 16:15:36 armin76 Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-
-inherit distutils
-
-MY_PN="BeautifulSoup"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="HTML/XML parser for quick-turnaround applications like screen-scraping."
-HOMEPAGE="http://www.crummy.com/software/BeautifulSoup/"
-SRC_URI="http://www.crummy.com/software/${MY_PN}/download/${MY_P}.tar.gz"
-
-LICENSE="PSF-2.3"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-RESTRICT_PYTHON_ABIS="3.*"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_MODNAME="BeautifulSoup.py BeautifulSoupTests.py"
-
-src_test() {
- testing() {
- PYTHONPATH="build-${PYTHON_ABI}/lib" "$(PYTHON)" BeautifulSoupTests.py
- }
- python_execute_function testing
-}