blob: 3d5b16b08b9484e55b4d6ad01a902044a7469cc4 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
PYTHON_COMPAT=(python2_7)
DESCRIPTION="Semi-official Mercurial bridge from Git project"
HOMEPAGE="https://github.com/felipec/git-remote-hg"
SRC_URI="https://github.com/felipec/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
CDEPEND="dev-vcs/git
dev-vcs/mercurial"
DEPEND="${CDEPEND}
app-text/asciidoc"
RDEPEND="${CDEPEND}"
# Most (21/25) tests fail:
RESTRICT="test"
src_install() {
dobin git-remote-hg
}
|