blob: d116eb826d92d762b392f19d84ccd214e85cb36c [file] [log] [blame]
Andrew Geissler95ac1b82021-03-31 14:34:31 -05001SUMMARY = "The Cython language"
2HOMEPAGE = "https://pypi.org/project/Cython/"
Andrew Geissler82c905d2020-04-13 13:39:40 -05003DESCRIPTION = "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"
Patrick Williams705982a2024-01-12 09:51:57 -06008LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=61c3ee8961575861fa86c7e62bc9f69c"
Andrew Geissler82c905d2020-04-13 13:39:40 -05009PYPI_PACKAGE = "Cython"
10BBCLASSEXTEND = "native nativesdk"
11
Patrick Williams56b44a92024-01-19 08:49:29 -060012SRC_URI[sha256sum] = "8333423d8fd5765e7cceea3a9985dd1e0a5dfeb2734629e1a2ed2d6233d39de6"
Andrew Geissler82c905d2020-04-13 13:39:40 -050013UPSTREAM_CHECK_REGEX = "Cython-(?P<pver>.*)\.tar"
14
15inherit pypi
16
Patrick Williams213cb262021-08-07 19:21:33 -050017RDEPENDS:${PN}:class-target += "\
Andrew Geissler82c905d2020-04-13 13:39:40 -050018 ${PYTHON_PN}-misc \
19 ${PYTHON_PN}-netserver \
20 ${PYTHON_PN}-pkgutil \
21 ${PYTHON_PN}-pyparsing \
22 ${PYTHON_PN}-setuptools \
23 ${PYTHON_PN}-shell \
24 ${PYTHON_PN}-xml \
25"
26
Patrick Williams213cb262021-08-07 19:21:33 -050027RDEPENDS:${PN}:class-nativesdk += "\
Andrew Geissler82c905d2020-04-13 13:39:40 -050028 nativesdk-${PYTHON_PN}-misc \
29 nativesdk-${PYTHON_PN}-netserver \
30 nativesdk-${PYTHON_PN}-pkgutil \
31 nativesdk-${PYTHON_PN}-pyparsing \
32 nativesdk-${PYTHON_PN}-setuptools \
33 nativesdk-${PYTHON_PN}-shell \
34 nativesdk-${PYTHON_PN}-xml \
35"
36
Patrick Williams213cb262021-08-07 19:21:33 -050037do_install:append() {
Andrew Geissler82c905d2020-04-13 13:39:40 -050038 # Make sure we use /usr/bin/env python
39 for PYTHSCRIPT in `grep -rIl '^#!.*python' ${D}`; do
40 sed -i -e '1s|^#!.*|#!/usr/bin/env ${PYTHON_PN}|' $PYTHSCRIPT
41 done
Patrick Williams705982a2024-01-12 09:51:57 -060042
43 # remove build paths from generated sources
44 sed -i -e 's|${WORKDIR}||' ${S}/Cython/*.c ${S}/Cython/Compiler/*.c ${S}/Cython/Plex/*.c
Andrew Geissler82c905d2020-04-13 13:39:40 -050045}