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: Sun, 30 Jun 2019 08:36:22
Message-Id: 1561883765.fa8312f5798174ebc02aada3b52d49d0e0f4279d.johu@gentoo
1 commit: fa8312f5798174ebc02aada3b52d49d0e0f4279d
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 30 08:35:22 2019 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 30 08:36:05 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa8312f5
7
8 dev-vcs/git-flow: Version bump 1.12.3
9
10 Package-Manager: Portage-2.3.67, Repoman-2.3.16
11 Signed-off-by: Johannes Huber <johu <AT> gentoo.org>
12
13 dev-vcs/git-flow/Manifest | 1 +
14 dev-vcs/git-flow/git-flow-1.12.3.ebuild | 40 +++++++++++++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/dev-vcs/git-flow/Manifest b/dev-vcs/git-flow/Manifest
18 index 5060cafa58b..a20cbb83081 100644
19 --- a/dev-vcs/git-flow/Manifest
20 +++ b/dev-vcs/git-flow/Manifest
21 @@ -1,2 +1,3 @@
22 DIST git-flow-1.11.0.tar.gz 64077 BLAKE2B 7761ed8020039b2fe9fad23664c5e8d0ad754033e80b3cf402fae5e72331a79ac548f8676f9e8c5d6fe5d7032a5c25770563300d7be81834c3d47869a374ee6b SHA512 3659f876febbec10457ba7ba1ecbaeb7f29b11cc8caf94042f54b8f8e2265d2bb31cbcdf7dfafae9c5d04e0ca57adddfa67f9e67df4a5dcf0bc412f1216a3c07
23 +DIST git-flow-1.12.3.tar.gz 66173 BLAKE2B c6045fda9df8e305ccde8fac844614c840c5361f41848af6bf3394f64ffbbc5b03c20ed966960667d9aba76b0ed105f4caa2a5c0d5eab02a24720bff7b0aea48 SHA512 807cd36de7f5c9b4a7b28101de5ea8cfcbf528ff76578e4914c788b8098c7d3d91f8c19a3274e124ee7f7b4bdb6efdc5de2b74e09f374b71ae685beaa86e3e5a
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.12.3.ebuild b/dev-vcs/git-flow/git-flow-1.12.3.ebuild
27 new file mode 100644
28 index 00000000000..0e539df2e29
29 --- /dev/null
30 +++ b/dev-vcs/git-flow/git-flow-1.12.3.ebuild
31 @@ -0,0 +1,40 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +MY_PN="${PN/-/}-avh"
38 +COMP_PN="${PN}-completion"
39 +COMP_PV="0.6.0"
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 +
52 +RDEPEND="dev-vcs/git"
53 +
54 +DOCS=( AUTHORS CHANGELOG.md README.md )
55 +
56 +S="${WORKDIR}/${MY_PN}-${PV}"
57 +
58 +src_prepare() {
59 + default
60 + sed -i "s/doc\/gitflow/doc\/${P}/" Makefile || die "fixing doc path failed"
61 +}
62 +
63 +src_compile() {
64 + true
65 +}
66 +
67 +src_install() {
68 + emake prefix="${D}/usr" install
69 + einstalldocs
70 + newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN}
71 +}