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, 28 Aug 2016 16:27:33
Message-Id: 1472401640.43d335dd5be73f02e5c44fcae7b63f2b4e493a54.johu@gentoo
1 commit: 43d335dd5be73f02e5c44fcae7b63f2b4e493a54
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 16:27:09 2016 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 16:27:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43d335dd
7
8 dev-vcs/git-flow: Version bump 1.10.0
9
10 Package-Manager: portage-2.3.0
11
12 dev-vcs/git-flow/Manifest | 1 +
13 dev-vcs/git-flow/git-flow-1.10.0.ebuild | 40 +++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-vcs/git-flow/Manifest b/dev-vcs/git-flow/Manifest
17 index 9785bf1..f42172a 100644
18 --- a/dev-vcs/git-flow/Manifest
19 +++ b/dev-vcs/git-flow/Manifest
20 @@ -1,2 +1,3 @@
21 +DIST git-flow-1.10.0.tar.gz 63175 SHA256 e9c25a500eec3ea6e537a811ed9063e567c5e310caa3ffb274950b744ffcb25a SHA512 5782298dc92a94d673f699fccaa2a00795888f35d613549a2048c84edc0a583bfa1dbf219539745f9c03a1f0cbe8bfcce4a0d9ff596eef397d989060d84b6b92 WHIRLPOOL 7884918c3ccefd76ef46c497ab88cc53d7f034d7ab5514e6bc0c3ae7e21c19778a761bfb111313507bdd31efe73c151eeb10ce268188bfc4f4b113d252a735e4
22 DIST git-flow-1.9.1.tar.gz 61800 SHA256 7692c77744663c5243cdd390bef0a621caee92dde228b50ef97149fc1b54780d SHA512 6245ff641452e72490b8d12610bc1352048efc2016000b9a6f466140e06c41b05a9fbea8ec192f106bb790b76b56babca8bb684a5128739873d2f7fafe48ad32 WHIRLPOOL 904867ecc1cd7f52dd48b839046df838f019aa9472b6e7202de562b70cac83203e10f0de7359279d619e4391d8ae3019ff9fa797a91d6b7ea0ed132c21ccaa60
23 DIST git-flow-completion-0.5.2.tar.gz 7501 SHA256 7d11d82b9a3c25f7c7189ac61d21a4edb2432435d6138f092f49348bb17917df SHA512 500cb6163ebb2bf9b996dd5bcac00efa857badfc95ee1d633f2b16803c6baae7315a96c713107645e0971be4736fe1eef747dc773eb50da138551be4838c21b3 WHIRLPOOL 90eaf0d6adcc87369455129052cbcad9c153fe91892a0607fd311bb370a1004b9f85664d0fb06907369bc6bbe6a224a95981fa5d5518610fab2cade0d33c7957
24
25 diff --git a/dev-vcs/git-flow/git-flow-1.10.0.ebuild b/dev-vcs/git-flow/git-flow-1.10.0.ebuild
26 new file mode 100644
27 index 00000000..abdb799
28 --- /dev/null
29 +++ b/dev-vcs/git-flow/git-flow-1.10.0.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
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 +}