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/cython/
Date: Mon, 16 May 2022 16:05:05
Message-Id: 1652717094.d4759be8c7a24cd8692e04fa2145eddaea795c45.mgorny@gentoo
1 commit: d4759be8c7a24cd8692e04fa2145eddaea795c45
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 16 14:07:09 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 16 16:04:54 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4759be8
7
8 dev-python/cython: Bump to 0.29.29
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cython/Manifest | 1 +
13 dev-python/cython/cython-0.29.29.ebuild | 90 +++++++++++++++++++++++++++++++++
14 2 files changed, 91 insertions(+)
15
16 diff --git a/dev-python/cython/Manifest b/dev-python/cython/Manifest
17 index c5415afbc4c4..123481aedf64 100644
18 --- a/dev-python/cython/Manifest
19 +++ b/dev-python/cython/Manifest
20 @@ -1,2 +1,3 @@
21 DIST cython-0.29.28.gh.tar.gz 2101301 BLAKE2B 980c04545e935deb4b4b1653f167dcbc94b8e2b24bc8897b5cc996dfca977645f7475c32aa973251ffcbbb31e725e27693af61ceaf66f2332c9525b02653dc76 SHA512 52490d0b5355e13cbe586830f763173d7556cf3d79d79192ca75138b1190e7a4c1f3feeb0568349802ef3b97300c3805f54eef5ffd73a5180d68f023ac2a44cd
22 +DIST cython-0.29.29.gh.tar.gz 2105839 BLAKE2B ab7879ce70733cfd77b7aa42a2de717bfc1b9bf933754bfecc6548ee1d097ce4102daaee98a1902d957b50f18400b5ba58d6517edfe43c9332c5bb3ec45f9665 SHA512 db14813f6191445cc3d497d3c7d76cc8b55fbe8e6857d800f5e05052fe4b05e9c2a2e597bdc1891254a62ecef203780c1c495e8d28e831072ddd46992bfe6df4
23 DIST cython-74073417c4f7e616af0a139a55f790f1ec7fe728.gh.tar.gz 2106765 BLAKE2B c2686a1d49fd1b522dcdf89f16c52fbb34595aed72e5626c8d3697ecc9318751d108999db443cfefe08334155ab59d230fcbd8e74715e185a161399abad6ae35 SHA512 2454a364fdd33f0090ba052a0bfa0ffb464ef750253a91c20a63c4db0b513f743870e7b9fafd844b0bf1a6b66b9b639f830d3a8c2f64abac6e197e2ff2279a59
24
25 diff --git a/dev-python/cython/cython-0.29.29.ebuild b/dev-python/cython/cython-0.29.29.ebuild
26 new file mode 100644
27 index 000000000000..dcfe1e9d8fcf
28 --- /dev/null
29 +++ b/dev-python/cython/cython-0.29.29.ebuild
30 @@ -0,0 +1,90 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DISTUTILS_USE_PEP517=setuptools
37 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
38 +PYTHON_REQ_USE="threads(+)"
39 +
40 +inherit distutils-r1 toolchain-funcs elisp-common
41 +
42 +DESCRIPTION="A Python to C compiler"
43 +HOMEPAGE="
44 + https://cython.org/
45 + https://github.com/cython/cython/
46 + https://pypi.org/project/Cython/
47 +"
48 +SRC_URI="
49 + https://github.com/cython/cython/archive/${PV}.tar.gz
50 + -> ${P}.gh.tar.gz
51 +"
52 +
53 +LICENSE="Apache-2.0"
54 +SLOT="0"
55 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
56 +IUSE="emacs test"
57 +RESTRICT="!test? ( test )"
58 +
59 +RDEPEND="
60 + emacs? ( >=app-editors/emacs-23.1:* )
61 +"
62 +BDEPEND="
63 + ${RDEPEND}
64 + test? (
65 + $(python_gen_cond_dep '
66 + dev-python/numpy[${PYTHON_USEDEP}]
67 + ' python3_{8..10})
68 + )
69 +"
70 +
71 +PATCHES=(
72 + "${FILESDIR}/${PN}-0.29.22-spawn-multiprocessing.patch"
73 + "${FILESDIR}/${PN}-0.29.23-test_exceptions-py310.patch"
74 +)
75 +
76 +SITEFILE=50cython-gentoo.el
77 +
78 +distutils_enable_sphinx docs
79 +
80 +python_compile() {
81 + # Python gets confused when it is in sys.path before build.
82 + local -x PYTHONPATH=
83 +
84 + distutils-r1_python_compile
85 +}
86 +
87 +python_compile_all() {
88 + use emacs && elisp-compile Tools/cython-mode.el
89 +}
90 +
91 +python_test() {
92 + if [[ ${EPYTHON} == python3.11 ]]; then
93 + einfo "Skipping tests on ${EPYTHON} (xfail)"
94 + return
95 + fi
96 +
97 + tc-export CC
98 + # https://github.com/cython/cython/issues/1911
99 + local -x CFLAGS="${CFLAGS} -fno-strict-overflow"
100 + "${PYTHON}" runtests.py -vv --work-dir "${BUILD_DIR}"/tests ||
101 + die "Tests fail with ${EPYTHON}"
102 +}
103 +
104 +python_install_all() {
105 + local DOCS=( CHANGES.rst README.rst ToDo.txt USAGE.txt )
106 + distutils-r1_python_install_all
107 +
108 + if use emacs; then
109 + elisp-install ${PN} Tools/cython-mode.*
110 + elisp-site-file-install "${FILESDIR}/${SITEFILE}"
111 + fi
112 +}
113 +
114 +pkg_postinst() {
115 + use emacs && elisp-site-regen
116 +}
117 +
118 +pkg_postrm() {
119 + use emacs && elisp-site-regen
120 +}