summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-02 23:23:11 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-10-02 23:23:11 +0000
commit3eafb0bb4b4d9587230138c4146c05bed6e404fb (patch)
tree38eedea0f82bf3498f08cc42a45064d1758285b4 /dev-python/anyvc
parentInitial addition. Ebuild written by me. (diff)
downloadgentoo-2-3eafb0bb4b4d9587230138c4146c05bed6e404fb.tar.gz
gentoo-2-3eafb0bb4b4d9587230138c4146c05bed6e404fb.tar.bz2
gentoo-2-3eafb0bb4b4d9587230138c4146c05bed6e404fb.zip
Delete older ebuild.
Diffstat (limited to 'dev-python/anyvc')
-rw-r--r--dev-python/anyvc/anyvc-0.3.3.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-python/anyvc/anyvc-0.3.3.ebuild b/dev-python/anyvc/anyvc-0.3.3.ebuild
deleted file mode 100644
index 6f217600b44d..000000000000
--- a/dev-python/anyvc/anyvc-0.3.3.ebuild
+++ /dev/null
@@ -1,51 +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.3.ebuild,v 1.1 2010/09/14 21:43:08 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="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="bazaar git mercurial subversion"
-# IUSE="bazaar doc git mercurial subversion"
-
-RDEPEND="dev-python/execnet
- dev-python/py
- 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
-
-# Documentation fails to build.
-# 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
-}