blob: 9f901ad67276bafe82f1cb4eb331180fb3ae36a0 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 mercurial
DESCRIPTION="hgsubversion is a Mercurial extension for working with Subversion repositories"
HOMEPAGE="https://bitbucket.org/durin42/hgsubversion/wiki/Home https://pypi.python.org/pypi/hgsubversion"
SRC_URI=""
EHG_REPO_URI="https://bitbucket.org/durin42/hgsubversion"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="test"
RDEPEND="dev-vcs/mercurial[${PYTHON_USEDEP}]
|| (
dev-python/subvertpy[${PYTHON_USEDEP}]
>=dev-vcs/subversion-1.5[python]
)"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
DOCS=( README )
|