Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/git-deploy: ChangeLog git-deploy-6.0.1_p20131024.ebuild git-deploy-20120202.ebuild
Date: Sat, 22 Feb 2014 14:28:08
Message-Id: 20140222142805.1E38B2004C@flycatcher.gentoo.org
1 idl0r 14/02/22 14:28:04
2
3 Modified: ChangeLog
4 Added: git-deploy-6.0.1_p20131024.ebuild
5 Removed: git-deploy-20120202.ebuild
6 Log:
7 Version bump, also fixes bug 443738
8
9 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B427ABC8)
10
11 Revision Changes Path
12 1.2 dev-vcs/git-deploy/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-deploy/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-deploy/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-deploy/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/git-deploy/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 10 Feb 2012 20:27:25 -0000 1.1
25 +++ ChangeLog 22 Feb 2014 14:28:04 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-vcs/git-deploy
28 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-deploy/ChangeLog,v 1.1 2012/02/10 20:27:25 idl0r Exp $
30 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-deploy/ChangeLog,v 1.2 2014/02/22 14:28:04 idl0r Exp $
32 +
33 +*git-deploy-6.0.1_p20131024 (22 Feb 2014)
34 +
35 + 22 Feb 2014; Christian Ruppert <idl0r@g.o>
36 + +git-deploy-6.0.1_p20131024.ebuild, -git-deploy-20120202.ebuild:
37 + Version bump, also fixes bug 443738
38
39 *git-deploy-20120202 (10 Feb 2012)
40
41
42
43
44 1.1 dev-vcs/git-deploy/git-deploy-6.0.1_p20131024.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-deploy/git-deploy-6.0.1_p20131024.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/git-deploy/git-deploy-6.0.1_p20131024.ebuild?rev=1.1&content-type=text/plain
48
49 Index: git-deploy-6.0.1_p20131024.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/git-deploy/git-deploy-6.0.1_p20131024.ebuild,v 1.1 2014/02/22 14:28:04 idl0r Exp $
54
55 EAPI=5
56
57 inherit perl-app
58
59 COMMIT="e9ef93debd12d85e70676dd79b4bd78ac2b05271"
60
61 DESCRIPTION="make deployments so easy that you'll let new hires do them on their
62 first day"
63 HOMEPAGE="https://github.com/git-deploy/git-deploy"
64 SRC_URI="https://github.com/${PN}/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
65
66 LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="test"
70
71 COMMON_DEPEND="dev-vcs/git
72 virtual/perl-File-Spec
73 virtual/perl-Getopt-Long
74 virtual/perl-Term-ANSIColor
75 virtual/perl-Time-HiRes
76 virtual/perl-Memoize
77 virtual/perl-Data-Dumper"
78 DEPEND="dev-lang/perl
79 test? (
80 ${COMMON_DEPEND}
81 virtual/perl-File-Temp
82 )"
83 RDEPEND="dev-lang/perl
84 ${COMMON_DEPEND}"
85
86 S="${WORKDIR}/${PN}-${COMMIT}"
87
88 src_prepare() {
89 pod2man -n git-deploy README.pod > git-deploy.1 || die
90 }
91
92 src_test() {
93 local testdir=${TMPDIR}/git-deploy-test
94
95 # Prepare for tests
96 cp -a "${S}/" $testdir || die
97 cd $testdir || die
98
99 git config --global user.name "git-deploy" || die
100 git config --global user.email "git-deploy@localhost" || die
101
102 git init . || die
103 git add . || die
104 git commit -a -m 'git-deploy testing' || die
105
106 USER="git-deploy" perl t/run.t || die
107 }
108
109 src_install() {
110 dobin git-deploy
111
112 insinto $VENDOR_LIB
113 doins -r lib/Git
114
115 doman git-deploy.1
116
117 newdoc Changes ChangeLog
118 }