Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/qgit: ChangeLog qgit-2.1.ebuild qgit-1.5.8.ebuild
Date: Mon, 31 Dec 2007 16:48:43
Message-Id: E1J9NoX-0006ul-C4@stork.gentoo.org
1 jokey 07/12/31 16:48:33
2
3 Modified: ChangeLog
4 Added: qgit-2.1.ebuild qgit-1.5.8.ebuild
5 Log:
6 Version bump to 2.1 and 1.5.8
7 (Portage version: 2.1.4_rc12)
8
9 Revision Changes Path
10 1.37 dev-util/qgit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/qgit/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 9 Oct 2007 09:46:34 -0000 1.36
23 +++ ChangeLog 31 Dec 2007 16:48:32 -0000 1.37
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-util/qgit
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/ChangeLog,v 1.36 2007/10/09 09:46:34 jokey Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/ChangeLog,v 1.37 2007/12/31 16:48:32 jokey Exp $
29 +
30 +*qgit-2.1 (31 Dec 2007)
31 +*qgit-1.5.8 (31 Dec 2007)
32 +
33 + 31 Dec 2007; Markus Ullmann <jokey@g.o> +qgit-1.5.8.ebuild,
34 + +qgit-2.1.ebuild:
35 + Version bump to 2.1 and 1.5.8
36
37 *qgit-2.0-r1 (09 Oct 2007)
38
39
40
41
42 1.1 dev-util/qgit/qgit-2.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/qgit-2.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/qgit-2.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qgit-2.1.ebuild
48 ===================================================================
49 # Copyright 1999-2007 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/qgit-2.1.ebuild,v 1.1 2007/12/31 16:48:32 jokey Exp $
52
53 inherit qt4
54
55 MY_PV=${PV//_/}
56 MY_P=${PN}-${MY_PV}
57
58 DESCRIPTION="GUI interface for git/cogito SCM"
59 HOMEPAGE="http://digilander.libero.it/mcostalba/"
60 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="2"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65 IUSE=""
66
67 DEPEND="$(qt4_min_version 4.3)"
68 RDEPEND="${DEPEND}
69 >=dev-util/git-1.5.3"
70
71 S="${WORKDIR}/${PN}"
72
73 src_compile() {
74 eqmake4 || die "eqmake failed"
75 emake || die "emake failed"
76 }
77
78 src_install() {
79 newbin bin/qgit qgit4
80 dodoc README
81 }
82
83 pkg_postinst() {
84 elog "This is installed as qgit4 now so you can still use 1.5 series (Qt3-based)"
85 }
86
87
88
89 1.1 dev-util/qgit/qgit-1.5.8.ebuild
90
91 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/qgit-1.5.8.ebuild?rev=1.1&view=markup
92 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/qgit/qgit-1.5.8.ebuild?rev=1.1&content-type=text/plain
93
94 Index: qgit-1.5.8.ebuild
95 ===================================================================
96 # Copyright 1999-2007 Gentoo Foundation
97 # Distributed under the terms of the GNU General Public License v2
98 # $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/qgit-1.5.8.ebuild,v 1.1 2007/12/31 16:48:32 jokey Exp $
99
100 inherit qt3
101
102 MY_PV=${PV//_/}
103 MY_P=${PN}-${MY_PV}
104
105 DESCRIPTION="GUI interface for git/cogito SCM"
106 HOMEPAGE="http://digilander.libero.it/mcostalba/"
107 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
108
109 LICENSE="GPL-2"
110 SLOT="0"
111 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
112 IUSE=""
113
114 DEPEND="=x11-libs/qt-3*"
115 RDEPEND="${DEPEND}
116 >=dev-util/git-1.5"
117
118 S="${WORKDIR}/${MY_P}"
119
120 src_install() {
121 dobin src/qgit
122 dodoc README ChangeLog
123 }
124
125
126
127 --
128 gentoo-commits@g.o mailing list