public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pythran/
Date: Fri, 24 May 2024 18:30:52 +0000 (UTC)	[thread overview]
Message-ID: <1716575447.2661fdbc63696d16251f374f3bb737a5f91652ab.mgorny@gentoo> (raw)

commit:     2661fdbc63696d16251f374f3bb737a5f91652ab
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri May 24 13:54:14 2024 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri May 24 18:30:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2661fdbc

dev-python/pythran: Bump to 0.16.0

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

 dev-python/pythran/Manifest              |   1 +
 dev-python/pythran/pythran-0.16.0.ebuild | 103 +++++++++++++++++++++++++++++++
 2 files changed, 104 insertions(+)

diff --git a/dev-python/pythran/Manifest b/dev-python/pythran/Manifest
index cbf38039cbbb..0014bf5c985b 100644
--- a/dev-python/pythran/Manifest
+++ b/dev-python/pythran/Manifest
@@ -1 +1,2 @@
 DIST pythran-0.15.0.gh.tar.gz 3676474 BLAKE2B 2b9c08d773f7848cf43c804ffa9a84eb19d20dbc40668657daea9698fb468e62ec86226f39aa3b8ff07b48a3120604b44a9d6a6c9e7f2b5f0f41ba2e9a201231 SHA512 2abba0ab5328e60d622512aa6c5442fcc28edb4da4209db50ede64961b58c91c2109b7bb90e5872c5c0d487542f669dc2ca3e721c28229e283f6e0130f95aee0
+DIST pythran-0.16.0.gh.tar.gz 3680823 BLAKE2B b0bd65b79831b2a64503d25a71b41ba493281e36d2a147f301ba81ffb9f2f40de07b89d300df2768ffc3eeb49ff3ad6698f6a12d92c68150c1e51655a8e983aa SHA512 8d65f10df6f73518f3a2606a796ee91480d654a17269651e05ee79c0d0c68b9d583c211caa8ef348c8d11cef49da36b560da6e8889accfad8c9b3a8b51eeff57

diff --git a/dev-python/pythran/pythran-0.16.0.ebuild b/dev-python/pythran/pythran-0.16.0.ebuild
new file mode 100644
index 000000000000..ff9020372d6a
--- /dev/null
+++ b/dev-python/pythran/pythran-0.16.0.ebuild
@@ -0,0 +1,103 @@
+# Copyright 2021-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_TESTED=( pypy3 python3_{10..12} )
+PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
+
+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.5*[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	>=dev-python/ply-3.4[${PYTHON_USEDEP}]
+	dev-python/setuptools[${PYTHON_USEDEP}]
+"
+DEPEND="
+	test? (
+		dev-libs/boost
+		dev-cpp/xsimd
+	)
+"
+BDEPEND="
+	test? (
+		$(python_gen_cond_dep '
+			dev-python/ipython[${PYTHON_USEDEP}]
+			dev-python/pip[${PYTHON_USEDEP}]
+			dev-python/scipy[${PYTHON_USEDEP}]
+		' "${PYTHON_TESTED[@]}")
+		dev-python/packaging[${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
+
+	if use test ; then
+		# https://bugs.gentoo.org/916461
+		sed -i \
+			-e 's|blas=blas|blas=cblas|' \
+			-e 's|libs=|libs=cblas|' \
+			pythran/pythran-*.cfg || die
+	fi
+}
+
+python_test() {
+	local -x COLUMNS=80
+	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+
+	local EPYTEST_DESELECT=(
+		# TODO
+		pythran/tests/test_numpy_ufunc_unary.py::TestNumpyUFuncUnary::test_signbit0
+	)
+
+	if has_version ">=dev-python/numpy-2[${PYTHON_USEDEP}]"; then
+		case ${EPYTHON} in
+			pypy3)
+				EPYTEST_DESELECT+=(
+					pythran/tests/test_distutils.py::TestDistutils::test_setup_bdist_install3
+					pythran/tests/test_distutils.py::TestDistutils::test_setup_build3
+					pythran/tests/test_distutils.py::TestDistutils::test_setup_sdist_install
+					pythran/tests/test_distutils.py::TestDistutils::test_setup_sdist_install2
+					pythran/tests/test_distutils.py::TestDistutils::test_setup_sdist_install3
+					pythran/tests/test_exception.py::TestException::test_multiple_tuple_exception_register
+					pythran/tests/test_ndarray.py::TestNdarray::test_ndarray_fancy_indexing1
+					pythran/tests/test_numpy_fft.py::TestNumpyFFTN::test_fftn_1
+					pythran/tests/test_numpy_func0.py::TestNumpyFunc0::test_ravel0
+					pythran/tests/test_numpy_func3.py::TestNumpyFunc3::test_list_imag0
+					pythran/tests/test_set.py::TestSet::test_fct_symmetric_difference_update
+				)
+				;;
+		esac
+	fi
+
+	epytest
+}


             reply	other threads:[~2024-05-24 18:30 UTC|newest]

Thread overview: 100+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-24 18:30 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-22  5:13 [gentoo-commits] repo/gentoo:master commit in: dev-python/pythran/ Michał Górny
2024-08-20 19:05 Eli Schwartz
2024-08-20 18:14 Eli Schwartz
2024-07-12 12:03 Michał Górny
2024-07-11 11:59 Michał Górny
2024-06-27 19:09 Michał Górny
2024-06-12 11:10 Arthur Zamarin
2024-06-12 10:45 Arthur Zamarin
2024-06-12  9:27 Arthur Zamarin
2024-06-12  7:34 Arthur Zamarin
2024-05-28 11:52 Michał Górny
2024-05-24 18:30 Michał Górny
2024-05-24 18:30 Michał Górny
2024-05-19 19:43 Arthur Zamarin
2024-02-19 21:55 Sam James
2024-02-19 21:55 Sam James
2024-01-28 20:00 Arthur Zamarin
2024-01-25  0:42 Sam James
2024-01-24 20:34 Arthur Zamarin
2024-01-24 19:21 Michał Górny
2024-01-24 19:05 Michał Górny
2024-01-20  9:07 Sam James
2024-01-19 23:08 Ionen Wolkens
2024-01-13 11:14 Sam James
2024-01-08 14:48 Michał Górny
2023-12-09 17:02 Michał Górny
2023-12-09 16:45 Arthur Zamarin
2023-12-08 19:39 Arthur Zamarin
2023-11-25 11:43 Arthur Zamarin
2023-11-25 11:14 Michał Górny
2023-11-25 10:14 Arthur Zamarin
2023-11-19 20:07 Arthur Zamarin
2023-11-18 20:13 Michał Górny
2023-10-29 11:10 Michał Górny
2023-10-29  6:50 Sam James
2023-10-29  3:40 Sam James
2023-10-24 21:11 Michał Górny
2023-10-24 18:15 Michał Górny
2023-10-24 17:13 Arthur Zamarin
2023-09-11  6:48 Jakov Smolić
2023-09-09 16:27 WANG Xuerui
2023-09-08 18:50 Arthur Zamarin
2023-09-07 19:30 Michał Górny
2023-07-24 12:56 Michał Górny
2023-06-03 23:07 Sam James
2023-06-03 23:07 Sam James
2023-06-03 19:45 Arthur Zamarin
2023-06-03 18:45 Arthur Zamarin
2023-06-03 18:28 Arthur Zamarin
2023-05-06  8:28 Sam James
2023-05-03  8:59 Sam James
2023-04-01 16:34 Arthur Zamarin
2023-04-01 16:34 Arthur Zamarin
2023-03-16 18:13 Michał Górny
2023-02-20 21:29 Arthur Zamarin
2023-02-20 19:39 Arthur Zamarin
2023-02-16 20:58 Arthur Zamarin
2023-02-16 20:58 Arthur Zamarin
2023-01-16 18:21 Michał Górny
2022-11-14  9:24 Arthur Zamarin
2022-11-12 16:31 Arthur Zamarin
2022-11-08  6:08 Sam James
2022-11-07 10:20 Sam James
2022-11-07  7:08 Sam James
2022-11-06  9:30 Sam James
2022-11-06  7:25 Sam James
2022-10-09 16:10 Sam James
2022-10-09 16:10 Sam James
2022-10-09  0:09 Sam James
2022-10-09  0:04 Sam James
2022-10-08 23:56 Sam James
2022-10-08 13:30 Michał Górny
2022-03-18 10:31 Arthur Zamarin
2022-01-20 16:12 Michał Górny
2022-01-20 14:48 Sam James
2022-01-20 13:41 Arthur Zamarin
2022-01-20 13:06 Sam James
2022-01-20 11:22 Arthur Zamarin
2022-01-20 10:09 Arthur Zamarin
2021-12-23 22:43 Sam James
2021-12-19 11:08 Sam James
2021-12-15 16:12 Michał Górny
2021-11-20 15:35 Arthur Zamarin
2021-11-17 22:47 Sam James
2021-11-05 18:09 Sam James
2021-11-05 18:09 Sam James
2021-11-05 18:01 Sam James
2021-11-05  7:36 Sam James
2021-11-05  7:36 Sam James
2021-10-19  0:12 Sam James
2021-10-17  9:25 Michał Górny
2021-10-12  7:42 Marek Szuba
2021-09-14  8:59 Michał Górny
2021-07-26  5:21 Michał Górny
2021-07-15  9:22 Michał Górny
2021-06-22  9:02 Michał Górny
2021-06-22  8:13 Michał Górny
2021-06-21 22:04 Michał Górny
2021-06-21 21:03 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1716575447.2661fdbc63696d16251f374f3bb737a5f91652ab.mgorny@gentoo \
    --to=mgorny@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox