diff options
| author | Otavio Salvador <otavio.salvador@gmail.com> | 2022-01-03 13:18:44 -0300 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-05 17:18:16 +0000 |
| commit | aa9c46358e73305b6e6aed2160fbb80f026bc6d1 (patch) | |
| tree | 3ae8fafb042003d8a00e63c68c88c6d44de2c11b /meta/recipes-devtools/python/python3-cython_0.29.26.bb | |
| parent | b06683312f1a182c204354d160903b7cb0cad54a (diff) | |
| download | poky-aa9c46358e73305b6e6aed2160fbb80f026bc6d1.tar.gz | |
python3-cython: upgrade 0.29.25 -> 0.29.26
(From OE-Core rev: 749c8767935bf4a11103e7dad32042a1ba7d7d68)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-cython_0.29.26.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-cython_0.29.26.bb | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-cython_0.29.26.bb b/meta/recipes-devtools/python/python3-cython_0.29.26.bb new file mode 100644 index 0000000000..b1d21bd15c --- /dev/null +++ b/meta/recipes-devtools/python/python3-cython_0.29.26.bb | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | inherit setuptools3 | ||
| 2 | require python-cython.inc | ||
| 3 | |||
| 4 | RDEPENDS:${PN} += "\ | ||
| 5 | python3-setuptools \ | ||
| 6 | " | ||
| 7 | |||
| 8 | # running build_ext a second time during install fails, because Python | ||
| 9 | # would then attempt to import cythonized modules built for the target | ||
| 10 | # architecture. | ||
| 11 | DISTUTILS_INSTALL_ARGS += "--skip-build" | ||
| 12 | |||
| 13 | do_install:append() { | ||
| 14 | # rename scripts that would conflict with the Python 2 build of Cython | ||
| 15 | mv ${D}${bindir}/cython ${D}${bindir}/cython3 | ||
| 16 | mv ${D}${bindir}/cythonize ${D}${bindir}/cythonize3 | ||
| 17 | mv ${D}${bindir}/cygdb ${D}${bindir}/cygdb3 | ||
| 18 | } | ||
| 19 | |||
| 20 | PACKAGEBUILDPKGD += "cython_fix_sources" | ||
| 21 | |||
| 22 | cython_fix_sources () { | ||
| 23 | for f in ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Compiler/FlowControl.c \ | ||
| 24 | ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Compiler/FusedNode.c \ | ||
| 25 | ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Compiler/Scanning.c \ | ||
| 26 | ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Compiler/Visitor.c \ | ||
| 27 | ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Plex/Actions.c \ | ||
| 28 | ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Plex/Scanners.c \ | ||
| 29 | ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Runtime/refnanny.c \ | ||
| 30 | ${PKGD}/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}/Cython-${PV}/Cython/Tempita/_tempita.c \ | ||
| 31 | ${PKGD}${libdir}/${PYTHON_DIR}/site-packages/Cython*/SOURCES.txt; do | ||
| 32 | if [ -e $f ]; then | ||
| 33 | sed -i -e 's#${WORKDIR}#/usr/src/debug/${PN}/${EXTENDPE}${PV}-${PR}#g' $f | ||
| 34 | fi | ||
| 35 | done | ||
| 36 | } | ||
| 37 | |||
