blob: a630c26e898adefd46ef285a0d568a00b3031e7b [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "The Python Programming Language"
2HOMEPAGE = "http://www.python.org"
3LICENSE = "PSFv2"
4SECTION = "devel/python"
5# bump this on every change in contrib/python/generate-manifest-2.7.py
6INC_PR = "r1"
7
Brad Bishopc342db32019-05-15 21:57:59 -04008LIC_FILES_CHKSUM = "file://LICENSE;md5=e466242989bd33c1bd2b6a526a742498"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080010SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012
Brad Bishop6dbb3162019-11-25 09:41:34 -050013SRC_URI[md5sum] = "b3b6d2c92f42a60667814358ab9f0cfd"
14SRC_URI[sha256sum] = "4d43f033cdbd0aa7b7023c81b0e986fd11e653b5248dac9144d508f11812ba41"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050015
16# python recipe is actually python 2.x
17# also, exclude pre-releases for both python 2.x and 3.x
18UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>2(\.\d+)+).tar"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019
Brad Bishop6e60e8b2018-02-01 10:27:11 -050020CVE_PRODUCT = "python"
21
Patrick Williamsc124f4f2015-09-15 14:41:29 -050022PYTHON_MAJMIN = "2.7"
23
Brad Bishop6e60e8b2018-02-01 10:27:11 -050024inherit autotools pkgconfig
Patrick Williamsc124f4f2015-09-15 14:41:29 -050025
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026EXTRA_OECONF = "\
27 --with-threads \
28 --with-pymalloc \
29 --without-cxx-main \
30 --with-signal-module \
31 --enable-shared \
32 --enable-ipv6=${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)} \
33 ac_cv_header_bluetooth_bluetooth_h=no ac_cv_header_bluetooth_h=no \
Patrick Williamsc124f4f2015-09-15 14:41:29 -050034"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050035
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080036do_configure_prepend() {
37 libdirleaf="$(echo ${libdir} | sed -e 's:${prefix}/::')"
38 sed -i -e "s:SEDMELIBLEAF:${libdirleaf}:g" \
39 ${S}/configure.ac
40}
41
Brad Bishop6e60e8b2018-02-01 10:27:11 -050042do_install_append () {
43 sed -i -e 's:${HOSTTOOLS_DIR}/install:install:g' \
44 -e 's:${HOSTTOOLS_DIR}/mkdir:mkdir:g' \
45 ${D}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata.py
46}