| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/bzr-git/bzr-git-0.6.2.ebuild,v 1.4 2012/01/21 15:49:48 klausman Exp $
|
| 4 |
|
| 5 |
EAPI="3"
|
| 6 |
PYTHON_DEPEND="2"
|
| 7 |
SUPPORT_PYTHON_ABIS="1"
|
| 8 |
RESTRICT_PYTHON_ABIS="3.*"
|
| 9 |
|
| 10 |
inherit distutils
|
| 11 |
|
| 12 |
DESCRIPTION="Support for Git branches in Bazaar"
|
| 13 |
HOMEPAGE="http://bazaar-vcs.org/BzrForeignBranches/Git"
|
| 14 |
SRC_URI=""
|
| 15 |
|
| 16 |
LICENSE="GPL-2"
|
| 17 |
SLOT="0"
|
| 18 |
|
| 19 |
if [[ ${PV} = 9999 ]]; then
|
| 20 |
inherit bzr
|
| 21 |
EBZR_REPO_URI="lp:bzr-git"
|
| 22 |
KEYWORDS=""
|
| 23 |
else
|
| 24 |
SRC_URI="http://samba.org/~jelmer/bzr/${P}.tar.gz"
|
| 25 |
KEYWORDS="alpha amd64 x86"
|
| 26 |
fi
|
| 27 |
|
| 28 |
IUSE=""
|
| 29 |
# Test are broken, they want API functions from Dulwich which are not
|
| 30 |
# installed in Gentoo
|
| 31 |
RESTRICT="test"
|
| 32 |
|
| 33 |
# Check info.py for dulwich and bzr version dependency info.
|
| 34 |
# The file should be fairly straightforward to understand.
|
| 35 |
DEPEND=""
|
| 36 |
RDEPEND=">=dev-python/dulwich-0.8.0
|
| 37 |
>=dev-vcs/bzr-2.3.0"
|