diff options
author | Michał Górny <mgorny@gentoo.org> | 2011-09-20 14:15:19 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2011-09-20 14:15:19 +0000 |
commit | 3c9516d44176846c5179d000159c3178bfe9d842 (patch) | |
tree | 257bc4e941ebb2972fa1da5c472c997b94aa39b2 /dev-vcs/git-bz | |
parent | Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo in bug... (diff) | |
download | gentoo-2-3c9516d44176846c5179d000159c3178bfe9d842.tar.gz gentoo-2-3c9516d44176846c5179d000159c3178bfe9d842.tar.bz2 gentoo-2-3c9516d44176846c5179d000159c3178bfe9d842.zip |
Introduce an ebuild for git-bz snapshot. git-bz is a Bugzilla integration subcommand for git.
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs/git-bz')
-rw-r--r-- | dev-vcs/git-bz/ChangeLog | 11 | ||||
-rw-r--r-- | dev-vcs/git-bz/git-bz-0_p110920.ebuild | 29 | ||||
-rw-r--r-- | dev-vcs/git-bz/metadata.xml | 13 |
3 files changed, 53 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/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> |