Gentoo Archives: gentoo-commits

From: "Sebastian Pipping (sping)" <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-vcs/svn2git: ChangeLog svn2git-1.0.10.ebuild
Date: Tue, 21 May 2013 21:39:14
Message-Id: 20130521213815.AC36F2171E@flycatcher.gentoo.org
1 sping 13/05/21 21:38:15
2
3 Modified: ChangeLog
4 Added: svn2git-1.0.10.ebuild
5 Log:
6 dev-vcs/svn2git: 1.0.10
7
8 (Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x401A1600)
9
10 Revision Changes Path
11 1.21 dev-vcs/svn2git/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/svn2git/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/svn2git/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/svn2git/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-vcs/svn2git/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 9 May 2013 18:41:39 -0000 1.20
24 +++ ChangeLog 21 May 2013 21:38:15 -0000 1.21
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-vcs/svn2git
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svn2git/ChangeLog,v 1.20 2013/05/09 18:41:39 sping Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svn2git/ChangeLog,v 1.21 2013/05/21 21:38:15 sping Exp $
30 +
31 +*svn2git-1.0.10 (21 May 2013)
32 +
33 + 21 May 2013; Sebastian Pipping <sping@g.o> +svn2git-1.0.10.ebuild,
34 + +files/svn2git-1.0.10-version.patch:
35 + Bump to 1.0.10, stop the version patch madness
36
37 09 May 2013; Sebastian Pipping <sping@g.o> -svn2git-1.0.8.ebuild:
38 Remove 1.0.8 due to the UTF-8 bug fixed in 1.0.8-r1
39
40
41
42 1.1 dev-vcs/svn2git/svn2git-1.0.10.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/svn2git/svn2git-1.0.10.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-vcs/svn2git/svn2git-1.0.10.ebuild?rev=1.1&content-type=text/plain
46
47 Index: svn2git-1.0.10.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/svn2git/svn2git-1.0.10.ebuild,v 1.1 2013/05/21 21:38:15 sping Exp $
52
53 EAPI="2"
54
55 inherit eutils qt4-r2
56 [ "$PV" == "9999" ] && inherit git
57
58 DESCRIPTION="Tool for one-time conversion from svn to git."
59 HOMEPAGE="http://gitorious.org/svn2git/svn2git"
60 if [ "$PV" == "9999" ]; then
61 EGIT_REPO_URI="git://gitorious.org/svn2git/svn2git.git"
62 KEYWORDS=""
63 else
64 SRC_URI="http://gitorious.org/${PN}/${PN}/archive-tarball/${PV} -> ${P}.tar.gz"
65 KEYWORDS="~amd64 ~x86"
66 fi
67
68 LICENSE="GPL-3"
69 SLOT="0"
70 IUSE=""
71 # KEYWORDS way up
72
73 DEPEND="dev-vcs/subversion
74 dev-qt/qtcore:4"
75 RDEPEND="${DEPEND}
76 dev-vcs/git"
77
78 S=${WORKDIR}/${PN}-${PN}
79
80 src_prepare() {
81 # Note: patching order matters
82 epatch "${FILESDIR}"/${PN}-1.0.2.1-include-path.patch
83 if [[ "$PV" != "9999" ]]; then
84 epatch "${FILESDIR}"/${PN}-1.0.10-version.patch
85 export SVN_ALL_FAST_EXPORT_VERSION=${PVR} # for src_compile
86 fi
87
88 qt4-r2_src_prepare
89 }
90
91 src_install() {
92 insinto /usr/share/${PN}/samples
93 doins samples/*.rules || die 'doins failed'
94 dobin svn-all-fast-export || die 'dobin failed'
95 dosym svn-all-fast-export /usr/bin/svn2git || die 'dosym failed'
96 }