Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 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 bluetooth 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 | " |
| 36 | |
| 37 | PACKAGECONFIG[bluetooth] = ",ac_cv_header_bluetooth_bluetooth_h=no ac_cv_header_bluetooth_h=no,${BLUEZ}" |
| 38 | |
| 39 | do_install_append () { |
| 40 | sed -i -e 's:${HOSTTOOLS_DIR}/install:install:g' \ |
| 41 | -e 's:${HOSTTOOLS_DIR}/mkdir:mkdir:g' \ |
| 42 | ${D}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata.py |
| 43 | } |