diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-01-18 18:37:25 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-01-18 18:37:25 +0000 |
commit | 3d6b48f0faa5d4b2a41432c8035528ba772920f5 (patch) | |
tree | 15def2a4e35991bcd304bec4c4a4101ad2d1d267 /dev-python | |
parent | alpha/ia64/sh/sparc stable wrt #294958 (diff) | |
download | gentoo-2-3d6b48f0faa5d4b2a41432c8035528ba772920f5.tar.gz gentoo-2-3d6b48f0faa5d4b2a41432c8035528ba772920f5.tar.bz2 gentoo-2-3d6b48f0faa5d4b2a41432c8035528ba772920f5.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/html5lib/files/html5lib-0.11.1-python-2.6.patch | 19 | ||||
-rw-r--r-- | dev-python/html5lib/html5lib-0.11.1-r1.ebuild | 46 |
2 files changed, 0 insertions, 65 deletions
diff --git a/dev-python/html5lib/files/html5lib-0.11.1-python-2.6.patch b/dev-python/html5lib/files/html5lib-0.11.1-python-2.6.patch deleted file mode 100644 index f3c2800e46e6..000000000000 --- a/dev-python/html5lib/files/html5lib-0.11.1-python-2.6.patch +++ /dev/null @@ -1,19 +0,0 @@ -changeset: 1249:77f13a977be6 -user: jgraham@jgraham-desktop -date: Wed Apr 29 17:17:24 2009 +0200 -summary: Fix deprecation warning - ---- src/html5lib/inputstream.py -+++ src/html5lib/inputstream.py -@@ -444,8 +444,10 @@ - """String-like object with an assosiated position and various extra methods - If the position is ever greater than the string length then an exception is - raised""" -+ def __new__(self, value): -+ return str.__new__(self, value) -+ - def __init__(self, value): -- str.__init__(self, value) - self._position=-1 - - def __iter__(self): diff --git a/dev-python/html5lib/html5lib-0.11.1-r1.ebuild b/dev-python/html5lib/html5lib-0.11.1-r1.ebuild deleted file mode 100644 index cbf3e971a1ec..000000000000 --- a/dev-python/html5lib/html5lib-0.11.1-r1.ebuild +++ /dev/null @@ -1,46 +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/html5lib/html5lib-0.11.1-r1.ebuild,v 1.1 2009/12/22 23:58:12 arfrever Exp $ - -EAPI="2" -SUPPORT_PYTHON_ABIS="1" - -inherit distutils eutils - -DESCRIPTION="HTML parser based on the WHAT-WG Web Applications 1.0 HTML5 specification" -HOMEPAGE="http://code.google.com/p/html5lib/" -SRC_URI="http://${PN}.googlecode.com/files/${P}.zip" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples test" - -RDEPEND="dev-lang/python[xml]" -DEPEND="${RDEPEND} - app-arch/unzip - >=dev-python/setuptools-0.6_rc5 - test? ( dev-python/simplejson )" -RESTRICT_PYTHON_ABIS="3.*" - -src_prepare() { - distutils_src_prepare - epatch "${FILESDIR}/${P}-python-2.6.patch" -} - -src_test() { - testing() { - "$(PYTHON)" setup.py build -b "build-${PYTHON_ABI}" test - } - python_execute_function testing -} - -src_install() { - distutils_src_install - - if use examples ; then - find examples -name "*.pyc" | xargs rm -fr - insinto "/usr/share/doc/${PF}" - doins -r examples || die "Installation of examples failed" - fi -} |