summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-cython_0.27.3.bb
diff options
context:
space:
mode:
authorDerek Straka <derek@asterius.io>2017-11-12 10:23:45 -0500
committerArmin Kuster <akuster808@gmail.com>2017-11-19 13:36:25 -0800
commitc4a5e2c787673903a0150737a038fb00ace77f8b (patch)
tree149200f6a502f3210bcd20184d79a70b12c9be33 /meta-python/recipes-devtools/python/python3-cython_0.27.3.bb
parent67cbad338dec365984c2f781ce84199b57282b91 (diff)
downloadmeta-openembedded-c4a5e2c787673903a0150737a038fb00ace77f8b.tar.gz
python-cython: update to version 0.27.3
Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cython_0.27.3.bb')
-rw-r--r--meta-python/recipes-devtools/python/python3-cython_0.27.3.bb18
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cython_0.27.3.bb b/meta-python/recipes-devtools/python/python3-cython_0.27.3.bb
new file mode 100644
index 0000000000..2ce6bdbd68
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-cython_0.27.3.bb
@@ -0,0 +1,18 @@
1inherit setuptools3
2require python-cython.inc
3
4RDEPENDS_${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.
11DISTUTILS_INSTALL_ARGS += "--skip-build"
12
13do_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}