blob: f4f82181efc8ec399f913814675503cb83f11ec0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2010 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.5.2.ebuild,v 1.1 2010/10/10 14:30:09 fauli Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
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.5.0
>=dev-vcs/bzr-1.15_rc1"
|