Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/scipy/
Date: Sat, 25 Sep 2021 21:37:43
Message-Id: 1632605857.8d86f5cb1e7f95f1368fc237b0ad54c99423fcbd.mgorny@gentoo
1 commit: 8d86f5cb1e7f95f1368fc237b0ad54c99423fcbd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 25 17:27:16 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 25 21:37:37 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d86f5cb
7
8 dev-python/scipy: Bump to 1.7.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/scipy/Manifest | 1 +
13 dev-python/scipy/scipy-1.7.1.ebuild | 160 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 161 insertions(+)
15
16 diff --git a/dev-python/scipy/Manifest b/dev-python/scipy/Manifest
17 index 510eb8881ac..c8c120cd8eb 100644
18 --- a/dev-python/scipy/Manifest
19 +++ b/dev-python/scipy/Manifest
20 @@ -1,5 +1,6 @@
21 DIST scipy-1.6.2.tar.gz 27187804 BLAKE2B af3578bc029c3af548c04144d7405ac8e6f8e057f870394e124f24aea9989120275407e5a7fdd29fbe1019d2acc295c1ce00872461ecf3a325000e8817cd559f SHA512 18b03f32e8343c5a6c6148ac0bfd4b5f2cc9ff5f74d5d41761ae9e773d6af8774c7b09a3fcc47122864eccce1dbbc17e9325819885d3fc3ab2baf98e7d3befa4
22 DIST scipy-1.6.3.tar.gz 27187987 BLAKE2B 30f7171ca0dc0842f254472f4b52c0b0ad4389964a140cc4b94f9d85437c5a7da238c082be503242d433f1d3c65c3fd4afeb2f7831eea39ce303077406e718df SHA512 10ff25da84ce09ae231e781873902d8040d79868721d75a3f9facee177e7f46f7c9c34374feee6fe2253ddd968716d2993658ce514c4ac0c98d255c06a6ef808
23 +DIST scipy-1.7.1.tar.gz 36102628 BLAKE2B 67a414d863c61bf419fa907b9bed53b57beedc20d71d0630fac9719f02e951ea79b893d0803b385936a7c04a6c2f723d3870f0498f71e3c210ccd6ee75a009dc SHA512 81fea7e4f5fbcd537d662273507b6ac75bd4cf900567da8083ac86fb06d9f96b010d01a1697db53211440f0fdb2d89510313bafd3d383284d0ab9a08311dd102
24 DIST scipy-html-1.6.1.zip 23946591 BLAKE2B d3464c342b1d4f43e17e214c7557737913bf4131f88b9d569cff106c75dc7ebf0d065283792fddc189e2a3ddc322f1b2b4f38c6d313569f28395e79680060b58 SHA512 73561f9daa303c6e967f9b11952c6239dea7ff1a2fa02434354ac78fcffe7a552aa0f1043a17cb5c35a442def499eff199856cca8efa1415449cbf54f0d4913b
25 DIST scipy-html-1.6.2.zip 23947380 BLAKE2B e4616a157c037b0830fc32d23678fb7e8ebe023d1fd9f0f762695a0d93bc56e432e441e675ec3c7a7d6586a665f6127ce49d570f1716876e58afb402761f8e95 SHA512 119a2227a808c752a751bc7bec6463da739c68391ebac8d2451998d90ebe03b2af401adbf987f0b694244e715c0ef1fd86c2f4a36c48dbb1ff7cdf4d914875df
26 DIST scipy-ref-1.6.1.pdf 34594740 BLAKE2B 905ddcd7a3d462b09ded688f0818204d7684fa18058d0dac480d0a000e9ea0b7ebcdd33c01adae17234dcdf630d4aef9078174127af46f1db55d5c14b3245346 SHA512 355f4681439c1720f45dca6badfe72d77edfca0962fd9b42df34f1cd8fff7121fa6e7f60570bb638abd3ba9693930fa46b25af862d8fc1568b508c6fdd785479
27
28 diff --git a/dev-python/scipy/scipy-1.7.1.ebuild b/dev-python/scipy/scipy-1.7.1.ebuild
29 new file mode 100644
30 index 00000000000..d4ada5b7448
31 --- /dev/null
32 +++ b/dev-python/scipy/scipy-1.7.1.ebuild
33 @@ -0,0 +1,160 @@
34 +# Copyright 1999-2021 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{8..10} )
40 +PYTHON_REQ_USE="threads(+)"
41 +
42 +inherit fortran-2 distutils-r1 flag-o-matic toolchain-funcs
43 +
44 +# upstream is slacking forever with doc updates
45 +DOC_PV=1.6.2
46 +DESCRIPTION="Scientific algorithms library for Python"
47 +HOMEPAGE="https://www.scipy.org/"
48 +SRC_URI="
49 + mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz
50 + doc? (
51 + https://docs.scipy.org/doc/${PN}-${DOC_PV}/${PN}-html-${DOC_PV}.zip
52 + https://docs.scipy.org/doc/${PN}-${DOC_PV}/${PN}-ref-${DOC_PV}.pdf
53 + )"
54 +
55 +LICENSE="BSD LGPL-2"
56 +SLOT="0"
57 +KEYWORDS="~amd64 ~x86"
58 +IUSE="doc sparse"
59 +
60 +DEPEND="
61 + >=dev-python/numpy-1.16.5[lapack,${PYTHON_USEDEP}]
62 + sci-libs/arpack:0=
63 + virtual/cblas
64 + virtual/lapack
65 + sparse? ( sci-libs/umfpack:0= )"
66 +RDEPEND="${DEPEND}
67 + dev-python/pillow[${PYTHON_USEDEP}]"
68 +BDEPEND="
69 + dev-lang/swig
70 + >=dev-python/cython-0.29.13[${PYTHON_USEDEP}]
71 + dev-python/pybind11[${PYTHON_USEDEP}]
72 + dev-python/pythran[${PYTHON_USEDEP}]
73 + virtual/pkgconfig
74 + doc? ( app-arch/unzip )
75 + test? (
76 + dev-python/nose[${PYTHON_USEDEP}]
77 + )"
78 +
79 +DISTUTILS_IN_SOURCE_BUILD=1
80 +
81 +distutils_enable_tests pytest
82 +
83 +src_unpack() {
84 + default
85 + if use doc; then
86 + unzip -qo "${DISTDIR}"/${PN}-html-${DOC_PV}.zip -d html || die
87 + fi
88 +}
89 +
90 +pc_incdir() {
91 + $(tc-getPKG_CONFIG) --cflags-only-I $@ | \
92 + sed -e 's/^-I//' -e 's/[ ]*-I/:/g' -e 's/[ ]*$//' -e 's|^:||'
93 +}
94 +
95 +pc_libdir() {
96 + $(tc-getPKG_CONFIG) --libs-only-L $@ | \
97 + sed -e 's/^-L//' -e 's/[ ]*-L/:/g' -e 's/[ ]*$//' -e 's|^:||'
98 +}
99 +
100 +pc_libs() {
101 + $(tc-getPKG_CONFIG) --libs-only-l $@ | \
102 + sed -e 's/[ ]-l*\(pthread\|m\)\([ ]\|$\)//g' \
103 + -e 's/^-l//' -e 's/[ ]*-l/,/g' -e 's/[ ]*$//' \
104 + | tr ',' '\n' | sort -u | tr '\n' ',' | sed -e 's|,$||'
105 +}
106 +
107 +python_prepare_all() {
108 + # scipy automatically detects libraries by default
109 + export {FFTW,FFTW3,UMFPACK}=None
110 + use sparse && unset UMFPACK
111 + # the missing symbols are in -lpythonX.Y, but since the version can
112 + # differ, we just introduce the same scaryness as on Linux/ELF
113 + [[ ${CHOST} == *-darwin* ]] \
114 + && append-ldflags -bundle "-undefined dynamic_lookup" \
115 + || append-ldflags -shared
116 + [[ -z ${FC} ]] && export FC="$(tc-getFC)"
117 + # hack to force F77 to be FC until bug #278772 is fixed
118 + [[ -z ${F77} ]] && export F77="$(tc-getFC)"
119 + export F90="${FC}"
120 + export SCIPY_FCONFIG="config_fc --noopt --noarch"
121 + append-fflags -fPIC
122 +
123 + local libdir="${EPREFIX}"/usr/$(get_libdir)
124 + cat >> site.cfg <<-EOF || die
125 + [blas]
126 + include_dirs = $(pc_incdir cblas)
127 + library_dirs = $(pc_libdir cblas blas):${libdir}
128 + blas_libs = $(pc_libs cblas blas)
129 + [lapack]
130 + library_dirs = $(pc_libdir lapack):${libdir}
131 + lapack_libs = $(pc_libs lapack)
132 + EOF
133 + cat >> setup.cfg <<-EOF || die
134 + [options]
135 + zip_safe = False
136 + EOF
137 +
138 + # TODO
139 + sed -e "s:== 'levy_stable':in ('levy_stable', 'crystalball', 'ncf'):" \
140 + -i scipy/stats/tests/test_continuous_basic.py || die
141 +
142 + if has_version ">=sci-libs/lapack-3.10"; then
143 + sed -e 's:test_sort(:_&:' \
144 + -i scipy/linalg/tests/test_decomp.py || die
145 + sed -e 's:test_solve_discrete_are:_&:' \
146 + -i scipy/linalg/tests/test_solvers.py || die
147 + fi
148 +
149 + distutils-r1_python_prepare_all
150 +}
151 +
152 +python_configure_all() {
153 + # bug 721860
154 + test-flag-FC -fallow-argument-mismatch &&
155 + append-fflags -fallow-argument-mismatch
156 +}
157 +
158 +python_compile() {
159 + # FIXME: parallel python building fails, bug #614464
160 + export MAKEOPTS=-j1
161 +
162 + ${EPYTHON} tools/cythonize.py || die
163 + distutils-r1_python_compile \
164 + ${SCIPY_FCONFIG}
165 +}
166 +
167 +python_test() {
168 + # fails with bdist_egg. should it be fixed in distutils-r1 eclass?
169 + distutils_install_for_testing ${SCIPY_FCONFIG}
170 + cd "${TEST_DIR}/lib" || die "no ${TEST_DIR} available"
171 + PYTHONPATH=. "${EPYTHON}" -c "
172 +import scipy, sys
173 +r = scipy.test('fast', verbose=2)
174 +sys.exit(0 if r else 1)" || die "Tests fail with ${EPYTHON}"
175 +}
176 +
177 +python_install_all() {
178 + use doc && \
179 + local DOCS=( "${DISTDIR}"/${PN}-ref-${DOC_PV}.pdf ) \
180 + local HTML_DOCS=( "${WORKDIR}"/html/. )
181 + distutils-r1_python_install_all
182 +}
183 +
184 +python_install() {
185 + distutils-r1_python_install ${SCIPY_FCONFIG}
186 + python_optimize
187 +}
188 +
189 +pkg_postinst() {
190 + elog "You might want to set the variable SCIPY_PIL_IMAGE_VIEWER"
191 + elog "to your prefered image viewer. Example:"
192 + elog " echo \"export SCIPY_PIL_IMAGE_VIEWER=display\" >> ~/.bashrc"
193 +}