Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/scikit-learn/, sci-libs/scikit-learn/files/
Date: Sat, 29 May 2021 17:41:58
Message-Id: 1622310106.2bd98fe68a3d861306eebab53a83a53de754153e.andrewammerlaan@gentoo
1 commit: 2bd98fe68a3d861306eebab53a83a53de754153e
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Wed Dec 23 20:11:48 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Sat May 29 17:41:46 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bd98fe6
7
8 sci-libs/scikit-learn: version bump to 0.24.1
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12 Closes: https://github.com/gentoo/gentoo/pull/18790
13 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
14
15 sci-libs/scikit-learn/Manifest | 1 +
16 .../files/scikit-learn-0.24.1-no-O3.patch | 55 ++++++++++++++++++++
17 sci-libs/scikit-learn/scikit-learn-0.24.1.ebuild | 58 ++++++++++++++++++++++
18 3 files changed, 114 insertions(+)
19
20 diff --git a/sci-libs/scikit-learn/Manifest b/sci-libs/scikit-learn/Manifest
21 index 0a578c3504c..3569f86587e 100644
22 --- a/sci-libs/scikit-learn/Manifest
23 +++ b/sci-libs/scikit-learn/Manifest
24 @@ -1,2 +1,3 @@
25 DIST scikit-learn-0.22.2_p1.tar.gz 7034850 BLAKE2B 41c362ef6594e837a9fc798837e666fbb51e33954fdf700292650204fd9d1ab4fc4d1695890d02a24ad68f4dcc2d3cde8f0827eca70c6fb9a6f0e5c0d9c04fd5 SHA512 20bcda5c65f76bce9b71c5b5fb1b499f7f3a7a3f6fa5fade80a38dc658cb434e16e9d5a4906a9657157a5cc90a6d51080575d6e510207baa9f8b06c4fa761d5b
26 DIST scikit-learn-0.23.2.tar.gz 7190564 BLAKE2B db90e3d05d9b563c6cd98a6820c27b541e757e3fb6c25262b720842811b9e26d41a4a9c1d73e675714573d84dab799a0c450e768f4a41a39a6a61f6930c4c79a SHA512 e9797185b1b9def3ee5525e9b72742784aeb78fe8b069bb5aeab1d0f4513cf738c4489ed894274606dea9d6a32ccd3df26170ce1951e443dc77f9287c372e8c5
27 +DIST scikit-learn-0.24.1.tar.gz 7472636 BLAKE2B 46db531866f5bd7ddf383b5de076d8cc8375fe17220d9849551e978727cabfdc10e42ae7ca6df08b7af013dac4b72e85291b50e60485d368ed6480fb844e2f40 SHA512 53b750c6c7b3bf86527acb0559ea6cd7cad86bdf86b4ab78b76f5559901152e40e0e92f4f481c5d86a3162ea109a2aea35faf11df7fb3c975cf8e26c195cad92
28
29 diff --git a/sci-libs/scikit-learn/files/scikit-learn-0.24.1-no-O3.patch b/sci-libs/scikit-learn/files/scikit-learn-0.24.1-no-O3.patch
30 new file mode 100644
31 index 00000000000..58caf95a9cf
32 --- /dev/null
33 +++ b/sci-libs/scikit-learn/files/scikit-learn-0.24.1-no-O3.patch
34 @@ -0,0 +1,55 @@
35 +diff --git a/sklearn/manifold/setup.py b/sklearn/manifold/setup.py
36 +index 0db2d5d..fb4fc38 100644
37 +--- a/sklearn/manifold/setup.py
38 ++++ b/sklearn/manifold/setup.py
39 +@@ -15,14 +15,14 @@ def configuration(parent_package="", top_path=None):
40 + config.add_extension("_utils",
41 + sources=["_utils.pyx"],
42 + include_dirs=[numpy.get_include()],
43 +- libraries=libraries,
44 +- extra_compile_args=["-O3"])
45 ++ libraries=libraries)
46 ++
47 +
48 + config.add_extension("_barnes_hut_tsne",
49 + sources=["_barnes_hut_tsne.pyx"],
50 + include_dirs=[numpy.get_include()],
51 +- libraries=libraries,
52 +- extra_compile_args=['-O3'])
53 ++ libraries=libraries)
54 ++
55 +
56 + config.add_subpackage('tests')
57 +
58 +diff --git a/sklearn/tree/setup.py b/sklearn/tree/setup.py
59 +index 079ae9d..b38ee4b 100644
60 +--- a/sklearn/tree/setup.py
61 ++++ b/sklearn/tree/setup.py
62 +@@ -12,23 +12,19 @@ def configuration(parent_package="", top_path=None):
63 + config.add_extension("_tree",
64 + sources=["_tree.pyx"],
65 + include_dirs=[numpy.get_include()],
66 +- libraries=libraries,
67 +- extra_compile_args=["-O3"])
68 ++ libraries=libraries)
69 + config.add_extension("_splitter",
70 + sources=["_splitter.pyx"],
71 + include_dirs=[numpy.get_include()],
72 +- libraries=libraries,
73 +- extra_compile_args=["-O3"])
74 ++ libraries=libraries)
75 + config.add_extension("_criterion",
76 + sources=["_criterion.pyx"],
77 + include_dirs=[numpy.get_include()],
78 +- libraries=libraries,
79 +- extra_compile_args=["-O3"])
80 ++ libraries=libraries)
81 + config.add_extension("_utils",
82 + sources=["_utils.pyx"],
83 + include_dirs=[numpy.get_include()],
84 +- libraries=libraries,
85 +- extra_compile_args=["-O3"])
86 ++ libraries=libraries)
87 +
88 + config.add_subpackage("tests")
89 +
90
91 diff --git a/sci-libs/scikit-learn/scikit-learn-0.24.1.ebuild b/sci-libs/scikit-learn/scikit-learn-0.24.1.ebuild
92 new file mode 100644
93 index 00000000000..947f22c56d0
94 --- /dev/null
95 +++ b/sci-libs/scikit-learn/scikit-learn-0.24.1.ebuild
96 @@ -0,0 +1,58 @@
97 +# Copyright 2020 Gentoo Authors
98 +# Distributed under the terms of the GNU General Public License v2
99 +
100 +EAPI=7
101 +
102 +PYTHON_COMPAT=( python3_{6..9} )
103 +DISTUTILS_USE_SETUPTOOLS=no
104 +DISTUTILS_IN_SOURCE_BUILD=1
105 +inherit distutils-r1
106 +
107 +DESCRIPTION="Machine learning library for Python"
108 +HOMEPAGE="https://scikit-learn.org/stable/"
109 +SRC_URI="https://github.com/scikit-learn/scikit-learn/archive/${PV}.tar.gz -> ${P}.tar.gz"
110 +
111 +LICENSE="BSD"
112 +SLOT="0"
113 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
114 +IUSE="examples"
115 +
116 +DEPEND="
117 + virtual/blas:=
118 + virtual/cblas:=
119 +"
120 +RDEPEND="
121 + ${DEPEND}
122 + dev-python/wheel[${PYTHON_USEDEP}]
123 + dev-python/cython[${PYTHON_USEDEP}]
124 + dev-python/joblib[${PYTHON_USEDEP}]
125 + dev-python/numpy[${PYTHON_USEDEP}]
126 + dev-python/scipy[${PYTHON_USEDEP}]
127 + dev-python/threadpoolctl[${PYTHON_USEDEP}]
128 +"
129 +
130 +distutils_enable_tests pytest
131 +
132 +PATCHES=( "${FILESDIR}"/${P}-no-O3.patch )
133 +
134 +python_test() {
135 + distutils_install_for_testing
136 + # manually run tests as they need some weird thingies
137 + # skip tests which need data files that are not installed
138 + local tfile
139 + for tfile in sklearn/tests/test_*.py ; do
140 + if [[ "${tfile}" =~ "test_multiclass.py" ||
141 + "${tfile}" =~ "test_multioutput.py" ||
142 + "${tfile}" =~ "test_pipeline.py" ]]; then
143 + continue
144 + fi
145 + elog "Testing: ${tfile}"
146 + ${EPYTHON} "${tfile}" || die "tests failed for ${tfile} with ${EPYTHON}"
147 + done
148 +}
149 +
150 +python_install_all() {
151 + find "${S}" -name \*LICENSE.txt -delete || die
152 + distutils-r1_python_install_all
153 + use examples && dodoc -r examples
154 +}