Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
Date: Fri, 07 Jun 2019 13:15:14
Message-Id: 1559913253.e4babf672c04e54e8ad2fcf39ea2f298fa492650.mgorny@gentoo
1 commit: e4babf672c04e54e8ad2fcf39ea2f298fa492650
2 Author: Nikos Chantziaras <realnc <AT> gmail <DOT> com>
3 AuthorDate: Thu May 2 06:30:03 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 7 13:14:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4babf67
7
8 dev-vcs/git-remote-hg: bump version to 1.0.1
9
10 setup.py was fixed upstream. Patch no longer needed.
11
12 Closes: https://bugs.gentoo.org/684912
13 Package-Manager: Portage-2.3.67, Repoman-2.3.14
14 Signed-off-by: Nikos Chantziaras <realnc <AT> gmail.com>
15 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
16
17 dev-vcs/git-remote-hg/Manifest | 1 +
18 dev-vcs/git-remote-hg/git-remote-hg-1.0.1.ebuild | 40 ++++++++++++++++++++++++
19 2 files changed, 41 insertions(+)
20
21 diff --git a/dev-vcs/git-remote-hg/Manifest b/dev-vcs/git-remote-hg/Manifest
22 index 16b5236e9a5..ac7f4a97ddf 100644
23 --- a/dev-vcs/git-remote-hg/Manifest
24 +++ b/dev-vcs/git-remote-hg/Manifest
25 @@ -1 +1,2 @@
26 DIST git-remote-hg-1.0.0.tar.gz 57611 BLAKE2B f46ca860bd7c46985ef53d5adfb949290208e351425a31fbfd33e6cf632c40b043397d398a5c378c653ab2b303d427c4b5bf29250fb51631f87cb2dbb0b541b5 SHA512 344349b8c64db5ad629176c664713773b4e8fe5ddf6bd13e7f3cac421f82eeb93fdd8aa59a2baab4b36b533cd6721adf8d31c69d4cc761e43c093c4d531c1a7d
27 +DIST git-remote-hg-1.0.1.tar.gz 57856 BLAKE2B 635073fbd0d9fe0ebbc2e9b5e49298bdb9f6b02f964219271a4bd930746e892e58fabde2afa94e998e4bd4aede91d9ac80291eef1bd3eb16cf82f6691514259b SHA512 b665cb6dc0564dc7f2cacade9000378f895b77a3186e091b841e58ddef37834e3cc87e81a76ab713997c6f837a768eff91d6b8a156c6277da0e34a2f156a5290
28
29 diff --git a/dev-vcs/git-remote-hg/git-remote-hg-1.0.1.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-1.0.1.ebuild
30 new file mode 100644
31 index 00000000000..6351daeb396
32 --- /dev/null
33 +++ b/dev-vcs/git-remote-hg/git-remote-hg-1.0.1.ebuild
34 @@ -0,0 +1,40 @@
35 +# Copyright 1999-2019 Gentoo Authors
36 +# Distributed under the terms of the GNU General Public License v2
37 +
38 +EAPI=7
39 +PYTHON_COMPAT=( python2_7 )
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Semi-official Mercurial bridge from Git project"
44 +HOMEPAGE="https://github.com/mnauw/git-remote-hg"
45 +SRC_URI="https://github.com/mnauw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="GPL-2"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +BDEPEND="
52 + app-text/asciidoc
53 +"
54 +RDEPEND="
55 + dev-vcs/git
56 + dev-vcs/mercurial
57 +"
58 +
59 +# Some tests fail.
60 +RESTRICT="test"
61 +
62 +src_compile() {
63 + distutils-r1_src_compile
64 + emake doc
65 +}
66 +
67 +src_install() {
68 + distutils-r1_src_install
69 + emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install-doc
70 +}
71 +
72 +src_test() {
73 + default
74 +}