Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/gquilt: ChangeLog gquilt-0.21.ebuild
Date: Sat, 25 Apr 2009 20:57:19
Message-Id: E1Lxow1-0004rG-1t@stork.gentoo.org
1 patrick 09/04/25 20:57:17
2
3 Modified: ChangeLog
4 Added: gquilt-0.21.ebuild
5 Log:
6 Bump to 0.21, fixes #266427
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.15 dev-util/gquilt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/gquilt/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 18 Feb 2008 00:02:41 -0000 1.14
23 +++ ChangeLog 25 Apr 2009 20:57:16 -0000 1.15
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/gquilt
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/gquilt/ChangeLog,v 1.14 2008/02/18 00:02:41 eva Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gquilt/ChangeLog,v 1.15 2009/04/25 20:57:16 patrick Exp $
30 +
31 +*gquilt-0.21 (25 Apr 2009)
32 +
33 + 25 Apr 2009; Patrick Lauer <patrick@g.o> +gquilt-0.21.ebuild:
34 + Bump to 0.21, fixes #266427
35
36 17 Feb 2008; Gilles Dartiguelongue <eva@g.o> gquilt-0.20.ebuild:
37 fix python eclass use, bug #207667
38
39
40
41 1.1 dev-util/gquilt/gquilt-0.21.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/gquilt-0.21.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/gquilt-0.21.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gquilt-0.21.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/gquilt/gquilt-0.21.ebuild,v 1.1 2009/04/25 20:57:16 patrick Exp $
51
52 inherit python
53
54 DESCRIPTION="A Python/GTK wrapper for quilt"
55 HOMEPAGE="http://users.bigpond.net.au/Peter-Williams/"
56 SRC_URI="mirror://sourceforge/gquilt/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE=""
62
63 RDEPEND="dev-util/quilt
64 >=dev-python/pygtk-2"
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69
70 sed -i "s/MODULES_BIN=.*/MODULES_BIN=/;
71 s/MODULES_OPT=.*/MODULES_OPT=/" Makefile
72 sed -i -e '/install -m 0644 $(MODULES_OPT)/s/\t/&#/g' Makefile
73 sed -i -e '/install -m 0644 $(MODULES_BIN)/s/\t/&#/g' Makefile
74 }
75
76 src_install() {
77 emake DESTDIR="${D}" PREFIX="/usr" install || die "make install failed"
78 dodoc ChangeLog
79 }
80
81 pkg_postinst() {
82 python_version
83 python_mod_optimize /usr/share/gquilt
84 }
85
86 pkg_prerm() {
87 python_version
88 python_mod_cleanup /usr/share/gquilt
89 }