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/
Date: Wed, 29 Dec 2021 14:13:39
Message-Id: 1640787210.b409422dc1582f46797c5777a137c71256453652.andrewammerlaan@gentoo
1 commit: b409422dc1582f46797c5777a137c71256453652
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 29 13:58:56 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 29 14:13:30 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b409422d
7
8 sci-libs/scikit-learn: add version 1.0.2
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
12
13 sci-libs/scikit-learn/Manifest | 1 +
14 sci-libs/scikit-learn/scikit-learn-1.0.2.ebuild | 53 +++++++++++++++++++++++++
15 2 files changed, 54 insertions(+)
16
17 diff --git a/sci-libs/scikit-learn/Manifest b/sci-libs/scikit-learn/Manifest
18 index f406527664be..0b302e797dd9 100644
19 --- a/sci-libs/scikit-learn/Manifest
20 +++ b/sci-libs/scikit-learn/Manifest
21 @@ -1 +1,2 @@
22 DIST scikit-learn-0.24.2.tar.gz 7589697 BLAKE2B a5a32db690e76d6ecfcb12d57a7f84ebcc7e67ecb73258c1d923f9b98a9d87c46aac96918ef7c3d8741f5dbeb46f169c73a7744fb7b92e6ab5cf42101a6bc2f1 SHA512 2159baf63414b9594918b40e1b72af2ab47349335ad4e3afd9756921f786737ed41d6deb333881e8c5c6e1f7ce9cfa10691b966dc2476c48c051621f9049d2ee
23 +DIST scikit-learn-1.0.2.tar.gz 6783296 BLAKE2B c5894b83c616117ac69e99d3eafe6b7218e085bfae099b41d09ecafc5cf116d4ef6849e69de2c1d833be1eb1e2479c1d200147ec1fcf73798c4e341dcaaa4d79 SHA512 1921a722ce887e04db94586a8100f435ca26038c32f1841ed8c7d5f17b5c7a3dbf5e036f5b0fca0f9907c32f80db5b082cb04141d14d22719ad78f3cfef51415
24
25 diff --git a/sci-libs/scikit-learn/scikit-learn-1.0.2.ebuild b/sci-libs/scikit-learn/scikit-learn-1.0.2.ebuild
26 new file mode 100644
27 index 000000000000..8825ce648cf0
28 --- /dev/null
29 +++ b/sci-libs/scikit-learn/scikit-learn-1.0.2.ebuild
30 @@ -0,0 +1,53 @@
31 +# Copyright 2020-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +DISTUTILS_IN_SOURCE_BUILD=1
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Machine learning library for Python"
41 +HOMEPAGE="https://scikit-learn.org/stable/"
42 +SRC_URI="https://github.com/scikit-learn/scikit-learn/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
47 +IUSE="examples"
48 +
49 +# This is being very difficult
50 +RESTRICT="test"
51 +
52 +DEPEND="
53 + virtual/blas:=
54 + virtual/cblas:=
55 +"
56 +RDEPEND="
57 + ${DEPEND}
58 + dev-python/wheel[${PYTHON_USEDEP}]
59 + dev-python/cython[${PYTHON_USEDEP}]
60 + dev-python/joblib[${PYTHON_USEDEP}]
61 + dev-python/numpy[${PYTHON_USEDEP}]
62 + dev-python/scipy[${PYTHON_USEDEP}]
63 + dev-python/threadpoolctl[${PYTHON_USEDEP}]
64 +"
65 +
66 +distutils_enable_tests --install pytest
67 +# For some reason this wants to use urllib to fetch things from the internet
68 +# distutils_enable_sphinx doc \
69 +# dev-python/matplotlib \
70 +# dev-python/memory_profiler \
71 +# dev-python/numpydoc \
72 +# dev-python/pandas \
73 +# dev-python/pillow \
74 +# dev-python/seaborn \
75 +# dev-python/sphinx-gallery \
76 +# dev-python/sphinx-prompt \
77 +# sci-libs/scikit-image
78 +
79 +python_install_all() {
80 + find "${S}" -name \*LICENSE.txt -delete || die
81 + distutils-r1_python_install_all
82 + use examples && dodoc -r examples
83 +}