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