summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2011-09-20 14:15:19 +0000
committerMichał Górny <mgorny@gentoo.org>2011-09-20 14:15:19 +0000
commitd4862e1bc9dfb69ac9b32bf77d6d4e6b51521133 (patch)
tree0c357eb28bbd5a830d909cfb476d0a25aad90291 /dev-vcs
parentMarked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo in bug... (diff)
downloadhistorical-d4862e1bc9dfb69ac9b32bf77d6d4e6b51521133.tar.gz
historical-d4862e1bc9dfb69ac9b32bf77d6d4e6b51521133.tar.bz2
historical-d4862e1bc9dfb69ac9b32bf77d6d4e6b51521133.zip
Introduce an ebuild for git-bz snapshot. git-bz is a Bugzilla integration subcommand for git.
Package-Manager: portage-2.2.0_alpha59/cvs/Linux x86_64
Diffstat (limited to 'dev-vcs')
-rw-r--r--dev-vcs/git-bz/ChangeLog11
-rw-r--r--dev-vcs/git-bz/Manifest16
-rw-r--r--dev-vcs/git-bz/git-bz-0_p110920.ebuild29
-rw-r--r--dev-vcs/git-bz/metadata.xml13
4 files changed, 69 insertions, 0 deletions
diff --git a/dev-vcs/git-bz/ChangeLog b/dev-vcs/git-bz/ChangeLog
new file mode 100644
index 000000000000..3fb2b3b951a2
--- /dev/null
+++ b/dev-vcs/git-bz/ChangeLog
@@ -0,0 +1,11 @@
+# ChangeLog for dev-vcs/git-bz
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-bz/ChangeLog,v 1.1 2011/09/20 14:15:19 mgorny Exp $
+
+*git-bz-0_p110920 (20 Sep 2011)
+
+ 20 Sep 2011; Michał Górny <mgorny@gentoo.org> +git-bz-0_p110920.ebuild,
+ +metadata.xml:
+ Introduce an ebuild for git-bz snapshot. git-bz is a Bugzilla integration
+ subcommand for git.
+
diff --git a/dev-vcs/git-bz/Manifest b/dev-vcs/git-bz/Manifest
new file mode 100644
index 000000000000..93139f1b7774
--- /dev/null
+++ b/dev-vcs/git-bz/Manifest
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA256
+
+DIST git-bz-0_p110920.tar.bz2 32594 RMD160 bce0ddb40308e097fd32b7bb02c028605dbb5aec SHA1 b29b4b015f6ca3a5a01b121bfe11491b121fdb3c SHA256 7475612013937598cc9a08481f5557f8e9f3c585aa977ddf3763597219e86afd
+EBUILD git-bz-0_p110920.ebuild 595 RMD160 c946fb4bb556e976c7efb454775ad5effe1d4d63 SHA1 dcea7d79f7810700aeff38ef7a96a9be1a9ea309 SHA256 89ede3ed56a0e0a115a48c20f4f499d17b29ab8ace93fc2d89e09708b24d7743
+MISC ChangeLog 426 RMD160 6297a5389fddb5d1b960b9b1c46019a2eb9f6363 SHA1 88dc7a3f9fab5334088c96d6d13d5be15f4093b2 SHA256 c8263ef161adbf6a4b067ba9041ebf39335ce6651c524dd62124502add6a5591
+MISC metadata.xml 353 RMD160 96ed5fbdd7ee5ad52e0df4c62d74fcf82e0cfded SHA1 354710ecfa10de73644876fc4b9bb26162b5fe51 SHA256 979aaba91cb8ded988003abb2181be4b86f6a76be923b689ee628f077745be4f
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.18 (GNU/Linux)
+
+iJwEAQEIAAYFAk54oIEACgkQfXuS5UK5QB26OwP/dunf/9u/Bg7H5gLLueZeT8nC
+vYPwby/mpaB/ezvlZYqp0hQAVM88PyJzCYuAqbJ1Fg067rtwvyuYAoKOke3nX7fQ
+F2puUJT0W+ReTJUFJ2uxcNdPsEpygEgRqGSqnVhecyC4+VVWzacVDCZHWlPvILl0
+orcapnxvdv0WiLE9PhY=
+=1t28
+-----END PGP SIGNATURE-----
diff --git a/dev-vcs/git-bz/git-bz-0_p110920.ebuild b/dev-vcs/git-bz/git-bz-0_p110920.ebuild
new file mode 100644
index 000000000000..7bff5dd48f41
--- /dev/null
+++ b/dev-vcs/git-bz/git-bz-0_p110920.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-bz/git-bz-0_p110920.ebuild,v 1.1 2011/09/20 14:15:19 mgorny Exp $
+
+EAPI=3
+PYTHON_DEPEND=2
+
+inherit python
+
+DESCRIPTION="Bugzilla subcommand for git"
+HOMEPAGE="http://www.fishsoup.net/software/git-bz/"
+SRC_URI="http://dev.gentoo.org/~mgorny/dist/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-vcs/git"
+
+src_compile() {
+ :
+}
+
+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 000000000000..90157da9dc3c
--- /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>