diff options
Diffstat (limited to 'dev-vcs/bzr-git/bzr-git-0.6.8-r1.ebuild')
-rw-r--r-- | dev-vcs/bzr-git/bzr-git-0.6.8-r1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-vcs/bzr-git/bzr-git-0.6.8-r1.ebuild b/dev-vcs/bzr-git/bzr-git-0.6.8-r1.ebuild new file mode 100644 index 000000000000..b514dde52a96 --- /dev/null +++ b/dev-vcs/bzr-git/bzr-git-0.6.8-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-git/bzr-git-0.6.8-r1.ebuild,v 1.1 2015/03/10 14:38:14 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=1 + +inherit distutils-r1 + +DESCRIPTION="Support for Git branches in Bazaar" +HOMEPAGE="http://bazaar-vcs.org/BzrForeignBranches/Git" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" + +if [[ ${PV} = 9999 ]]; then + inherit bzr + EBZR_REPO_URI="lp:bzr-git" + KEYWORDS="" +else + SRC_URI="http://samba.org/~jelmer/bzr/${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" +# Test are broken, they want API functions from Dulwich which are not +# installed in Gentoo +RESTRICT="test" + +# Check info.py for dulwich and bzr version dependency info. +# The file should be fairly straightforward to understand. +DEPEND="" +RDEPEND=">=dev-python/dulwich-0.8.2[${PYTHON_USEDEP}] + >=dev-vcs/bzr-2.5.0[${PYTHON_USEDEP}]" + +pkg_setup() { + python-single-r1_pkg_setup +} |