commit:     2339058f890efd329fd003bc9a2d3e7abdc5c7e6
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  4 06:15:20 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Nov  4 06:15:20 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2339058f

dev-python/aesara: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/aesara/Manifest            |   2 -
 dev-python/aesara/aesara-2.7.9.ebuild |  96 --------------------------------
 dev-python/aesara/aesara-2.8.6.ebuild | 102 ----------------------------------
 3 files changed, 200 deletions(-)

diff --git a/dev-python/aesara/Manifest b/dev-python/aesara/Manifest
index 24d5eb29651f..589ed58dbaa9 100644
--- a/dev-python/aesara/Manifest
+++ b/dev-python/aesara/Manifest
@@ -1,3 +1 @@
-DIST aesara-rel-2.7.9.gh.tar.gz 7919763 BLAKE2B 
f877edcc824f3d790a56422a0fa660e8e3f653fff7e3d87ef4a95fa76369b1bb5df351a571ea039d66d79c0f564512437672df76c3b82e7d660c865cf908dea3
 SHA512 
061f7e39343eb081b28dd20b1eb7ffc226b7e4b96695d5beb9e28eb3f5ec9480c02c7889c932290248baa908dc0047c19e4cef3c220eccc4cc617b2050a9614e
-DIST aesara-rel-2.8.6.gh.tar.gz 7941385 BLAKE2B 
8e01e8afe7a4a33ad133d2759336dea66223c7f001c963d937bcae903f315b4dffbd0e877fbfe2f1b7f31b7f73acd8b7ac38a716337aa129b9a36b0367715f96
 SHA512 
abfa9f63f096eb6d8961eaa700a13f41833ba79d684b83fbcd7bf4a9d8f0ab49eae1bc3d1249817cf03f63526127612482cbc79c03bf2596743caca810f1fc56
 DIST aesara-rel-2.8.7.gh.tar.gz 7944368 BLAKE2B 
6772a8f88d9480044f0da275925577f85d86ef77a1f500f079478a5843ddd4afe2344e00664c5be06a8098587754d3fe7aeb71b8fbc4f12160263b5b98a56de4
 SHA512 
5f0646af9d9525ab81365fb1e8a6e3ff783bf8fe710ea6fafa91101903aef592d3db42cff47b0620132431198c5d7d16cad65d5668dccdd6b42a7ee62aa12ac6

diff --git a/dev-python/aesara/aesara-2.7.9.ebuild 
b/dev-python/aesara/aesara-2.7.9.ebuild
deleted file mode 100644
index 0e57f506625b..000000000000
--- a/dev-python/aesara/aesara-2.7.9.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 multiprocessing optfeature
-
-MY_P=aesara-rel-${PV}
-DESCRIPTION="Library for operating on mathematical expressions with 
multi-dimensional arrays"
-HOMEPAGE="
-       https://github.com/aesara-devs/aesara/
-       https://pypi.org/project/aesara/
-"
-SRC_URI="
-       https://github.com/aesara-devs/aesara/archive/rel-${PV}.tar.gz
-               -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
-
-RDEPEND="
-       dev-python/cons[${PYTHON_USEDEP}]
-       dev-python/etuples[${PYTHON_USEDEP}]
-       dev-python/logical-unification[${PYTHON_USEDEP}]
-       dev-python/minikanren[${PYTHON_USEDEP}]
-       dev-python/filelock[${PYTHON_USEDEP}]
-       <dev-python/numpy-1.23[${PYTHON_USEDEP}]
-       dev-python/six[${PYTHON_USEDEP}]
-       dev-python/scipy[${PYTHON_USEDEP}]
-       >=dev-python/setuptools-45[${PYTHON_USEDEP}]
-       dev-python/typing-extensions[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/pytest-xdist[${PYTHON_USEDEP}]
-       )
-"
-
-PATCHES=(
-       "${FILESDIR}"/aesara-2.6.5-compiledir-tid.patch
-)
-
-distutils_enable_sphinx doc 'dev-python/sphinx_rtd_theme'
-distutils_enable_tests pytest
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # speed tests are unreliable
-               tests/scan/test_basic.py::test_speed
-               tests/scan/test_basic.py::test_speed_rnn
-               tests/scan/test_basic.py::test_speed_batchrnn
-               tests/link/test_vm.py::test_speed
-               tests/link/test_vm.py::test_speed_lazy
-               tests/tensor/test_gc.py::test_merge_opt_runtime
-
-               # rounding problem?
-               # https://github.com/aesara-devs/aesara/issues/477
-               tests/tensor/test_math_scipy.py::TestGammaUBroadcast::test_good
-               
tests/tensor/test_math_scipy.py::TestGammaUInplaceBroadcast::test_good
-
-               # dunno
-               
'tests/tensor/test_elemwise.py::TestDimShuffle::test_memory_leak[False]'
-       )
-       local EPYTEST_IGNORE=(
-               # we do not package numba
-               tests/link/test_numba.py
-               tests/link/test_numba_performance.py
-               # ..or jax
-               tests/link/test_jax.py
-       )
-
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       local -x AESARA_FLAGS="cxx=${CXX}"
-       AESARA_FLAGS+=",config.gcc__cxxflags=\"${CXXFLAGS}\""
-       AESARA_FLAGS+=',compiledir_format="compiledir_%(thread_id)s"'
-
-       epytest -p xdist.plugin -n "$(makeopts_jobs)"
-       # clean up the compiledir, as it can grow pretty large
-       rm -r "${HOME}"/.aesara || die
-}
-
-python_compile() {
-       distutils-r1_python_compile
-       rm "${BUILD_DIR}/install$(python_get_sitedir)/bin/__init__.py" || die
-}
-
-pkg_postinst() {
-       optfeature "GPU code generation/execution on NVIDIA gpus" 
dev-util/nvidia-cuda-toolkit dev-util/nvidia-cuda-sdk
-       optfeature "GPU/CPU code generation on CUDA and OpenCL devices" 
dev-libs/libgpuarray dev-python/pycuda
-}

diff --git a/dev-python/aesara/aesara-2.8.6.ebuild 
b/dev-python/aesara/aesara-2.8.6.ebuild
deleted file mode 100644
index 00f30feaabf6..000000000000
--- a/dev-python/aesara/aesara-2.8.6.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1 multiprocessing optfeature
-
-MY_P=aesara-rel-${PV}
-DESCRIPTION="Library for operating on mathematical expressions with 
multi-dimensional arrays"
-HOMEPAGE="
-       https://github.com/aesara-devs/aesara/
-       https://pypi.org/project/aesara/
-"
-SRC_URI="
-       https://github.com/aesara-devs/aesara/archive/rel-${PV}.tar.gz
-               -> ${MY_P}.gh.tar.gz
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
-
-RDEPEND="
-       dev-python/cons[${PYTHON_USEDEP}]
-       dev-python/etuples[${PYTHON_USEDEP}]
-       dev-python/logical-unification[${PYTHON_USEDEP}]
-       dev-python/minikanren[${PYTHON_USEDEP}]
-       dev-python/filelock[${PYTHON_USEDEP}]
-       <dev-python/numpy-1.23[${PYTHON_USEDEP}]
-       dev-python/scipy[${PYTHON_USEDEP}]
-       >=dev-python/setuptools-48.0.0[${PYTHON_USEDEP}]
-       dev-python/typing-extensions[${PYTHON_USEDEP}]
-"
-BDEPEND="
-       test? (
-               dev-python/pytest-xdist[${PYTHON_USEDEP}]
-       )
-"
-
-PATCHES=(
-       "${FILESDIR}"/aesara-2.6.5-compiledir-tid.patch
-)
-
-distutils_enable_sphinx doc 'dev-python/sphinx_rtd_theme'
-distutils_enable_tests pytest
-
-src_prepare() {
-       # do not claim "bin" package (sic!)
-       rm bin/__init__.py || die
-       sed -e 's/find:/find_namespace:/' \
-               -e '/exclude =/a\    doc*' \
-               -i setup.cfg || die
-       distutils-r1_src_prepare
-}
-
-python_test() {
-       local EPYTEST_DESELECT=(
-               # speed tests are unreliable
-               tests/scan/test_basic.py::test_speed
-               tests/scan/test_basic.py::test_speed_rnn
-               tests/scan/test_basic.py::test_speed_batchrnn
-               tests/link/test_vm.py::test_speed
-               tests/link/test_vm.py::test_speed_lazy
-               tests/tensor/test_gc.py::test_merge_opt_runtime
-
-               # rounding problem?
-               # https://github.com/aesara-devs/aesara/issues/477
-               tests/tensor/test_math_scipy.py::TestGammaUBroadcast::test_good
-               
tests/tensor/test_math_scipy.py::TestGammaUInplaceBroadcast::test_good
-
-               # dunno
-               
'tests/tensor/test_elemwise.py::TestDimShuffle::test_memory_leak[False]'
-
-               # TODO
-               tests/link/c/test_op.py::test_ExternalCOp_c_code_cache_version
-               tests/sparse/sandbox/test_sp.py::TestSP::test_multilayer_conv
-               tests/sparse/sandbox/test_sp.py::TestSP::test_maxpool
-       )
-       local EPYTEST_IGNORE=(
-               # we do not package jax or numba
-               tests/link/jax
-               tests/link/numba
-       )
-
-       local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
-       local -x AESARA_FLAGS="cxx=${CXX}"
-       AESARA_FLAGS+=",config.gcc__cxxflags=\"${CXXFLAGS}\""
-       AESARA_FLAGS+=',compiledir_format="compiledir_%(thread_id)s"'
-
-       epytest -p xdist.plugin -n "$(makeopts_jobs)"
-       # clean up the compiledir, as it can grow pretty large
-       rm -r "${HOME}"/.aesara || die
-}
-
-pkg_postinst() {
-       optfeature "GPU code generation/execution on NVIDIA gpus" 
dev-util/nvidia-cuda-toolkit dev-util/nvidia-cuda-sdk
-       optfeature "GPU/CPU code generation on CUDA and OpenCL devices" 
dev-libs/libgpuarray dev-python/pycuda
-}

Reply via email to