diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3.inc')
-rw-r--r-- | meta/recipes-devtools/python/python3.inc | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3.inc b/meta/recipes-devtools/python/python3.inc new file mode 100644 index 0000000000..3207f91ab8 --- /dev/null +++ b/meta/recipes-devtools/python/python3.inc | |||
@@ -0,0 +1,42 @@ | |||
1 | SUMMARY = "The Python Programming Language" | ||
2 | HOMEPAGE = "http://www.python.org" | ||
3 | LICENSE = "PSFv2" | ||
4 | SECTION = "devel/python" | ||
5 | |||
6 | # TODO Remove this when we upgrade | ||
7 | INC_PR = "r1" | ||
8 | PR = "${INC_PR}.0" | ||
9 | |||
10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b6ec515b22618f55fa07276b897bacea" | ||
11 | |||
12 | # TODO consolidate patch set | ||
13 | SRC_URI[md5sum] = "f5a99f765e765336a3ebbb2a24ca2be3" | ||
14 | SRC_URI[sha256sum] = "f55cde04f521f273c7cba08912921cc5642cfc15ca7b22d5829f0aff4371155f" | ||
15 | |||
16 | # exclude pre-releases for both python 2.x and 3.x | ||
17 | UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar" | ||
18 | |||
19 | CVE_PRODUCT = "python" | ||
20 | |||
21 | PYTHON_MAJMIN = "3.5" | ||
22 | PYTHON_BINABI = "${PYTHON_MAJMIN}m" | ||
23 | |||
24 | S = "${WORKDIR}/Python-${PV}" | ||
25 | |||
26 | inherit autotools pkgconfig | ||
27 | |||
28 | EXTRA_OECONF = "\ | ||
29 | --with-threads \ | ||
30 | --with-pymalloc \ | ||
31 | --without-cxx-main \ | ||
32 | --with-signal-module \ | ||
33 | --enable-shared \ | ||
34 | --enable-ipv6=${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)} \ | ||
35 | ac_cv_header_bluetooth_bluetooth_h=no ac_cv_header_bluetooth_h=no \ | ||
36 | " | ||
37 | |||
38 | do_install_append () { | ||
39 | sed -i -e 's:${HOSTTOOLS_DIR}/install:install:g' \ | ||
40 | -e 's:${HOSTTOOLS_DIR}/mkdir:mkdir:g' \ | ||
41 | ${D}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata.py | ||
42 | } | ||