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: Mon, 02 Apr 2018 10:25:36
Message-Id: 1522664726.385712c2262ef9c0ef001c2f5659e5b7aaf3a032.johu@gentoo
1 commit: 385712c2262ef9c0ef001c2f5659e5b7aaf3a032
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 2 10:24:55 2018 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 2 10:25:26 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385712c2
7
8 dev-vcs/git-flow: Remove 1.10.2
9
10 Package-Manager: Portage-2.3.27, Repoman-2.3.9
11
12 dev-vcs/git-flow/Manifest | 2 --
13 dev-vcs/git-flow/git-flow-1.10.2.ebuild | 39 ---------------------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-vcs/git-flow/Manifest b/dev-vcs/git-flow/Manifest
17 index 5e31fff7773..5060cafa58b 100644
18 --- a/dev-vcs/git-flow/Manifest
19 +++ b/dev-vcs/git-flow/Manifest
20 @@ -1,4 +1,2 @@
21 -DIST git-flow-1.10.2.tar.gz 63275 BLAKE2B 27442af384bd3a1f1082b74e8ebdd4c5d25152e662da7a9277b54d93edb0a87950c68003772d0153a3f8f76dfb66e22b87f01c2b5f3f5775e333be9f2922056f SHA512 139e56eb872a3db271a0e7c65c8d55d2720c06646c2569f14d8e7485d3888918fa8390a95a9df48b4677c1a225367b5aeadf4e7705b9475c38f9e931ea45fe03
22 DIST git-flow-1.11.0.tar.gz 64077 BLAKE2B 7761ed8020039b2fe9fad23664c5e8d0ad754033e80b3cf402fae5e72331a79ac548f8676f9e8c5d6fe5d7032a5c25770563300d7be81834c3d47869a374ee6b SHA512 3659f876febbec10457ba7ba1ecbaeb7f29b11cc8caf94042f54b8f8e2265d2bb31cbcdf7dfafae9c5d04e0ca57adddfa67f9e67df4a5dcf0bc412f1216a3c07
23 -DIST git-flow-completion-0.5.2.tar.gz 7501 BLAKE2B 73b63088cd70e9cb7a0fa04c4c36c37b117db56c7ba95a5b152671f4a115744096451ee8e211feb50faccae166e56f87ac90c0dd04ca281b8199f8d34f303a6f SHA512 500cb6163ebb2bf9b996dd5bcac00efa857badfc95ee1d633f2b16803c6baae7315a96c713107645e0971be4736fe1eef747dc773eb50da138551be4838c21b3
24 DIST git-flow-completion-0.6.0.tar.gz 7823 BLAKE2B 24dedfc0cddb5acfa57333895533f5c882a0c85db6e08539ff5c33f984eec40cb06da6d5f0ba812348c9cbf226080875de0269b295791ee5d4c8b2732a1ea1b2 SHA512 1082ad47938ec78045f4cbd12340a82960ba3de204c21a95e1166cb0b86e96dbbc3e5fc8af1945c951d5edd43b4026021761e8377795acbb87af3c1e391cb256
25
26 diff --git a/dev-vcs/git-flow/git-flow-1.10.2.ebuild b/dev-vcs/git-flow/git-flow-1.10.2.ebuild
27 deleted file mode 100644
28 index 278bdfc7594..00000000000
29 --- a/dev-vcs/git-flow/git-flow-1.10.2.ebuild
30 +++ /dev/null
31 @@ -1,39 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -MY_PN="${PN/-/}-avh"
38 -COMP_PN="${PN}-completion"
39 -COMP_PV="0.5.2"
40 -COMP_P="${COMP_PN}-${COMP_PV}"
41 -inherit bash-completion-r1
42 -
43 -DESCRIPTION="Git extensions to provide high-level repository operations"
44 -HOMEPAGE="https://github.com/petervanderdoes/gitflow-avh"
45 -SRC_URI="https://github.com/petervanderdoes/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
46 -https://github.com/petervanderdoes/${COMP_PN}/archive/${COMP_PV}.tar.gz -> ${COMP_P}.tar.gz"
47 -
48 -LICENSE="BSD MIT"
49 -SLOT="0"
50 -KEYWORDS="amd64 x86"
51 -IUSE=""
52 -
53 -DEPEND=""
54 -RDEPEND="${DEPEND}
55 - dev-vcs/git
56 -"
57 -
58 -DOCS=( AUTHORS Changes.mdown README.mdown )
59 -
60 -S="${WORKDIR}/${MY_PN}-${PV}"
61 -
62 -src_compile() {
63 - true
64 -}
65 -
66 -src_install() {
67 - emake prefix="${D}/usr" install
68 - einstalldocs
69 - newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN}
70 -}