summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-cython_3.1.1.bb
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@fujitsu.com>2025-06-04 16:45:13 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-06-05 11:02:23 +0100
commit40083eb638b2cb7bc5cf70b1be9ef41e2fb737f1 (patch)
tree8b389695804ed2b02597c0126be4b4462f54e5e9 /meta/recipes-devtools/python/python3-cython_3.1.1.bb
parent507303f2cfd114d4730eac0b5e6e40be2df346f8 (diff)
downloadpoky-40083eb638b2cb7bc5cf70b1be9ef41e2fb737f1.tar.gz
python3-cython: upgrade 3.1.0 -> 3.1.1
(From OE-Core rev: ad36020d46a5827e07da4dc5ca86874d5e704ffd) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-cython_3.1.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-cython_3.1.1.bb44
1 files changed, 44 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-cython_3.1.1.bb b/meta/recipes-devtools/python/python3-cython_3.1.1.bb
new file mode 100644
index 0000000000..1bc6eda4ac
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-cython_3.1.1.bb
@@ -0,0 +1,44 @@
1SUMMARY = "The Cython language"
2HOMEPAGE = "https://pypi.org/project/Cython/"
3DESCRIPTION = "Cython is a language specially designed for writing Python extension modules. \
4It's designed to bridge the gap between the nice, high-level, easy-to-use world of Python \
5and the messy, low-level world of C."
6SECTION = "devel/python"
7LICENSE = "Apache-2.0"
8LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=61c3ee8961575861fa86c7e62bc9f69c"
9
10SRC_URI[sha256sum] = "505ccd413669d5132a53834d792c707974248088c4f60c497deb1b416e366397"
11
12inherit pypi setuptools3 cython
13
14# No need to depend on self
15DEPENDS:remove = "python3-cython-native"
16
17do_install:append() {
18 # rename scripts that would conflict with the Python 2 build of Cython
19 mv ${D}${bindir}/cython ${D}${bindir}/cython3
20 mv ${D}${bindir}/cythonize ${D}${bindir}/cythonize3
21 mv ${D}${bindir}/cygdb ${D}${bindir}/cygdb3
22}
23
24RDEPENDS:${PN}:class-target += "\
25 python3-misc \
26 python3-netserver \
27 python3-pkgutil \
28 python3-pyparsing \
29 python3-setuptools \
30 python3-shell \
31 python3-xml \
32"
33
34RDEPENDS:${PN}:class-nativesdk += "\
35 nativesdk-python3-misc \
36 nativesdk-python3-netserver \
37 nativesdk-python3-pkgutil \
38 nativesdk-python3-pyparsing \
39 nativesdk-python3-setuptools \
40 nativesdk-python3-shell \
41 nativesdk-python3-xml \
42"
43
44BBCLASSEXTEND = "native nativesdk"