Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | SUMMARY = "The Python Programming Language" |
| 2 | HOMEPAGE = "http://www.python.org" |
| 3 | LICENSE = "PSFv2" |
| 4 | SECTION = "devel/python" |
| 5 | # bump this on every change in contrib/python/generate-manifest-2.7.py |
| 6 | INC_PR = "r1" |
| 7 | |
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dff3d00f049545862992d2d097831a13" |
| 9 | |
| 10 | SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz" |
| 11 | |
| 12 | SRC_URI[md5sum] = "38d530f7efc373d64a8fb1637e3baaa7" |
| 13 | SRC_URI[sha256sum] = "90d27e14ea7e03570026850e2e50ba71ad20b7eb31035aada1cf3def8f8d4916" |
| 14 | |
| 15 | PYTHON_MAJMIN = "2.7" |
| 16 | |
| 17 | inherit autotools |
| 18 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 19 | PYTHONLSBOPTS_linuxstdbase = "ac_cv_sizeof_off_t=8" |
| 20 | |
| 21 | EXTRA_OECONF = "\ |
| 22 | --with-threads \ |
| 23 | --with-pymalloc \ |
| 24 | --without-cxx-main \ |
| 25 | --with-signal-module \ |
| 26 | --enable-shared \ |
| 27 | --enable-ipv6=${@bb.utils.contains('DISTRO_FEATURES', 'ipv6', 'yes', 'no', d)} \ |
| 28 | ac_cv_header_bluetooth_bluetooth_h=no ac_cv_header_bluetooth_h=no \ |
| 29 | ${PYTHONLSBOPTS} \ |
| 30 | " |