Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/git-flow/
Date: Thu, 09 Jan 2020 20:17:42
Message-Id: 1578601046.f3dd4de34da84dd63c3b6ec5912a13b039c5bd98.johu@gentoo
1 commit: f3dd4de34da84dd63c3b6ec5912a13b039c5bd98
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 9 20:17:05 2020 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 9 20:17:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3dd4de3
7
8 dev-vcs/git-flow: Remove 1.11.0
9
10 Overshadowed by 1.12.3.
11
12 Package-Manager: Portage-2.3.84, Repoman-2.3.20
13 Signed-off-by: Johannes Huber <johu <AT> gentoo.org>
14
15 dev-vcs/git-flow/Manifest | 1 -
16 dev-vcs/git-flow/git-flow-1.11.0.ebuild | 39 ---------------------------------
17 2 files changed, 40 deletions(-)
18
19 diff --git a/dev-vcs/git-flow/Manifest b/dev-vcs/git-flow/Manifest
20 index a20cbb83081..405258672c7 100644
21 --- a/dev-vcs/git-flow/Manifest
22 +++ b/dev-vcs/git-flow/Manifest
23 @@ -1,3 +1,2 @@
24 -DIST git-flow-1.11.0.tar.gz 64077 BLAKE2B 7761ed8020039b2fe9fad23664c5e8d0ad754033e80b3cf402fae5e72331a79ac548f8676f9e8c5d6fe5d7032a5c25770563300d7be81834c3d47869a374ee6b SHA512 3659f876febbec10457ba7ba1ecbaeb7f29b11cc8caf94042f54b8f8e2265d2bb31cbcdf7dfafae9c5d04e0ca57adddfa67f9e67df4a5dcf0bc412f1216a3c07
25 DIST git-flow-1.12.3.tar.gz 66173 BLAKE2B c6045fda9df8e305ccde8fac844614c840c5361f41848af6bf3394f64ffbbc5b03c20ed966960667d9aba76b0ed105f4caa2a5c0d5eab02a24720bff7b0aea48 SHA512 807cd36de7f5c9b4a7b28101de5ea8cfcbf528ff76578e4914c788b8098c7d3d91f8c19a3274e124ee7f7b4bdb6efdc5de2b74e09f374b71ae685beaa86e3e5a
26 DIST git-flow-completion-0.6.0.tar.gz 7823 BLAKE2B 24dedfc0cddb5acfa57333895533f5c882a0c85db6e08539ff5c33f984eec40cb06da6d5f0ba812348c9cbf226080875de0269b295791ee5d4c8b2732a1ea1b2 SHA512 1082ad47938ec78045f4cbd12340a82960ba3de204c21a95e1166cb0b86e96dbbc3e5fc8af1945c951d5edd43b4026021761e8377795acbb87af3c1e391cb256
27
28 diff --git a/dev-vcs/git-flow/git-flow-1.11.0.ebuild b/dev-vcs/git-flow/git-flow-1.11.0.ebuild
29 deleted file mode 100644
30 index d42ac93ef3c..00000000000
31 --- a/dev-vcs/git-flow/git-flow-1.11.0.ebuild
32 +++ /dev/null
33 @@ -1,39 +0,0 @@
34 -# Copyright 1999-2018 Gentoo Foundation
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=6
38 -
39 -MY_PN="${PN/-/}-avh"
40 -COMP_PN="${PN}-completion"
41 -COMP_PV="0.6.0"
42 -COMP_P="${COMP_PN}-${COMP_PV}"
43 -inherit bash-completion-r1
44 -
45 -DESCRIPTION="Git extensions to provide high-level repository operations"
46 -HOMEPAGE="https://github.com/petervanderdoes/gitflow-avh"
47 -SRC_URI="https://github.com/petervanderdoes/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
48 -https://github.com/petervanderdoes/${COMP_PN}/archive/${COMP_PV}.tar.gz -> ${COMP_P}.tar.gz"
49 -
50 -LICENSE="BSD MIT"
51 -SLOT="0"
52 -KEYWORDS="amd64 x86"
53 -IUSE=""
54 -
55 -DEPEND=""
56 -RDEPEND="${DEPEND}
57 - dev-vcs/git
58 -"
59 -
60 -DOCS=( AUTHORS CHANGELOG.md README.md )
61 -
62 -S="${WORKDIR}/${MY_PN}-${PV}"
63 -
64 -src_compile() {
65 - true
66 -}
67 -
68 -src_install() {
69 - emake prefix="${D}/usr" install
70 - einstalldocs
71 - newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN}
72 -}