Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pyqwt: pyqwt-5.2.0.ebuild
Date: Wed, 02 Jun 2010 15:47:55
Message-Id: 20100602154732.AE2EB2CE14@corvid.gentoo.org
1 arfrever 10/06/02 15:47:32
2
3 Modified: pyqwt-5.2.0.ebuild
4 Log:
5 Call python_mod_optimize() and python_mod_cleanup().
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.6 dev-python/pyqwt/pyqwt-5.2.0.ebuild
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0.ebuild?rev=1.6&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0.ebuild?rev=1.6&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0.ebuild?r1=1.5&r2=1.6
14
15 Index: pyqwt-5.2.0.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0.ebuild,v
18 retrieving revision 1.5
19 retrieving revision 1.6
20 diff -u -r1.5 -r1.6
21 --- pyqwt-5.2.0.ebuild 28 Feb 2010 12:33:09 -0000 1.5
22 +++ pyqwt-5.2.0.ebuild 2 Jun 2010 15:47:32 -0000 1.6
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0.ebuild,v 1.5 2010/02/28 12:33:09 arfrever Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pyqwt/pyqwt-5.2.0.ebuild,v 1.6 2010/06/02 15:47:32 arfrever Exp $
28
29 EAPI="2"
30 PYTHON_DEPEND="2"
31 @@ -62,3 +62,11 @@
32 doins qt4examples/* || die
33 fi
34 }
35 +
36 +pkg_postinst() {
37 + python_mod_optimize PyQt4
38 +}
39 +
40 +pkg_postrm() {
41 + python_mod_cleanup PyQt4
42 +}