Gentoo Archives: gentoo-commits

From: "Johannes Huber (johu)" <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/git-flow: git-flow-0.4.1.ebuild metadata.xml ChangeLog
Date: Sat, 22 Mar 2014 15:49:20
Message-Id: 20140322154916.B08DD2004F@flycatcher.gentoo.org
1 johu 14/03/22 15:49:16
2
3 Added: git-flow-0.4.1.ebuild metadata.xml ChangeLog
4 Log:
5 New package wrt bug #419943. Import from johu overlay. Initial ebuild by Moritz Schlarb <moschlar@××××××××.de>.
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
8
9 Revision Changes Path
10 1.1 dev-vcs/git-flow/git-flow-0.4.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-flow/git-flow-0.4.1.ebuild?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-flow/git-flow-0.4.1.ebuild?rev=1.1&content-type=text/plain
14
15 Index: git-flow-0.4.1.ebuild
16 ===================================================================
17 # Copyright 1999-2014 Gentoo Foundation
18 # Distributed under the terms of the GNU General Public License v2
19 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-flow/git-flow-0.4.1.ebuild,v 1.1 2014/03/22 15:49:16 johu Exp $
20
21 EAPI=5
22
23 MY_PN="${PN/-/}"
24 COMP_PN="${PN}-completion"
25 COMP_PV="0.4.2.2"
26 COMP_P="${COMP_PN}-${COMP_PV}"
27 inherit eutils bash-completion-r1
28
29 DESCRIPTION="Git extensions to provide high-level repository operations for Vincent Driessen's branching model"
30 HOMEPAGE="https://github.com/nvie/gitflow"
31 SRC_URI="https://github.com/nvie/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
32 https://github.com/bobthecow/${COMP_PN}/archive/${COMP_PV}.tar.gz -> ${COMP_P}.tar.gz"
33
34 LICENSE="BSD MIT"
35 SLOT="0"
36 KEYWORDS="~amd64 ~x86"
37 IUSE=""
38
39 DEPEND=""
40 RDEPEND="${DEPEND}
41 dev-util/shflags
42 dev-vcs/git
43 "
44
45 DOCS=( AUTHORS Changes.mdown README.mdown )
46
47 PATCHES=( "${FILESDIR}/${P}-unbundle-shflags.patch" )
48
49 S="${WORKDIR}/${MY_PN}-${PV}"
50
51 src_prepare() {
52 [[ ${PATCHES[@]} ]] && epatch "${PATCHES[@]}"
53 debug-print "$FUNCNAME: applying user patches"
54 epatch_user
55 }
56
57 src_compile() {
58 true
59 }
60
61 src_install() {
62 emake prefix="${D}/usr" install
63
64 [[ ${DOCS[@]} ]] && dodoc "${DOCS[@]}"
65
66 newbashcomp "${WORKDIR}/${COMP_P}/${COMP_PN}.bash" ${PN}
67 }
68
69
70
71 1.1 dev-vcs/git-flow/metadata.xml
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-flow/metadata.xml?rev=1.1&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-flow/metadata.xml?rev=1.1&content-type=text/plain
75
76 Index: metadata.xml
77 ===================================================================
78 <?xml version="1.0" encoding="UTF-8"?>
79 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
80 <pkgmetadata>
81 <maintainer>
82 <email>johu@g.o</email>
83 <name>Johannes Huber</name>
84 </maintainer>
85 <upstream>
86 <remote-id type="github">nvie/gitflow</remote-id>
87 </upstream>
88 </pkgmetadata>
89
90
91
92 1.1 dev-vcs/git-flow/ChangeLog
93
94 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-flow/ChangeLog?rev=1.1&view=markup
95 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-flow/ChangeLog?rev=1.1&content-type=text/plain
96
97 Index: ChangeLog
98 ===================================================================
99 # ChangeLog for dev-vcs/git-flow
100 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
101 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-flow/ChangeLog,v 1.1 2014/03/22 15:49:16 johu Exp $
102
103 *git-flow-0.4.1 (22 Mar 2014)
104
105 22 Mar 2014; Johannes Huber <johu@g.o> +git-flow-0.4.1.ebuild,
106 +files/git-flow-0.4.1-unbundle-shflags.patch, +metadata.xml:
107 New package wrt bug #419943. Import from johu overlay. Initial ebuild by
108 Moritz Schlarb <moschlar@××××××××.de>.