Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
patrick 09/04/25 20:57:17
Modified: ChangeLog
Added: gquilt-0.21.ebuild
Log:
Bump to 0.21, fixes #266427
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Revision Changes Path
1.15 dev-util/gquilt/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/ChangeLog?r1=1.14&r2=1.15
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/gquilt/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog 18 Feb 2008 00:02:41 -0000 1.14
+++ ChangeLog 25 Apr 2009 20:57:16 -0000 1.15
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/gquilt
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/gquilt/ChangeLog,v 1.14 2008/02/18 00:02:41 eva Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/gquilt/ChangeLog,v 1.15 2009/04/25 20:57:16 patrick Exp $
+
+*gquilt-0.21 (25 Apr 2009)
+
+ 25 Apr 2009; Patrick Lauer <patrick@g.o> +gquilt-0.21.ebuild:
+ Bump to 0.21, fixes #266427
17 Feb 2008; Gilles Dartiguelongue <eva@g.o> gquilt-0.20.ebuild:
fix python eclass use, bug #207667
1.1 dev-util/gquilt/gquilt-0.21.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/gquilt-0.21.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/gquilt/gquilt-0.21.ebuild?rev=1.1&content-type=text/plain
Index: gquilt-0.21.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/gquilt/gquilt-0.21.ebuild,v 1.1 2009/04/25 20:57:16 patrick Exp $
inherit python
DESCRIPTION="A Python/GTK wrapper for quilt"
HOMEPAGE="http://users.bigpond.net.au/Peter-Williams/"
SRC_URI="mirror://sourceforge/gquilt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="dev-util/quilt
>=dev-python/pygtk-2"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i "s/MODULES_BIN=.*/MODULES_BIN=/;
s/MODULES_OPT=.*/MODULES_OPT=/" Makefile
sed -i -e '/install -m 0644 $(MODULES_OPT)/s/\t/&#/g' Makefile
sed -i -e '/install -m 0644 $(MODULES_BIN)/s/\t/&#/g' Makefile
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" install || die "make install failed"
dodoc ChangeLog
}
pkg_postinst() {
python_version
python_mod_optimize /usr/share/gquilt
}
pkg_prerm() {
python_version
python_mod_cleanup /usr/share/gquilt
}
|
|