diff options
Diffstat (limited to 'dev-python/six/six-1.1.0.ebuild')
-rw-r--r-- | dev-python/six/six-1.1.0.ebuild | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/dev-python/six/six-1.1.0.ebuild b/dev-python/six/six-1.1.0.ebuild deleted file mode 100644 index 96a3fa0cb219..000000000000 --- a/dev-python/six/six-1.1.0.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/six/six-1.1.0.ebuild,v 1.10 2012/12/17 17:54:35 ago Exp $ - -EAPI="4" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.5-jython" - -inherit distutils - -DESCRIPTION="Python 2 and 3 compatibility library" -HOMEPAGE="http://pypi.python.org/pypi/six" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ia64 ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" -IUSE="doc" - -DEPEND="doc? ( dev-python/sphinx )" -RDEPEND="" - -PYTHON_MODNAME="${PN}.py" - -src_compile() { - distutils_src_compile - if use doc; then - cd documentation || die - emake html - fi -} - -src_install() { - distutils_src_install - if use doc; then - dohtml -r documentation/_build/html/* - fi -} |