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/aesara/
Date: Fri, 26 Nov 2021 10:46:54
Message-Id: 1637923579.1d7c7e65f3504498ecb5a1eada7d8439f8908985.mgorny@gentoo
1 commit: 1d7c7e65f3504498ecb5a1eada7d8439f8908985
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 26 06:55:55 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 26 10:46:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d7c7e65
7
8 dev-python/aesara: Bump to 2.3.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/aesara/Manifest | 1 +
13 dev-python/aesara/aesara-2.3.0.ebuild | 70 +++++++++++++++++++++++++++++++++++
14 2 files changed, 71 insertions(+)
15
16 diff --git a/dev-python/aesara/Manifest b/dev-python/aesara/Manifest
17 index 105e5bf3d8bc..0e6b04bca791 100644
18 --- a/dev-python/aesara/Manifest
19 +++ b/dev-python/aesara/Manifest
20 @@ -1 +1,2 @@
21 DIST aesara-rel-2.2.6.tar.gz 8180674 BLAKE2B 6d2c237a748aeee524e4182c47b17a9f7e7325d94410f8c9d7e3dea1d22306dbaa32be1b6f3c471baffad30527451772c08eaaed4494bcceba1759e9f7e9c837 SHA512 360f280fb997b33fbcef08a278816e51b26e8ba4f6d9b0681984394f293d342b498d4633d5efc1b92d64b056b4cd63b918ea7dd46d00aa78519e00919586f842
22 +DIST aesara-rel-2.3.0.tar.gz 8181754 BLAKE2B 7fd60e6ce1243e585a4256f807615a4d120833ed3da2f1b16dbcade99950cc470c0b9df2b3a0e481b1694b9fa17b8de5ce30eeeb53e19b0a3244cc44c199e152 SHA512 1198e6a827210e17febc073d60d84e6e2fb044767a573c1569bacbc2bc3181e5d0820349ca90eafdfd83818b97cda9d3d91c42734c6fb9f8452ce5d24d130543
23
24 diff --git a/dev-python/aesara/aesara-2.3.0.ebuild b/dev-python/aesara/aesara-2.3.0.ebuild
25 new file mode 100644
26 index 000000000000..808493f3123a
27 --- /dev/null
28 +++ b/dev-python/aesara/aesara-2.3.0.ebuild
29 @@ -0,0 +1,70 @@
30 +# Copyright 2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1 multiprocessing optfeature
37 +
38 +MY_P=aesara-rel-${PV}
39 +DESCRIPTION="Library for operating on mathematical expressions with multi-dimensional arrays"
40 +HOMEPAGE="https://github.com/aesara-devs/aesara"
41 +SRC_URI="https://github.com/aesara-devs/aesara/archive/rel-${PV}.tar.gz -> ${MY_P}.tar.gz"
42 +S="${WORKDIR}/${MY_P}"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
47 +
48 +RDEPEND="
49 + dev-python/filelock[${PYTHON_USEDEP}]
50 + >=dev-python/numpy-1.17.0[${PYTHON_USEDEP}]
51 + dev-python/six[${PYTHON_USEDEP}]
52 + dev-python/scipy[${PYTHON_USEDEP}]"
53 +BDEPEND="
54 + test? (
55 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
56 + )"
57 +
58 +distutils_enable_sphinx doc 'dev-python/sphinx_rtd_theme'
59 +distutils_enable_tests pytest
60 +
61 +python_prepare_all() {
62 + sed -i -e "s/tests.\*/tests\*/" setup.py || die
63 +
64 + distutils-r1_python_prepare_all
65 +}
66 +
67 +python_test() {
68 + local exclude=(
69 + # speed tests are unreliable
70 + tests/scan/test_basic.py::test_speed
71 + tests/scan/test_basic.py::test_speed_rnn
72 + tests/scan/test_basic.py::test_speed_batchrnn
73 + tests/link/test_vm.py::test_speed
74 + tests/link/test_vm.py::test_speed_lazy
75 + tests/tensor/test_gc.py::test_merge_opt_runtime
76 +
77 + # rounding problem?
78 + # https://github.com/aesara-devs/aesara/issues/477
79 + tests/tensor/test_math_scipy.py::TestGammaUBroadcast::test_good
80 + tests/tensor/test_math_scipy.py::TestGammaUInplaceBroadcast::test_good
81 + )
82 +
83 + distutils_install_for_testing
84 + # we do not package numba
85 + epytest ${exclude[@]/#/--deselect } \
86 + --ignore tests/link/test_numba.py \
87 + -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
88 +}
89 +
90 +# https://dev.gentoo.org/~mgorny/python-guide/concept.html#packaging-pkgutil-style-namespaces-in-gentoo
91 +python_install() {
92 + rm "${BUILD_DIR}"/lib/bin/__init__.py || die
93 + distutils-r1_python_install
94 +}
95 +
96 +pkg_postinst() {
97 + optfeature "GPU code generation/execution on NVIDIA gpus" dev-util/nvidia-cuda-toolkit dev-util/nvidia-cuda-sdk
98 + optfeature "GPU/CPU code generation on CUDA and OpenCL devices" dev-libs/libgpuarray dev-python/pycuda
99 +}