public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] dev/mgorny:master commit in: dev-vcs/git-bz/
@ 2011-09-19 23:03 Michał Górny
  0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2011-09-19 23:03 UTC (permalink / raw
  To: gentoo-commits

commit:     7951985af4ce7ce62bfac544f62c8d007b793c22
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 19 23:05:46 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 19 23:05:46 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=7951985a

dev-vcs/git-bz: Introduce an initial live ebuild for git-bz.

(Portage version: 2.2.0_alpha59/git/Linux x86_64, unsigned Manifest commit)

---
 dev-vcs/git-bz/git-bz-9999.ebuild |   43 +++++++++++++++++++++++++++++++++++++
 dev-vcs/git-bz/metadata.xml       |   13 +++++++++++
 2 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/dev-vcs/git-bz/git-bz-9999.ebuild b/dev-vcs/git-bz/git-bz-9999.ebuild
new file mode 100644
index 0000000..3e7fc39
--- /dev/null
+++ b/dev-vcs/git-bz/git-bz-9999.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=3
+PYTHON_DEPEND=2
+
+inherit python
+
+#if LIVE
+EGIT_REPO_URI="git://git.fishsoup.net/${PN}
+	http://git.fishsoup.net/cgit/${PN}"
+inherit git-2
+#endif
+
+DESCRIPTION="Bugzilla subcommand for git"
+HOMEPAGE="http://www.fishsoup.net/software/git-bz/"
+SRC_URI=""
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="app-text/asciidoc
+	app-text/xmlto
+	dev-vcs/git"
+
+#if LIVE
+KEYWORDS=
+SRC_URI=
+#endif
+
+src_compile() {
+	python_convert_shebangs 2 ${PN}
+	emake ${PN}.1 || die
+}
+
+src_install() {
+	dobin ${PN} || die
+	doman ${PN}.1 || die
+	dodoc TODO || die
+}

diff --git a/dev-vcs/git-bz/metadata.xml b/dev-vcs/git-bz/metadata.xml
new file mode 100644
index 0000000..90157da
--- /dev/null
+++ b/dev-vcs/git-bz/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>no-herd</herd>
+	<maintainer>
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
+	<maintainer>
+		<email>nirbheek@gentoo.org</email>
+		<name>Nirbheek Chauhan</name>
+	</maintainer>
+</pkgmetadata>



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

* [gentoo-commits] dev/mgorny:master commit in: dev-vcs/git-bz/
@ 2011-09-20 14:13 Michał Górny
  0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2011-09-20 14:13 UTC (permalink / raw
  To: gentoo-commits

commit:     49f30959c956431c78d20a490361b2210a32120e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 20 14:09:52 2011 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Sep 20 14:09:52 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=49f30959

dev-vcs/git-bz: Adjust the ebuild to handle snapshot creation gracefully.

(Portage version: 2.2.0_alpha59/git/Linux x86_64, unsigned Manifest commit)

---
 dev-vcs/git-bz/git-bz-9999.ebuild |   17 +++++++++++------
 1 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/dev-vcs/git-bz/git-bz-9999.ebuild b/dev-vcs/git-bz/git-bz-9999.ebuild
index 3e7fc39..712996f 100644
--- a/dev-vcs/git-bz/git-bz-9999.ebuild
+++ b/dev-vcs/git-bz/git-bz-9999.ebuild
@@ -15,26 +15,31 @@ inherit git-2
 
 DESCRIPTION="Bugzilla subcommand for git"
 HOMEPAGE="http://www.fishsoup.net/software/git-bz/"
-SRC_URI=""
+SRC_URI="http://dev.gentoo.org/~mgorny/dist/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 
-RDEPEND="app-text/asciidoc
-	app-text/xmlto
-	dev-vcs/git"
+RDEPEND="dev-vcs/git"
 
 #if LIVE
+DEPEND="app-text/asciidoc
+	app-text/xmlto"
+
 KEYWORDS=
 SRC_URI=
-#endif
 
-src_compile() {
+src_prepare() {
 	python_convert_shebangs 2 ${PN}
 	emake ${PN}.1 || die
 }
+#endif
+
+src_compile() {
+	:
+}
 
 src_install() {
 	dobin ${PN} || die



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

* [gentoo-commits] dev/mgorny:master commit in: dev-vcs/git-bz/
@ 2012-04-26  6:09 Michał Górny
  0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2012-04-26  6:09 UTC (permalink / raw
  To: gentoo-commits

commit:     b20337c87dce1c22d2a3a02c9e957a0965d885e0
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 26 06:09:54 2012 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 26 06:09:54 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/mgorny.git;a=commit;h=b20337c8

dev-vcs/git-bz: Update the ebuild to use my mirror for snapshots.

(Portage version: 2.2.0_alpha101/git/Linux x86_64, unsigned Manifest commit)

---
 dev-vcs/git-bz/git-bz-9999.ebuild |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-vcs/git-bz/git-bz-9999.ebuild b/dev-vcs/git-bz/git-bz-9999.ebuild
index 111159d..be07a3a 100644
--- a/dev-vcs/git-bz/git-bz-9999.ebuild
+++ b/dev-vcs/git-bz/git-bz-9999.ebuild
@@ -9,13 +9,14 @@ inherit python
 
 #if LIVE
 EGIT_REPO_URI="git://git.fishsoup.net/${PN}
-	http://git.fishsoup.net/cgit/${PN}"
+	http://git.fishsoup.net/cgit/${PN}
+	https://bitbucket.org/mgorny/${PN}.git"
 inherit git-2
 #endif
 
 DESCRIPTION="Bugzilla subcommand for git"
 HOMEPAGE="http://www.fishsoup.net/software/git-bz/"
-SRC_URI="http://dev.gentoo.org/~mgorny/dist/${P}.tar.bz2"
+SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"



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

end of thread, other threads:[~2012-04-26  6:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-19 23:03 [gentoo-commits] dev/mgorny:master commit in: dev-vcs/git-bz/ Michał Górny
  -- strict thread matches above, loose matches on Subject: below --
2011-09-20 14:13 Michał Górny
2012-04-26  6:09 Michał Górny

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