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 sci-physics/root: ChangeLog root-5.26.00-r4.ebuild
Date: Fri, 25 Jun 2010 22:13:40
Message-Id: 20100625221338.7DDFE2CF69@corvid.gentoo.org
1 arfrever 10/06/25 22:13:38
2
3 Modified: ChangeLog root-5.26.00-r4.ebuild
4 Log:
5 Fix usage of python_set_active_version() and python_mod_optimize(), use python_mod_cleanup() instead of python_mod_optimize() in pkg_postrm() (bug #316247).
6 (Portage version: HEAD/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.71 sci-physics/root/ChangeLog
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/root/ChangeLog?rev=1.71&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/root/ChangeLog?rev=1.71&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/root/ChangeLog?r1=1.70&r2=1.71
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-physics/root/ChangeLog,v
18 retrieving revision 1.70
19 retrieving revision 1.71
20 diff -u -r1.70 -r1.71
21 --- ChangeLog 25 Jun 2010 20:38:40 -0000 1.70
22 +++ ChangeLog 25 Jun 2010 22:13:38 -0000 1.71
23 @@ -1,6 +1,12 @@
24 # ChangeLog for sci-physics/root
25 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/ChangeLog,v 1.70 2010/06/25 20:38:40 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/ChangeLog,v 1.71 2010/06/25 22:13:38 arfrever Exp $
28 +
29 + 25 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
30 + root-5.26.00-r4.ebuild:
31 + Fix usage of python_set_active_version() and python_mod_optimize(), use
32 + python_mod_cleanup() instead of python_mod_optimize() in pkg_postrm() (bug
33 + #316247).
34
35 25 Jun 2010; Sébastien Fabbro <bicatali@g.o>
36 -root-5.22.00-r3.ebuild, -root-5.24.00-r1.ebuild, -root-5.26.00-r3.ebuild,
37
38
39
40 1.3 sci-physics/root/root-5.26.00-r4.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/root/root-5.26.00-r4.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/root/root-5.26.00-r4.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-physics/root/root-5.26.00-r4.ebuild?r1=1.2&r2=1.3
45
46 Index: root-5.26.00-r4.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.26.00-r4.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- root-5.26.00-r4.ebuild 25 Jun 2010 20:38:40 -0000 1.2
53 +++ root-5.26.00-r4.ebuild 25 Jun 2010 22:13:38 -0000 1.3
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2010 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.26.00-r4.ebuild,v 1.2 2010/06/25 20:38:40 bicatali Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/root/root-5.26.00-r4.ebuild,v 1.3 2010/06/25 22:13:38 arfrever Exp $
59
60 EAPI=3
61
62 @@ -100,7 +100,7 @@
63 export USE_OPENMP=1
64 use math && export USE_PARALLEL_MINUIT2=1
65 fi
66 - python_set_active_version 2
67 + use python && python_set_active_version 2
68 }
69
70 src_prepare() {
71 @@ -298,10 +298,10 @@
72 pkg_postinst() {
73 use ruby && elog "ROOT Ruby module is available as libRubyROOT"
74 fdo-mime_desktop_database_update
75 - use python && python_mod_optimize "${EPREFIX}"/usr/$(get_libdir)/root
76 + use python && python_mod_optimize /usr/$(get_libdir)/root
77 }
78
79 pkg_postrm() {
80 fdo-mime_desktop_database_update
81 - use python && python_mod_optimize "${EPREFIX}"/usr/$(get_libdir)/root
82 + use python && python_mod_cleanup /usr/$(get_libdir)/root
83 }