Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-imerge/
Date: Fri, 05 May 2017 23:22:34
Message-Id: 1494024647.d02e1cf834730be1673e7376ee540532821e250c.mjo@gentoo
1 commit: d02e1cf834730be1673e7376ee540532821e250c
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 5 22:50:47 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Fri May 5 22:50:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d02e1cf8
7
8 dev-vcs/git-imerge: remove unused version 0.7.0.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-vcs/git-imerge/git-imerge-0.7.0.ebuild | 38 ------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/dev-vcs/git-imerge/git-imerge-0.7.0.ebuild b/dev-vcs/git-imerge/git-imerge-0.7.0.ebuild
16 deleted file mode 100644
17 index 3b7e0a10752..00000000000
18 --- a/dev-vcs/git-imerge/git-imerge-0.7.0.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=5
25 -
26 -PYTHON_COMPAT=( python2_7 python3_4 )
27 -
28 -inherit bash-completion-r1 python-r1
29 -
30 -DESCRIPTION="Incremental merge for git"
31 -HOMEPAGE="https://github.com/mhagger/git-imerge"
32 -SRC_URI="https://github.com/mhagger/git-imerge/archive/${PV}.tar.gz -> ${P}.tar.gz"
33 -
34 -LICENSE="GPL-2+"
35 -SLOT="0"
36 -KEYWORDS="~amd64 ~x86"
37 -IUSE=""
38 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
39 -
40 -RDEPEND="${PYTHON_DEPS}
41 - dev-vcs/git"
42 -DEPEND="dev-python/docutils"
43 -
44 -src_compile() {
45 - rst2html.py README.rst > README.html || die
46 - rst2s5.py \
47 - --theme=small-white \
48 - --current-slide \
49 - doc/presentations/GitMerge-2013/talk.rst doc/presentations/GitMerge-2013/talk.html || die
50 -}
51 -
52 -src_install() {
53 - dobin ${PN}
54 - python_replicate_script "${D}"/usr/bin/${PN}
55 - newbashcomp "${FILESDIR}"/git-imerge.bashcomplete git-imerge
56 - dodoc README.rst
57 - dohtml README.html doc/presentations/GitMerge-2013/talk.html
58 -}