diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-06-23 18:38:51 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-06-23 18:38:51 +0000 |
commit | 6b57bbad2a5ab9b12a61883a617e30c25f9a773c (patch) | |
tree | cce850c3713078782b0d797a784d13e10bc2e735 /dev-python | |
parent | Linux patch 3.14.45 (diff) | |
download | gentoo-2-6b57bbad2a5ab9b12a61883a617e30c25f9a773c.tar.gz gentoo-2-6b57bbad2a5ab9b12a61883a617e30c25f9a773c.tar.bz2 gentoo-2-6b57bbad2a5ab9b12a61883a617e30c25f9a773c.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/utidylib/ChangeLog | 5 | ||||
-rw-r--r-- | dev-python/utidylib/utidylib-0.2-r1.ebuild | 49 |
2 files changed, 4 insertions, 50 deletions
diff --git a/dev-python/utidylib/ChangeLog b/dev-python/utidylib/ChangeLog index f98406b36234..044542059ef4 100644 --- a/dev-python/utidylib/ChangeLog +++ b/dev-python/utidylib/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-python/utidylib # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/utidylib/ChangeLog,v 1.19 2015/06/22 23:38:12 monsieurp Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/utidylib/ChangeLog,v 1.20 2015/06/23 18:38:51 mrueg Exp $ + + 23 Jun 2015; Manuel Rüger <mrueg@gentoo.org> -utidylib-0.2-r1.ebuild: + Remove old. 23 Jun 2015; Patrice Clement <monsieurp@gentoo.org> utidylib-0.2-r2.ebuild: Retroactively marking x86+ppc+ppc64 stable via ALLARCHES. Fix bug 546480. diff --git a/dev-python/utidylib/utidylib-0.2-r1.ebuild b/dev-python/utidylib/utidylib-0.2-r1.ebuild deleted file mode 100644 index 221b262ed539..000000000000 --- a/dev-python/utidylib/utidylib-0.2-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/utidylib/utidylib-0.2-r1.ebuild,v 1.9 2015/05/08 07:33:35 jlec Exp $ - -EAPI="3" -PYTHON_DEPEND="2:2.5" -SUPPORT_PYTHON_ABIS="1" -DISTUTILS_SRC_TEST="trial tidy" - -inherit distutils eutils - -MY_P="uTidylib-${PV}" - -DESCRIPTION="TidyLib Python wrapper" -HOMEPAGE="http://sourceforge.net/projects/utidylib/" -SRC_URI="mirror://berlios/${PN}/${MY_P}.zip" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc ~ppc64 x86" -IUSE="doc" - -RDEPEND="app-text/htmltidy" -DEPEND="${RDEPEND} - app-arch/unzip - doc? ( dev-python/epydoc )" -RESTRICT_PYTHON_ABIS="2.4 3.*" - -S="${WORKDIR}/${MY_P}" - -PYTHON_MODNAME="tidy" - -src_prepare(){ - distutils_src_prepare - epatch "${FILESDIR}/${P}-no-docs-in-site-packages.patch" - epatch "${FILESDIR}/${P}-fix_tests.patch" -} - -src_compile() { - distutils_src_compile - if use doc; then - "$(PYTHON -f)" gendoc.py || die "Generation of documentation failed" - fi -} - -src_install() { - distutils_src_install - use doc && dohtml -r apidoc -} |