public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2019-04-09  3:14 Austin English
  0 siblings, 0 replies; 11+ messages in thread
From: Austin English @ 2019-04-09  3:14 UTC (permalink / raw
  To: gentoo-commits

commit:     ce1567976b4bc9518de9eb04fe29263994f872f0
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  9 02:49:36 2019 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Tue Apr  9 03:13:39 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce156797

dev-vcs/git-remote-hg: move my packages to maintainer-needed

Signed-off-by: Austin English <wizardedit <AT> gentoo.org>
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.62, Repoman-2.3.12

 dev-vcs/git-remote-hg/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-vcs/git-remote-hg/metadata.xml b/dev-vcs/git-remote-hg/metadata.xml
index 0fe23763266..c96b528c458 100644
--- a/dev-vcs/git-remote-hg/metadata.xml
+++ b/dev-vcs/git-remote-hg/metadata.xml
@@ -1,10 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>wizardedit@gentoo.org</email>
-		<name>Austin English</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<longdescription>
 		'git-remote-hg' is the semi-official Mercurial bridge from Git project,
 		once installed, it allows you to clone, fetch and push to and from


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2019-06-07 13:15 Michał Górny
  0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2019-06-07 13:15 UTC (permalink / raw
  To: gentoo-commits

commit:     e4babf672c04e54e8ad2fcf39ea2f298fa492650
Author:     Nikos Chantziaras <realnc <AT> gmail <DOT> com>
AuthorDate: Thu May  2 06:30:03 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jun  7 13:14:13 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4babf67

dev-vcs/git-remote-hg: bump version to 1.0.1

setup.py was fixed upstream. Patch no longer needed.

Closes: https://bugs.gentoo.org/684912
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Nikos Chantziaras <realnc <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-vcs/git-remote-hg/Manifest                   |  1 +
 dev-vcs/git-remote-hg/git-remote-hg-1.0.1.ebuild | 40 ++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/dev-vcs/git-remote-hg/Manifest b/dev-vcs/git-remote-hg/Manifest
index 16b5236e9a5..ac7f4a97ddf 100644
--- a/dev-vcs/git-remote-hg/Manifest
+++ b/dev-vcs/git-remote-hg/Manifest
@@ -1 +1,2 @@
 DIST git-remote-hg-1.0.0.tar.gz 57611 BLAKE2B f46ca860bd7c46985ef53d5adfb949290208e351425a31fbfd33e6cf632c40b043397d398a5c378c653ab2b303d427c4b5bf29250fb51631f87cb2dbb0b541b5 SHA512 344349b8c64db5ad629176c664713773b4e8fe5ddf6bd13e7f3cac421f82eeb93fdd8aa59a2baab4b36b533cd6721adf8d31c69d4cc761e43c093c4d531c1a7d
+DIST git-remote-hg-1.0.1.tar.gz 57856 BLAKE2B 635073fbd0d9fe0ebbc2e9b5e49298bdb9f6b02f964219271a4bd930746e892e58fabde2afa94e998e4bd4aede91d9ac80291eef1bd3eb16cf82f6691514259b SHA512 b665cb6dc0564dc7f2cacade9000378f895b77a3186e091b841e58ddef37834e3cc87e81a76ab713997c6f837a768eff91d6b8a156c6277da0e34a2f156a5290

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
new file mode 100644
index 00000000000..6351daeb396
--- /dev/null
+++ b/dev-vcs/git-remote-hg/git-remote-hg-1.0.1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Semi-official Mercurial bridge from Git project"
+HOMEPAGE="https://github.com/mnauw/git-remote-hg"
+SRC_URI="https://github.com/mnauw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+	app-text/asciidoc
+"
+RDEPEND="
+	dev-vcs/git
+	dev-vcs/mercurial
+"
+
+# Some tests fail.
+RESTRICT="test"
+
+src_compile() {
+	distutils-r1_src_compile
+	emake doc
+}
+
+src_install() {
+	distutils-r1_src_install
+	emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install-doc
+}
+
+src_test() {
+	default
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2019-04-24  6:21 Michał Górny
  0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2019-04-24  6:21 UTC (permalink / raw
  To: gentoo-commits

commit:     d6baaa42376f769e4eb32bc5972f73ef811f499c
Author:     Nikos Chantziaras <realnc <AT> gmail <DOT> com>
AuthorDate: Mon Apr 22 21:18:41 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 06:16:18 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6baaa42

dev-vcs/git-remote-hg: Add maintainer, update metadata upstream

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras <realnc <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-vcs/git-remote-hg/metadata.xml | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/dev-vcs/git-remote-hg/metadata.xml b/dev-vcs/git-remote-hg/metadata.xml
index c96b528c458..516b1c49f64 100644
--- a/dev-vcs/git-remote-hg/metadata.xml
+++ b/dev-vcs/git-remote-hg/metadata.xml
@@ -1,13 +1,20 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>realnc@gmail.com</email>
+		<name>Nikos Chantziaras</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<longdescription>
 		'git-remote-hg' is the semi-official Mercurial bridge from Git project,
 		once installed, it allows you to clone, fetch and push to and from
 		Mercurial repositories as if they were Git ones.
 	</longdescription>
 	<upstream>
-		<remote-id type="github">felipec/git-remote-hg</remote-id>
+		<remote-id type="github">mnauw/git-remote-hg</remote-id>
 	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2019-04-24  6:21 Michał Górny
  0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2019-04-24  6:21 UTC (permalink / raw
  To: gentoo-commits

commit:     f8abcf582c996a00dd79faf0323214164b18ea9d
Author:     Nikos Chantziaras <realnc <AT> gmail <DOT> com>
AuthorDate: Tue Apr 23 21:07:14 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 06:16:27 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8abcf58

dev-vcs/git-remote-hg: Delete 1.0.0

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras <realnc <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11061
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild | 50 ------------------------
 1 file changed, 50 deletions(-)

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild
deleted file mode 100644
index be29b35c4e6..00000000000
--- a/dev-vcs/git-remote-hg/git-remote-hg-1.0.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Semi-official Mercurial bridge from Git project"
-HOMEPAGE="https://github.com/mnauw/git-remote-hg"
-SRC_URI="https://github.com/mnauw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-CDEPEND="
-	${PYTHON_DEPEND}
-"
-RDEPEND="
-	${CDEPEND}
-	dev-vcs/git
-	dev-vcs/mercurial
-"
-DEPEND="${CDEPEND}"
-BDEPEND="
-	app-text/asciidoc
-"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.0.0-get_version_from_release.patch"
-)
-
-# Some tests fail:
-RESTRICT="test"
-
-src_compile() {
-	distutils-r1_src_compile
-	emake doc
-}
-
-src_install() {
-	distutils-r1_src_install
-	emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install-doc
-}
-
-src_test() {
-	pushd test &>/dev/null || die
-	default
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2019-04-24  6:21 Michał Górny
  0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2019-04-24  6:21 UTC (permalink / raw
  To: gentoo-commits

commit:     16736964cb64af459d380b48b9f1eeeae1c069f5
Author:     Nikos Chantziaras <realnc <AT> gmail <DOT> com>
AuthorDate: Mon Apr 22 21:16:09 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 24 06:16:11 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16736964

dev-vcs/git-remote-hg: simplify deps, remove redundant src_test()

Closes: https://bugs.gentoo.org/678108
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Nikos Chantziaras <realnc <AT> gmail.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../git-remote-hg/git-remote-hg-1.0.0-r1.ebuild    | 42 ++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-1.0.0-r1.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0-r1.ebuild
new file mode 100644
index 00000000000..18d62626ba6
--- /dev/null
+++ b/dev-vcs/git-remote-hg/git-remote-hg-1.0.0-r1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+DESCRIPTION="Semi-official Mercurial bridge from Git project"
+HOMEPAGE="https://github.com/mnauw/git-remote-hg"
+SRC_URI="https://github.com/mnauw/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+	app-text/asciidoc
+"
+DEPEND="${PYTHON_DEPEND}"
+RDEPEND="
+	${DEPEND}
+	dev-vcs/git
+	dev-vcs/mercurial
+"
+
+PATCHES=(
+	"${FILESDIR}/${PN}-1.0.0-get_version_from_release.patch"
+)
+
+# Some tests fail.
+RESTRICT="test"
+
+src_compile() {
+	distutils-r1_src_compile
+	emake doc
+}
+
+src_install() {
+	distutils-r1_src_install
+	emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install-doc
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2019-04-21 19:10 Lars Wendler
  0 siblings, 0 replies; 11+ messages in thread
From: Lars Wendler @ 2019-04-21 19:10 UTC (permalink / raw
  To: gentoo-commits

commit:     5ca85d67224652275b68860864638ba0a92e7ac6
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 21 19:09:53 2019 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sun Apr 21 19:10:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ca85d67

dev-vcs/git-remote-hg: Removed old broken versions.

Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 dev-vcs/git-remote-hg/Manifest                 |  2 --
 dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild | 24 -----------------------
 dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild | 27 --------------------------
 3 files changed, 53 deletions(-)

diff --git a/dev-vcs/git-remote-hg/Manifest b/dev-vcs/git-remote-hg/Manifest
index 499de489bac..16b5236e9a5 100644
--- a/dev-vcs/git-remote-hg/Manifest
+++ b/dev-vcs/git-remote-hg/Manifest
@@ -1,3 +1 @@
-DIST git-remote-hg-0.2.tar.gz 30397 BLAKE2B 9c96c420a9e38fb3e0a223f12343834abdb742d15140330b1f5a12b68da924466106a279802a525c085c176d706cce427e73b1f86eeb99a6a413ab6de5954b18 SHA512 eb08a90b786593602510fef6210bb381a605d6c4cfda7e0c1051162d0a9929c077081f530dcdfb95f6fd8f0114ed44ea2c8f267e0e7ac110f9445941c9dd8546
-DIST git-remote-hg-0.3.tar.gz 30995 BLAKE2B c65918a985459149df85b1519f4d4b15be53c26d28a32cb660d85fa386a488668e2d042c7687fd4ea0928237d3098d5d3bcd77f8a0e78742b530b7cc2dff1195 SHA512 33ff1874909c0ce4d8b44d1dfd6ae706df44b36ead566e09be0f4e94e3b2a5c8603bd2f2fd50e8faa99d6aeb44a7792d7118c4413f8c9a8b8c29108b534bb4f4
 DIST git-remote-hg-1.0.0.tar.gz 57611 BLAKE2B f46ca860bd7c46985ef53d5adfb949290208e351425a31fbfd33e6cf632c40b043397d398a5c378c653ab2b303d427c4b5bf29250fb51631f87cb2dbb0b541b5 SHA512 344349b8c64db5ad629176c664713773b4e8fe5ddf6bd13e7f3cac421f82eeb93fdd8aa59a2baab4b36b533cd6721adf8d31c69d4cc761e43c093c4d531c1a7d

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild
deleted file mode 100644
index 297bee0751b..00000000000
--- a/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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"
-
-DEPEND="dev-vcs/git
-		dev-vcs/mercurial"
-RDEPEND="${DEPEND}"
-
-# Most (21/25) tests fail:
-RESTRICT="test"
-
-src_install() {
-	dobin git-remote-hg
-}

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild
deleted file mode 100644
index 3d5b16b08b9..00000000000
--- a/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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
-}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2017-11-26 11:39 David Seifert
  0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2017-11-26 11:39 UTC (permalink / raw
  To: gentoo-commits

commit:     a8d1cd375acfae7667d9b5bd2c1bb998c335842b
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 25 22:46:08 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Nov 26 11:38:52 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8d1cd37

dev-vcs/git-remote-hg: [QA] Consistent whitespace in metadata.xml

 dev-vcs/git-remote-hg/metadata.xml | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/dev-vcs/git-remote-hg/metadata.xml b/dev-vcs/git-remote-hg/metadata.xml
index 5e9d5d52ba7..0fe23763266 100644
--- a/dev-vcs/git-remote-hg/metadata.xml
+++ b/dev-vcs/git-remote-hg/metadata.xml
@@ -1,16 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>wizardedit@gentoo.org</email>
-    <name>Austin English</name>
-  </maintainer>
-  <longdescription>
-  'git-remote-hg' is the semi-official Mercurial bridge from Git project,
-  once installed, it allows you to clone, fetch and push to and from
-  Mercurial repositories as if they were Git ones.
-  </longdescription>
-  <upstream>
-	<remote-id type="github">felipec/git-remote-hg</remote-id>
-  </upstream>
+	<maintainer type="person">
+		<email>wizardedit@gentoo.org</email>
+		<name>Austin English</name>
+	</maintainer>
+	<longdescription>
+		'git-remote-hg' is the semi-official Mercurial bridge from Git project,
+		once installed, it allows you to clone, fetch and push to and from
+		Mercurial repositories as if they were Git ones.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">felipec/git-remote-hg</remote-id>
+	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2016-09-01 22:07 Austin English
  0 siblings, 0 replies; 11+ messages in thread
From: Austin English @ 2016-09-01 22:07 UTC (permalink / raw
  To: gentoo-commits

commit:     b3ebc08f03b0fcb3859a22bd1b09268d8166c66b
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Sep  1 20:55:30 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Sep  1 22:07:22 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3ebc08f

dev-vcs/git-remote-hg: add missing build dependency on app-text/asciidoc

Gentoo-Bug: https://bugs.gentoo.org/591882

Package-Manager: portage-2.3.0

 dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild
index 7eb355b..58bab8d 100644
--- a/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild
+++ b/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild
@@ -13,9 +13,12 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-DEPEND="dev-vcs/git
+CDEPEND="dev-vcs/git
 		dev-vcs/mercurial"
-RDEPEND="${DEPEND}"
+
+DEPEND="${CDEPEND}
+		app-text/asciidoc"
+RDEPEND="${CDEPEND}"
 
 # Most (21/25) tests fail:
 RESTRICT="test"


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2016-07-11 17:17 Austin English
  0 siblings, 0 replies; 11+ messages in thread
From: Austin English @ 2016-07-11 17:17 UTC (permalink / raw
  To: gentoo-commits

commit:     9da5a0e0df96481249b01f9bceb723d1803e1a7f
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 11 17:15:41 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Mon Jul 11 17:16:59 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9da5a0e0

dev-vcs/git-remote-hg: version bump - 0.3

Package-Manager: portage-2.3.0

 dev-vcs/git-remote-hg/Manifest                 |  1 +
 dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild | 25 +++++++++++++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/dev-vcs/git-remote-hg/Manifest b/dev-vcs/git-remote-hg/Manifest
index 7b0e5b4..20f0191 100644
--- a/dev-vcs/git-remote-hg/Manifest
+++ b/dev-vcs/git-remote-hg/Manifest
@@ -1 +1,2 @@
 DIST git-remote-hg-0.2.tar.gz 30397 SHA256 1b122cb925e7ce90ddba6840624d8a26d309b1671bddfe1408e945176c8b9242 SHA512 eb08a90b786593602510fef6210bb381a605d6c4cfda7e0c1051162d0a9929c077081f530dcdfb95f6fd8f0114ed44ea2c8f267e0e7ac110f9445941c9dd8546 WHIRLPOOL 88f1d06771b3e662d82819af2955997e6215c5c740a70363c7fc001aeb9c823ec17d8d4cf8b87b98ad3ff30f07c4844be3a660fb8335f91a01c355d63b1a2828
+DIST git-remote-hg-0.3.tar.gz 30995 SHA256 2dc889b641d72f5a73c4c7d5df3b8ea788e75a7ce80f5884a7a8d2e099287dce SHA512 33ff1874909c0ce4d8b44d1dfd6ae706df44b36ead566e09be0f4e94e3b2a5c8603bd2f2fd50e8faa99d6aeb44a7792d7118c4413f8c9a8b8c29108b534bb4f4 WHIRLPOOL 6a7a3e3e3a3a39bb131c07e95899b05c3841e7b4f385d9635d8773823f74ecae9d9301360aa9b0c1aa7f0aa147e0acc5eff38933c459a5aef0cba04fc843da78

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild
new file mode 100644
index 0000000..7eb355b
--- /dev/null
+++ b/dev-vcs/git-remote-hg/git-remote-hg-0.3.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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"
+
+DEPEND="dev-vcs/git
+		dev-vcs/mercurial"
+RDEPEND="${DEPEND}"
+
+# Most (21/25) tests fail:
+RESTRICT="test"
+
+src_install() {
+	dobin git-remote-hg
+}


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2016-04-08  0:41 Austin English
  0 siblings, 0 replies; 11+ messages in thread
From: Austin English @ 2016-04-08  0:41 UTC (permalink / raw
  To: gentoo-commits

commit:     1132636ba4741066940ae09afe5d205560f92e2e
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  8 00:40:49 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Fri Apr  8 00:41:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1132636b

dev-vcs/git-remote-hg: simplify src_install()

Package-Manager: portage-2.2.26

 dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild
index 48b7df3..7eb355b 100644
--- a/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild
+++ b/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild
@@ -21,6 +21,5 @@ RDEPEND="${DEPEND}"
 RESTRICT="test"
 
 src_install() {
-	exeinto /usr/bin
-	doexe git-remote-hg
+	dobin git-remote-hg
 }


^ permalink raw reply related	[flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/
@ 2016-04-06 22:01 Austin English
  0 siblings, 0 replies; 11+ messages in thread
From: Austin English @ 2016-04-06 22:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e57a2d5adb16386e9ad09d59792c721b0d9b40bf
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  6 22:00:00 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Wed Apr  6 22:00:51 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57a2d5a

dev-vcs/git-remote-hg: add git-remote-hg-0.2

Package-Manager: portage-2.2.26

 dev-vcs/git-remote-hg/Manifest                 |  1 +
 dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild | 26 ++++++++++++++++++++++++++
 dev-vcs/git-remote-hg/metadata.xml             | 16 ++++++++++++++++
 3 files changed, 43 insertions(+)

diff --git a/dev-vcs/git-remote-hg/Manifest b/dev-vcs/git-remote-hg/Manifest
new file mode 100644
index 0000000..7b0e5b4
--- /dev/null
+++ b/dev-vcs/git-remote-hg/Manifest
@@ -0,0 +1 @@
+DIST git-remote-hg-0.2.tar.gz 30397 SHA256 1b122cb925e7ce90ddba6840624d8a26d309b1671bddfe1408e945176c8b9242 SHA512 eb08a90b786593602510fef6210bb381a605d6c4cfda7e0c1051162d0a9929c077081f530dcdfb95f6fd8f0114ed44ea2c8f267e0e7ac110f9445941c9dd8546 WHIRLPOOL 88f1d06771b3e662d82819af2955997e6215c5c740a70363c7fc001aeb9c823ec17d8d4cf8b87b98ad3ff30f07c4844be3a660fb8335f91a01c355d63b1a2828

diff --git a/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild b/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild
new file mode 100644
index 0000000..48b7df3
--- /dev/null
+++ b/dev-vcs/git-remote-hg/git-remote-hg-0.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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"
+
+DEPEND="dev-vcs/git
+		dev-vcs/mercurial"
+RDEPEND="${DEPEND}"
+
+# Most (21/25) tests fail:
+RESTRICT="test"
+
+src_install() {
+	exeinto /usr/bin
+	doexe git-remote-hg
+}

diff --git a/dev-vcs/git-remote-hg/metadata.xml b/dev-vcs/git-remote-hg/metadata.xml
new file mode 100644
index 0000000..5e9d5d5
--- /dev/null
+++ b/dev-vcs/git-remote-hg/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>wizardedit@gentoo.org</email>
+    <name>Austin English</name>
+  </maintainer>
+  <longdescription>
+  'git-remote-hg' is the semi-official Mercurial bridge from Git project,
+  once installed, it allows you to clone, fetch and push to and from
+  Mercurial repositories as if they were Git ones.
+  </longdescription>
+  <upstream>
+	<remote-id type="github">felipec/git-remote-hg</remote-id>
+  </upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2019-06-07 13:15 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-09  3:14 [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-remote-hg/ Austin English
  -- strict thread matches above, loose matches on Subject: below --
2019-06-07 13:15 Michał Górny
2019-04-24  6:21 Michał Górny
2019-04-24  6:21 Michał Górny
2019-04-24  6:21 Michał Górny
2019-04-21 19:10 Lars Wendler
2017-11-26 11:39 David Seifert
2016-09-01 22:07 Austin English
2016-07-11 17:17 Austin English
2016-04-08  0:41 Austin English
2016-04-06 22:01 Austin English

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox