diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-14 21:42:00 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-09-14 21:42:00 +0000 |
commit | c15426b992c56cb5f3d11c5b9d806e31054a60fd (patch) | |
tree | 55f7b7e51f92e1e3303c3401ce7b77aed045af0c /dev-python/anyvc | |
parent | Version bump. (diff) | |
download | gentoo-2-c15426b992c56cb5f3d11c5b9d806e31054a60fd.tar.gz gentoo-2-c15426b992c56cb5f3d11c5b9d806e31054a60fd.tar.bz2 gentoo-2-c15426b992c56cb5f3d11c5b9d806e31054a60fd.zip |
Delete older ebuild.
Diffstat (limited to 'dev-python/anyvc')
-rw-r--r-- | dev-python/anyvc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-python/anyvc/anyvc-0.3.1.ebuild | 48 |
2 files changed, 5 insertions, 49 deletions
diff --git a/dev-python/anyvc/ChangeLog b/dev-python/anyvc/ChangeLog index 96c0007c0053..e51f2623701c 100644 --- a/dev-python/anyvc/ChangeLog +++ b/dev-python/anyvc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-python/anyvc # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/anyvc/ChangeLog,v 1.1 2010/06/23 23:46:34 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/anyvc/ChangeLog,v 1.2 2010/09/14 21:42:00 arfrever Exp $ + + 14 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -anyvc-0.3.1.ebuild: + Delete. *anyvc-0.3.1 (23 Jun 2010) diff --git a/dev-python/anyvc/anyvc-0.3.1.ebuild b/dev-python/anyvc/anyvc-0.3.1.ebuild deleted file mode 100644 index c4e4afe0346d..000000000000 --- a/dev-python/anyvc/anyvc-0.3.1.ebuild +++ /dev/null @@ -1,48 +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/anyvc/anyvc-0.3.1.ebuild,v 1.1 2010/06/23 23:46:34 arfrever Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" - -inherit distutils - -DESCRIPTION="Library to access any version control system" -HOMEPAGE="http://pypi.python.org/pypi/anyvc" -SRC_URI="http://pypi.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="bazaar doc git mercurial subversion" - -RDEPEND="dev-python/execnet - bazaar? ( dev-vcs/bzr ) - git? ( dev-python/dulwich ) - mercurial? ( dev-vcs/mercurial ) - subversion? ( dev-python/subvertpy )" -DEPEND="${RDEPEND} - dev-python/setuptools - doc? ( dev-python/sphinx )" - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - sphinx-build -b html docs docs_output || die "Generation of documentation failed" - fi -} - -src_install() { - distutils_src_install - - if use doc; then - pushd docs_output > /dev/null - docinto html - cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed" - popd > /dev/null - fi -} |