diff options
| author | Michał Górny <mgorny@gentoo.org> | 2026-03-08 18:46:35 +0100 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2026-03-08 18:46:35 +0100 |
| commit | 51ca7719e129eaf93b3a298dc977fa2f0cdd023a (patch) | |
| tree | bc079fe79c56a111948a2918a3a64287e218d0eb /dev-python | |
| parent | 025d38d4d7773e7982b5b51c3dbbcbdffb8849d9 (diff) | |
| download | gentoo-51ca7719e129eaf93b3a298dc977fa2f0cdd023a.tar.gz gentoo-51ca7719e129eaf93b3a298dc977fa2f0cdd023a.tar.bz2 gentoo-51ca7719e129eaf93b3a298dc977fa2f0cdd023a.zip | |
dev-python/pythran: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
| -rw-r--r-- | dev-python/pythran/Manifest | 2 | ||||
| -rw-r--r-- | dev-python/pythran/pythran-0.17.0-r2.ebuild | 125 | ||||
| -rw-r--r-- | dev-python/pythran/pythran-0.18.0-r1.ebuild | 114 | ||||
| -rw-r--r-- | dev-python/pythran/pythran-0.18.0.ebuild | 125 |
4 files changed, 0 insertions, 366 deletions
diff --git a/dev-python/pythran/Manifest b/dev-python/pythran/Manifest index 3d1629f0e818..5bb61d50f89a 100644 --- a/dev-python/pythran/Manifest +++ b/dev-python/pythran/Manifest @@ -1,3 +1 @@ -DIST pythran-0.17.0.gh.tar.gz 3697173 BLAKE2B 90f765283e4346392eb69d8e6fadf4b00469779bd7fb8dc99084ed0d2d940a1ca949c9dd0eb0fc484c2938de79b1e3650c417dc1cd30786b25b6781c519a629d SHA512 af14cd497bcbef7ac97b42b80e297e641bd520f51938b04a68ebf01de86d6900926653c01ff99b1af7f699674094241099101f1501acfae2be5dc9d1724af777 -DIST pythran-0.18.0.gh.tar.gz 3707538 BLAKE2B e2781e3e01677a3373fe7ffb87e9ef99ab2caba89ded3b15677aff963b967670687b5ff5206d3eb0a57332fb2848f67d077f8d3584d38a845a6657f29de28bc5 SHA512 70761b08724264ab048d6943b143123d19d81b65d3a5ab9aa023dc7d989bc51b33e17f9bb81a6e8f25f7bde4745f36d1208c8c2bd49f8d27b7a4776611f310a5 DIST pythran-0.18.1.gh.tar.gz 3714257 BLAKE2B 711f271297a6012a88a696df749efda8ca4c53e236a646bf2285ba80d0151b1117492c024eb8ab2e5f7337b1f9838332dba480a00a9c2a9216cbbeda78f971a8 SHA512 15650627b9396b49401067c3a7c161d1569f89f29a08243aa85659023e42ce028633915c51c8c5188a5599c201eb30aa2721d64ba766b2a252203469bc6e2ab1 diff --git a/dev-python/pythran/pythran-0.17.0-r2.ebuild b/dev-python/pythran/pythran-0.17.0-r2.ebuild deleted file mode 100644 index cf0bcac60406..000000000000 --- a/dev-python/pythran/pythran-0.17.0-r2.ebuild +++ /dev/null @@ -1,125 +0,0 @@ -# Copyright 2021-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} ) - -inherit distutils-r1 - -MY_P=${P/_p/.post} -DESCRIPTION="Ahead of Time compiler for numeric kernels" -HOMEPAGE=" - https://pypi.org/project/pythran/ - https://github.com/serge-sans-paille/pythran/ -" -SRC_URI=" - https://github.com/serge-sans-paille/pythran/archive/${PV/_p/.post}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv ~s390 ~sparc x86" - -RDEPEND=" - dev-libs/boost - dev-cpp/xsimd - =dev-python/beniget-0.4*[${PYTHON_USEDEP}] - =dev-python/gast-0.6*[${PYTHON_USEDEP}] - dev-python/numpy:=[${PYTHON_USEDEP}] - >=dev-python/ply-3.4[${PYTHON_USEDEP}] - >=dev-python/setuptools-73.0.1[${PYTHON_USEDEP}] -" -DEPEND=" - test? ( - dev-libs/boost - dev-cpp/xsimd - ) -" -BDEPEND=" - test? ( - dev-python/ipython[${PYTHON_USEDEP}] - dev-python/pip[${PYTHON_USEDEP}] - dev-python/packaging[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] - dev-python/wheel[${PYTHON_USEDEP}] - virtual/cblas - !!dev-python/setuptools-declarative-requirements - ) -" - -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -src_configure() { - # vendored C++ headers -- use system copies - rm -r pythran/{boost,xsimd} || die - - # https://bugs.gentoo.org/916461 - sed -i \ - -e 's|blas=blas|blas=cblas|' \ - -e 's|libs=|libs=cblas|' \ - pythran/pythran-*.cfg || die - # boost.math 1.82.0+ requires -std=c++14 - sed -i \ - -e 's|-std=c++11|-std=c++14|' \ - pythran/pythran-*.cfg || die -} - -python_test() { - local EPYTEST_DESELECT=( - # multiple extra deps (meson, openblas) - # also broken on pypy3* - pythran/tests/test_distutils.py::TestMeson::test_meson_build - - # newer numpy version? - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_fromstring0 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_fromstring1 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndindex1 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndindex2 - pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_bool - pythran/tests/test_xdoc.py::TestDoctest::test_tutorial - pythran/tests/test_xdoc.py::TestDoctest::test_utils - pythran/tests/test_numpy_random.py::TestNumpyRandom::test_numpy_random_bytes1 - - # newer gcc? - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndenumerate0 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndenumerate1 - ) - - case ${ARCH} in - arm) - EPYTEST_DESELECT+=( - # TODO - pythran/tests/test_numpy_fft.py::TestNumpyFFT::test_fft_3d_axis - pythran/tests/test_numpy_fft.py::TestNumpyFFTN - ) - ;& - arm|x86) - EPYTEST_DESELECT+=( - # https://github.com/serge-sans-paille/pythran/issues/2290 - pythran/tests/test_conversion.py::TestConversion::test_builtin_type9 - pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_uintp - pythran/tests/test_numpy_ufunc_unary.py::TestNumpyUFuncUnary::test_numpy_ufunc_unary_numpy_ufunc_unary_numpy_uint32_scalar_float - ) - ;; - esac - - if has_version ">=dev-python/numpy-2[${PYTHON_USEDEP}]"; then - case ${EPYTHON} in - python3.13) - EPYTEST_DESELECT+=( - # repr() differences? - pythran/tests/test_xdoc.py::TestDoctest::test_tutorial - ) - ;; - esac - fi - - local -x COLUMNS=80 - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -} diff --git a/dev-python/pythran/pythran-0.18.0-r1.ebuild b/dev-python/pythran/pythran-0.18.0-r1.ebuild deleted file mode 100644 index bcaa079da33c..000000000000 --- a/dev-python/pythran/pythran-0.18.0-r1.ebuild +++ /dev/null @@ -1,114 +0,0 @@ -# Copyright 2021-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3_11 python3_{11..14} ) - -inherit distutils-r1 - -MY_P=${P/_p/.post} -DESCRIPTION="Ahead of Time compiler for numeric kernels" -HOMEPAGE=" - https://pypi.org/project/pythran/ - https://github.com/serge-sans-paille/pythran/ -" -SRC_URI=" - https://github.com/serge-sans-paille/pythran/archive/${PV/_p/.post}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - dev-libs/boost - dev-cpp/xsimd - =dev-python/beniget-0.4*[${PYTHON_USEDEP}] - =dev-python/gast-0.6*[${PYTHON_USEDEP}] - dev-python/numpy:=[${PYTHON_USEDEP}] - >=dev-python/ply-3.4[${PYTHON_USEDEP}] - >=dev-python/setuptools-73.0.1[${PYTHON_USEDEP}] -" -DEPEND=" - test? ( - dev-libs/boost - dev-cpp/xsimd - ) -" -BDEPEND=" - test? ( - dev-python/ipython[${PYTHON_USEDEP}] - dev-python/pip[${PYTHON_USEDEP}] - dev-python/packaging[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] - dev-python/wheel[${PYTHON_USEDEP}] - virtual/cblas - !!dev-python/setuptools-declarative-requirements - ) -" - -EPYTEST_PLUGINS=() -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -src_configure() { - # vendored C++ headers -- use system copies - rm -r pythran/{boost,xsimd} || die - - # https://bugs.gentoo.org/916461 - sed -i \ - -e 's|blas=blas|blas=cblas|' \ - -e 's|libs=|libs=cblas|' \ - pythran/pythran-*.cfg || die - # boost.math 1.82.0+ requires -std=c++14 - sed -i \ - -e 's|-std=c++11|-std=c++14|' \ - pythran/pythran-*.cfg || die -} - -python_test() { - local EPYTEST_DESELECT=( - # multiple extra deps (meson, openblas) - # also broken on pypy3* - pythran/tests/test_distutils.py::TestMeson::test_meson_build - - # newer numpy version? - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_fromstring0 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_fromstring1 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndindex1 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndindex2 - pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_bool - pythran/tests/test_xdoc.py::TestDoctest::test_tutorial - pythran/tests/test_xdoc.py::TestDoctest::test_utils - pythran/tests/test_numpy_random.py::TestNumpyRandom::test_numpy_random_bytes1 - - # newer gcc? - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndenumerate0 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndenumerate1 - ) - - case ${ARCH} in - arm) - EPYTEST_DESELECT+=( - # TODO - pythran/tests/test_numpy_fft.py::TestNumpyFFT::test_fft_3d_axis - pythran/tests/test_numpy_fft.py::TestNumpyFFTN - ) - ;& - arm|x86) - EPYTEST_DESELECT+=( - # https://github.com/serge-sans-paille/pythran/issues/2290 - pythran/tests/test_conversion.py::TestConversion::test_builtin_type9 - pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_uintp - pythran/tests/test_numpy_ufunc_unary.py::TestNumpyUFuncUnary::test_numpy_ufunc_unary_numpy_ufunc_unary_numpy_uint32_scalar_float - ) - ;; - esac - - local -x COLUMNS=80 - epytest -} diff --git a/dev-python/pythran/pythran-0.18.0.ebuild b/dev-python/pythran/pythran-0.18.0.ebuild deleted file mode 100644 index e4e5cc9d26d5..000000000000 --- a/dev-python/pythran/pythran-0.18.0.ebuild +++ /dev/null @@ -1,125 +0,0 @@ -# Copyright 2021-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3_11 python3_{11..13} ) - -inherit distutils-r1 - -MY_P=${P/_p/.post} -DESCRIPTION="Ahead of Time compiler for numeric kernels" -HOMEPAGE=" - https://pypi.org/project/pythran/ - https://github.com/serge-sans-paille/pythran/ -" -SRC_URI=" - https://github.com/serge-sans-paille/pythran/archive/${PV/_p/.post}.tar.gz - -> ${MY_P}.gh.tar.gz -" -S=${WORKDIR}/${MY_P} - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv ~s390 ~sparc ~x86" - -RDEPEND=" - dev-libs/boost - dev-cpp/xsimd - =dev-python/beniget-0.4*[${PYTHON_USEDEP}] - =dev-python/gast-0.6*[${PYTHON_USEDEP}] - dev-python/numpy:=[${PYTHON_USEDEP}] - >=dev-python/ply-3.4[${PYTHON_USEDEP}] - >=dev-python/setuptools-73.0.1[${PYTHON_USEDEP}] -" -DEPEND=" - test? ( - dev-libs/boost - dev-cpp/xsimd - ) -" -BDEPEND=" - test? ( - dev-python/ipython[${PYTHON_USEDEP}] - dev-python/pip[${PYTHON_USEDEP}] - dev-python/packaging[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] - dev-python/wheel[${PYTHON_USEDEP}] - virtual/cblas - !!dev-python/setuptools-declarative-requirements - ) -" - -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -src_configure() { - # vendored C++ headers -- use system copies - rm -r pythran/{boost,xsimd} || die - - # https://bugs.gentoo.org/916461 - sed -i \ - -e 's|blas=blas|blas=cblas|' \ - -e 's|libs=|libs=cblas|' \ - pythran/pythran-*.cfg || die - # boost.math 1.82.0+ requires -std=c++14 - sed -i \ - -e 's|-std=c++11|-std=c++14|' \ - pythran/pythran-*.cfg || die -} - -python_test() { - local EPYTEST_DESELECT=( - # multiple extra deps (meson, openblas) - # also broken on pypy3* - pythran/tests/test_distutils.py::TestMeson::test_meson_build - - # newer numpy version? - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_fromstring0 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_fromstring1 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndindex1 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndindex2 - pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_bool - pythran/tests/test_xdoc.py::TestDoctest::test_tutorial - pythran/tests/test_xdoc.py::TestDoctest::test_utils - pythran/tests/test_numpy_random.py::TestNumpyRandom::test_numpy_random_bytes1 - - # newer gcc? - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndenumerate0 - pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ndenumerate1 - ) - - case ${ARCH} in - arm) - EPYTEST_DESELECT+=( - # TODO - pythran/tests/test_numpy_fft.py::TestNumpyFFT::test_fft_3d_axis - pythran/tests/test_numpy_fft.py::TestNumpyFFTN - ) - ;& - arm|x86) - EPYTEST_DESELECT+=( - # https://github.com/serge-sans-paille/pythran/issues/2290 - pythran/tests/test_conversion.py::TestConversion::test_builtin_type9 - pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_uintp - pythran/tests/test_numpy_ufunc_unary.py::TestNumpyUFuncUnary::test_numpy_ufunc_unary_numpy_ufunc_unary_numpy_uint32_scalar_float - ) - ;; - esac - - if has_version ">=dev-python/numpy-2[${PYTHON_USEDEP}]"; then - case ${EPYTHON} in - python3.13) - EPYTEST_DESELECT+=( - # repr() differences? - pythran/tests/test_xdoc.py::TestDoctest::test_tutorial - ) - ;; - esac - fi - - local -x COLUMNS=80 - local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 - epytest -} |
