Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/scipy: metadata.xml scipy-0.6.0-r4.ebuild ChangeLog
Date: Fri, 26 Sep 2008 20:10:03
Message-Id: E1KjJdY-0005QW-13@stork.gentoo.org
1 bicatali 08/09/26 20:10:00
2
3 Modified: metadata.xml scipy-0.6.0-r4.ebuild ChangeLog
4 Log:
5 Changed blas/atlas configuration to match newer numpy (should be still compatible with numpy-1.0.4 too. Disabled magic fortran flags detection
6 (Portage version: 2.2_rc9/cvs/Linux 2.6.25-gentoo-r7 x86_64)
7
8 Revision Changes Path
9 1.4 sci-libs/scipy/metadata.xml
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/metadata.xml?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/metadata.xml?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/metadata.xml?r1=1.3&r2=1.4
14
15 Index: metadata.xml
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/scipy/metadata.xml,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- metadata.xml 17 Aug 2008 02:28:56 -0000 1.3
22 +++ metadata.xml 26 Sep 2008 20:09:59 -0000 1.4
23 @@ -1,17 +1,17 @@
24 <?xml version="1.0" encoding="UTF-8"?>
25 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
26 <pkgmetadata>
27 - <herd>sci</herd>
28 - <longdescription lang="en">
29 -SciPy is an open source library of scientific tools for Python. SciPy
30 -supplements the popular numpy module, gathering a variety of high level
31 -science and engineering modules together as a single package.
32 -SciPy includes modules for graphics and plotting, optimization, integration,
33 -special functions, signal and image processing, genetic algorithms, ODE
34 -solvers, and others.
35 +<herd>sci</herd>
36 +<longdescription lang="en">
37 + SciPy is an open source library of scientific tools for Python. SciPy
38 + supplements the popular numpy module, gathering a variety of high level
39 + science and engineering modules together as a single package.
40 + SciPy includes modules for graphics and plotting, optimization, integration,
41 + special functions, signal and image processing, genetic algorithms, ODE
42 + solvers, and others.
43 </longdescription>
44 - <use>
45 - <flag name="sandbox">Installs experimental scipy sandbox modules (pull some dependencies)</flag>
46 - <flag name="umfpack">Add support for sparse solving via UMFPACK</flag>
47 - </use>
48 +<use>
49 + <flag name="sandbox">Adds experimental scipy sandbox modules</flag>
50 + <flag name="umfpack">Adds support for sparse solving with <pkg>sci-libs/umfpack</pkg></flag>
51 +</use>
52 </pkgmetadata>
53
54
55
56 1.6 sci-libs/scipy/scipy-0.6.0-r4.ebuild
57
58 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/scipy-0.6.0-r4.ebuild?rev=1.6&view=markup
59 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/scipy-0.6.0-r4.ebuild?rev=1.6&content-type=text/plain
60 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/scipy-0.6.0-r4.ebuild?r1=1.5&r2=1.6
61
62 Index: scipy-0.6.0-r4.ebuild
63 ===================================================================
64 RCS file: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.6.0-r4.ebuild,v
65 retrieving revision 1.5
66 retrieving revision 1.6
67 diff -u -r1.5 -r1.6
68 --- scipy-0.6.0-r4.ebuild 3 Jul 2008 12:13:23 -0000 1.5
69 +++ scipy-0.6.0-r4.ebuild 26 Sep 2008 20:09:59 -0000 1.6
70 @@ -1,6 +1,6 @@
71 # Copyright 1999-2008 Gentoo Foundation
72 # Distributed under the terms of the GNU General Public License v2
73 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.6.0-r4.ebuild,v 1.5 2008/07/03 12:13:23 gentoofan23 Exp $
74 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.6.0-r4.ebuild,v 1.6 2008/09/26 20:09:59 bicatali Exp $
75
76 EAPI=1
77 NEED_PYTHON=2.3
78 @@ -59,7 +59,7 @@
79
80 # when fortran flags are set, pic is removed.
81 use amd64 && [[ -n ${FFLAGS} ]] && FFLAGS="${FFLAGS} -fPIC"
82 - export SCIPY_FCONFIG="config_fc --fcompiler=${fc}"
83 + export SCIPY_FCONFIG="config_fc --fcompiler=${fc} --noopt --noarch"
84 }
85
86 pkg_setup() {
87 @@ -89,14 +89,17 @@
88 [DEFAULT]
89 library_dirs = /usr/$(get_libdir)
90 include_dirs = /usr/include
91 - [atlas]
92 - include_dirs = $(pkg-config --cflags-only-I lapack \
93 + [blas_opt]
94 + include_dirs = $(pkg-config --cflags-only-I cblas \
95 | sed -e 's/^-I//' -e 's/ -I/:/g')
96 - library_dirs = $(pkg-config --libs-only-L lapack \
97 + library_dirs = $(pkg-config --libs-only-L cblas \
98 | sed -e 's/^-L//' -e 's/ -L/:/g')
99 - atlas_libs = $(pkg-config --libs-only-l blas \
100 + libraries = $(pkg-config --libs-only-l cblas \
101 | sed -e 's/^-l//' -e 's/ -l/, /g' -e 's/,.pthread//g')
102 - lapack_libs = $(pkg-config --libs-only-l lapack \
103 + [lapack_opt]
104 + library_dirs = $(pkg-config --libs-only-L lapack \
105 + | sed -e 's/^-L//' -e 's/ -L/:/g')
106 + libraries = $(pkg-config --libs-only-l lapack \
107 | sed -e 's/^-l//' -e 's/ -l/, /g' -e 's/,.pthread//g')
108 EOF
109 if use sandbox; then
110
111
112
113 1.33 sci-libs/scipy/ChangeLog
114
115 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/ChangeLog?rev=1.33&view=markup
116 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/ChangeLog?rev=1.33&content-type=text/plain
117 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/scipy/ChangeLog?r1=1.32&r2=1.33
118
119 Index: ChangeLog
120 ===================================================================
121 RCS file: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v
122 retrieving revision 1.32
123 retrieving revision 1.33
124 diff -u -r1.32 -r1.33
125 --- ChangeLog 3 Jul 2008 12:13:23 -0000 1.32
126 +++ ChangeLog 26 Sep 2008 20:09:59 -0000 1.33
127 @@ -1,6 +1,11 @@
128 # ChangeLog for sci-libs/scipy
129 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
130 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.32 2008/07/03 12:13:23 gentoofan23 Exp $
131 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/ChangeLog,v 1.33 2008/09/26 20:09:59 bicatali Exp $
132 +
133 + 26 Sep 2008; Sébastien Fabbro <bicatali@g.o> metadata.xml,
134 + scipy-0.6.0-r4.ebuild:
135 + Changed blas/atlas configuration to match newer numpy (should be still
136 + compatible with numpy-1.0.4 too. Disabled magic fortran flags detection
137
138 03 Jul 2008; Thomas Anderson <gentoofan23@g.o>
139 +files/scipy-0.6.0-implicit.patch, scipy-0.6.0-r4.ebuild: