Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/relational: ChangeLog relational-0.10.ebuild
Date: Fri, 30 Apr 2010 10:57:20
Message-Id: 20100430105716.DEF8D2C04C@corvid.gentoo.org
1 hwoarang 10/04/30 10:57:16
2
3 Modified: ChangeLog relational-0.10.ebuild
4 Log:
5 Minor fixes to match the latest update on python eclass. Fixes bug #316235
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.4 sci-mathematics/relational/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/relational/ChangeLog?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/relational/ChangeLog?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/relational/ChangeLog?r1=1.3&r2=1.4
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/relational/ChangeLog,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ChangeLog 23 Apr 2010 09:04:36 -0000 1.3
22 +++ ChangeLog 30 Apr 2010 10:57:16 -0000 1.4
23 @@ -1,6 +1,9 @@
24 # ChangeLog for sci-mathematics/relational
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/ChangeLog,v 1.3 2010/04/23 09:04:36 hwoarang Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/ChangeLog,v 1.4 2010/04/30 10:57:16 hwoarang Exp $
28 +
29 + 30 Apr 2010; Markos Chandras <hwoarang@g.o> relational-0.10.ebuild:
30 + Minor fixes to match the latest update on python eclass. Fixes bug #316235
31
32 23 Apr 2010; Markos Chandras <hwoarang@g.o> relational-0.10.ebuild:
33 Refactor ebuild to use python functions correctly. Fixes bug #316235
34
35
36
37 1.4 sci-mathematics/relational/relational-0.10.ebuild
38
39 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild?rev=1.4&view=markup
40 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild?rev=1.4&content-type=text/plain
41 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild?r1=1.3&r2=1.4
42
43 Index: relational-0.10.ebuild
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild,v
46 retrieving revision 1.3
47 retrieving revision 1.4
48 diff -u -r1.3 -r1.4
49 --- relational-0.10.ebuild 23 Apr 2010 09:04:36 -0000 1.3
50 +++ relational-0.10.ebuild 30 Apr 2010 10:57:16 -0000 1.4
51 @@ -1,8 +1,8 @@
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild,v 1.3 2010/04/23 09:04:36 hwoarang Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/relational/relational-0.10.ebuild,v 1.4 2010/04/30 10:57:16 hwoarang Exp $
56
57 -EAPI="2"
58 +EAPI="3"
59 PYTHON_DEPEND="2"
60
61 inherit python distutils eutils
62 @@ -42,11 +42,9 @@
63 }
64
65 pkg_postinst() {
66 - python_version
67 - python_mod_optimize $(python_get_sitedir)/${PN}/
68 - python_mod_optimize $(python_get_sitedir)/${PN}_gui/
69 + python_mod_optimize ${PN} ${PN}_gui
70 }
71
72 pkg_postrm() {
73 - python_mod_cleanup
74 + python_mod_cleanup ${PN} ${PN}_gui
75 }