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