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-bz/
Date: Thu, 02 Jan 2020 13:19:52
Message-Id: 1577971180.a9b63e636b8b55977544bfa8ce96c254db3065c2.mgorny@gentoo
1 commit: a9b63e636b8b55977544bfa8ce96c254db3065c2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 2 12:06:58 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 2 13:19:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9b63e63
7
8 dev-vcs/git-bz: Remove dead live ebuild
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-vcs/git-bz/git-bz-9999.ebuild | 47 ---------------------------------------
13 1 file changed, 47 deletions(-)
14
15 diff --git a/dev-vcs/git-bz/git-bz-9999.ebuild b/dev-vcs/git-bz/git-bz-9999.ebuild
16 deleted file mode 100644
17 index c8f2c69685e..00000000000
18 --- a/dev-vcs/git-bz/git-bz-9999.ebuild
19 +++ /dev/null
20 @@ -1,47 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -PYTHON_COMPAT=( python2_7 pypy )
26 -PYTHON_REQ_USE='sqlite'
27 -
28 -EGIT_REPO_URI="git://git.fishsoup.net/${PN}
29 - http://git.fishsoup.net/cgit/${PN}"
30 -inherit git-r3 python-single-r1
31 -
32 -DESCRIPTION="Bugzilla subcommand for git"
33 -HOMEPAGE="http://www.fishsoup.net/software/git-bz/"
34 -SRC_URI=""
35 -
36 -LICENSE="GPL-2"
37 -SLOT="0"
38 -KEYWORDS=""
39 -IUSE=""
40 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
41 -
42 -RDEPEND="
43 - dev-vcs/git
44 - ${PYTHON_DEPS}"
45 -DEPEND="app-text/asciidoc
46 - app-text/xmlto"
47 -
48 -src_configure() {
49 - # custom script
50 - ./configure --prefix="${EPREFIX}/usr" || die
51 -}
52 -
53 -src_compile() {
54 - emake ${PN}.1
55 -}
56 -
57 -src_install() {
58 - default
59 - python_fix_shebang "${ED%/}"/usr/bin/${PN}
60 -}
61 -
62 -pkg_postinst() {
63 - if ! has_version dev-python/pycrypto; then
64 - elog "For Chrome/-ium cookie decryption support, please install:"
65 - elog " dev-python/pycrypto"
66 - fi
67 -}