blob: 572cb960e3ae497ecaf8530810d7682cb17cdde6 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001DESCRIPTION = "Cython is a language specially designed for writing Python extension modules. \
2It's designed to bridge the gap between the nice, high-level, easy-to-use world of Python \
3and the messy, low-level world of C."
4SECTION = "devel/python"
5LICENSE = "Apache-2.0"
6LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
Patrick Williamsddad1a12017-02-23 20:36:32 -06007PYPI_PACKAGE = "Cython"
Patrick Williamsb48b7b42016-08-17 15:04:38 -05008BBCLASSEXTEND = "native"
9
Brad Bishopd7bf8c12018-02-25 22:55:05 -050010SRC_URI[md5sum] = "b93750b34382b025d678bea819b7491b"
11SRC_URI[sha256sum] = "e6840a2ba2704f4ffb40e454c36f73aeb440a4005453ee8d7ff6a00d812ba176"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050012
Patrick Williamsddad1a12017-02-23 20:36:32 -060013inherit pypi
Patrick Williamsb48b7b42016-08-17 15:04:38 -050014
Brad Bishop6e60e8b2018-02-01 10:27:11 -050015RDEPENDS_${PN}_class-target += "\
Patrick Williamsb48b7b42016-08-17 15:04:38 -050016 ${PYTHON_PN}-netserver \
17 ${PYTHON_PN}-subprocess \
18 ${PYTHON_PN}-shell \
19"
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020
21do_install_append() {
22 # Make sure we use /usr/bin/env python
23 for PYTHSCRIPT in `grep -rIl '^#!.*python' ${D}`; do
24 sed -i -e '1s|^#!.*|#!/usr/bin/env ${PYTHON_PN}|' $PYTHSCRIPT
25 done
26}