diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3_3.13.3.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3_3.13.3.bb | 499 |
1 files changed, 499 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3_3.13.3.bb b/meta/recipes-devtools/python/python3_3.13.3.bb new file mode 100644 index 0000000000..6839d28e19 --- /dev/null +++ b/meta/recipes-devtools/python/python3_3.13.3.bb | |||
| @@ -0,0 +1,499 @@ | |||
| 1 | SUMMARY = "The Python Programming Language" | ||
| 2 | HOMEPAGE = "http://www.python.org" | ||
| 3 | DESCRIPTION = "Python is a programming language that lets you work more quickly and integrate your systems more effectively." | ||
| 4 | LICENSE = "PSF-2.0" | ||
| 5 | SECTION = "devel/python" | ||
| 6 | |||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3f64a4ff490f884d562feb77bf2435f1" | ||
| 8 | |||
| 9 | SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \ | ||
| 10 | file://run-ptest \ | ||
| 11 | file://create_manifest3.py \ | ||
| 12 | file://get_module_deps3.py \ | ||
| 13 | file://python3-manifest.json \ | ||
| 14 | file://check_build_completeness.py \ | ||
| 15 | file://reformat_sysconfig.py \ | ||
| 16 | file://0001-Makefile.pre-use-qemu-wrapper-when-gathering-profile.patch \ | ||
| 17 | file://0001-test_locale.py-correct-the-test-output-format.patch \ | ||
| 18 | file://0001-Skip-failing-tests-due-to-load-variability-on-YP-AB.patch \ | ||
| 19 | file://0001-test_ctypes.test_find-skip-without-tools-sdk.patch \ | ||
| 20 | file://makerace.patch \ | ||
| 21 | file://0001-sysconfig.py-use-platlibdir-also-for-purelib.patch \ | ||
| 22 | file://0001-Lib-pty.py-handle-stdin-I-O-errors-same-way-as-maste.patch \ | ||
| 23 | file://valid-dists.patch \ | ||
| 24 | file://0001-Avoid-shebang-overflow-on-python-config.py.patch \ | ||
| 25 | file://0001-Update-test_sysconfig-for-posix_user-purelib.patch \ | ||
| 26 | file://0001-skip-no_stdout_fileno-test-due-to-load-variability.patch \ | ||
| 27 | file://0001-test_storlines-skip-due-to-load-variability.patch \ | ||
| 28 | file://0001-test_shutdown-skip-problematic-test.patch \ | ||
| 29 | file://0001-test_deadlock-skip-problematic-test.patch \ | ||
| 30 | file://0001-test_active_children-skip-problematic-test.patch \ | ||
| 31 | file://0001-test_readline-skip-limited-history-test.patch \ | ||
| 32 | file://0001-Generate-data-for-OpenSSL-3.4-and-add-it-to-multissl.patch \ | ||
| 33 | " | ||
| 34 | |||
| 35 | SRC_URI:append:class-native = " \ | ||
| 36 | file://0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch \ | ||
| 37 | " | ||
| 38 | |||
| 39 | SRC_URI[sha256sum] = "40f868bcbdeb8149a3149580bb9bfd407b3321cd48f0be631af955ac92c0e041" | ||
| 40 | |||
| 41 | # exclude pre-releases for both python 2.x and 3.x | ||
| 42 | UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar" | ||
| 43 | |||
| 44 | CVE_PRODUCT = "python cpython" | ||
| 45 | |||
| 46 | CVE_STATUS[CVE-2007-4559] = "disputed: Upstream consider this expected behaviour" | ||
| 47 | CVE_STATUS[CVE-2019-18348] = "not-applicable-config: This is not exploitable when glibc has CVE-2016-10739 fixed" | ||
| 48 | CVE_STATUS[CVE-2020-15523] = "not-applicable-platform: Issue only applies on Windows" | ||
| 49 | CVE_STATUS[CVE-2022-26488] = "not-applicable-platform: Issue only applies on Windows" | ||
| 50 | # The module will be removed in the future and flaws documented. | ||
| 51 | CVE_STATUS[CVE-2015-20107] = "upstream-wontfix: The mailcap module is insecure by design, so this can't be fixed in a meaningful way" | ||
| 52 | CVE_STATUS[CVE-2023-36632] = "disputed: Not an issue, in fact expected behaviour" | ||
| 53 | |||
| 54 | PYTHON_MAJMIN = "3.13" | ||
| 55 | |||
| 56 | S = "${WORKDIR}/Python-${PV}" | ||
| 57 | |||
| 58 | BBCLASSEXTEND = "native nativesdk" | ||
| 59 | |||
| 60 | inherit autotools pkgconfig qemu ptest multilib_header update-alternatives | ||
| 61 | |||
| 62 | MULTILIB_SUFFIX = "${@d.getVar('base_libdir',1).split('/')[-1]}" | ||
| 63 | |||
| 64 | ALTERNATIVE:${PN}-dev = "python3-config" | ||
| 65 | ALTERNATIVE_LINK_NAME[python3-config] = "${bindir}/python${PYTHON_MAJMIN}-config" | ||
| 66 | ALTERNATIVE_TARGET[python3-config] = "${bindir}/python${PYTHON_MAJMIN}-config-${MULTILIB_SUFFIX}" | ||
| 67 | |||
| 68 | |||
| 69 | DEPENDS = "\ | ||
| 70 | autoconf-archive-native \ | ||
| 71 | bzip2 \ | ||
| 72 | bzip2-replacement-native \ | ||
| 73 | expat \ | ||
| 74 | libffi \ | ||
| 75 | libnsl2 \ | ||
| 76 | libtirpc \ | ||
| 77 | ncurses \ | ||
| 78 | openssl \ | ||
| 79 | sqlite3 \ | ||
| 80 | util-linux-libuuid \ | ||
| 81 | virtual/crypt \ | ||
| 82 | virtual/libintl \ | ||
| 83 | xz \ | ||
| 84 | zlib \ | ||
| 85 | " | ||
| 86 | |||
| 87 | DEPENDS:append:class-target = " python3-native" | ||
| 88 | DEPENDS:append:class-nativesdk = " python3-native" | ||
| 89 | |||
| 90 | EXTRA_OECONF = " --without-ensurepip --enable-shared --with-platlibdir=${baselib} --with-system-expat" | ||
| 91 | EXTRA_OECONF:append:class-native = " --bindir=${bindir}/${PN}" | ||
| 92 | EXTRA_OECONF:append:class-target = " --with-build-python=nativepython3" | ||
| 93 | EXTRA_OECONF:append:class-nativesdk = " --with-build-python=nativepython3" | ||
| 94 | |||
| 95 | export CROSSPYTHONPATH = "${STAGING_LIBDIR_NATIVE}/python${PYTHON_MAJMIN}/lib-dynload/" | ||
| 96 | |||
| 97 | EXTRANATIVEPATH += "python3-native" | ||
| 98 | |||
| 99 | # LTO will be enabled via packageconfig depending upong distro features | ||
| 100 | LTO:class-target = "" | ||
| 101 | |||
| 102 | CACHED_CONFIGUREVARS = " \ | ||
| 103 | ac_cv_file__dev_ptmx=yes \ | ||
| 104 | ac_cv_file__dev_ptc=no \ | ||
| 105 | ac_cv_working_tzset=yes \ | ||
| 106 | " | ||
| 107 | CACHED_CONFIGUREVARS:append:class-target = " \ | ||
| 108 | ac_cv_libatomic_needed=yes \ | ||
| 109 | " | ||
| 110 | |||
| 111 | # set thread stack size to 2MB on musl for interpreter and stdlib C extensions | ||
| 112 | # so it does not run into stack limits due to musl's small thread stack | ||
| 113 | # This is only needed to build interpreter and not the subsequent modules | ||
| 114 | # Thats why CFLAGS_NODIST is modified instead of CFLAGS | ||
| 115 | CACHED_CONFIGUREVARS:append:libc-musl = "\ | ||
| 116 | CFLAGS_NODIST='${CFLAGS} -DTHREAD_STACK_SIZE=0x200000' \ | ||
| 117 | " | ||
| 118 | |||
| 119 | # PGO currently causes builds to not be reproducible so disable by default, see YOCTO #13407 | ||
| 120 | PACKAGECONFIG ??= "editline gdbm ${@bb.utils.filter('DISTRO_FEATURES', 'lto', d)}" | ||
| 121 | PACKAGECONFIG[readline] = "--with-readline=readline,,readline,,,editline" | ||
| 122 | PACKAGECONFIG[editline] = "--with-readline=editline,,libedit,,,readline" | ||
| 123 | # Use profile guided optimisation by running PyBench inside qemu-user | ||
| 124 | PACKAGECONFIG[pgo] = "--enable-optimizations,,qemu-native" | ||
| 125 | PACKAGECONFIG[tk] = ",,tk" | ||
| 126 | PACKAGECONFIG[tcl] = ",,tcl" | ||
| 127 | PACKAGECONFIG[gdbm] = ",,gdbm" | ||
| 128 | PACKAGECONFIG[lto] = "--with-lto,--without-lto" | ||
| 129 | PACKAGECONFIG[staticlibpython] = "--with-static-libpython,--without-static-libpython" | ||
| 130 | |||
| 131 | do_configure:prepend () { | ||
| 132 | mkdir -p ${B}/Modules | ||
| 133 | cat > ${B}/Modules/Setup.local << EOF | ||
| 134 | *disabled* | ||
| 135 | ${@bb.utils.contains('PACKAGECONFIG', 'gdbm', '', '_gdbm _dbm', d)} | ||
| 136 | ${@bb.utils.contains_any('PACKAGECONFIG', 'readline editline', '', 'readline', d)} | ||
| 137 | ${@bb.utils.contains('PACKAGECONFIG', 'tk', '', '_tkinter', d)} | ||
| 138 | EOF | ||
| 139 | } | ||
| 140 | |||
| 141 | CPPFLAGS += "-I${STAGING_INCDIR}/ncursesw -I${STAGING_INCDIR}/uuid" | ||
| 142 | |||
| 143 | # COMPILEALL_OPTS= ensures that .pyc are not compiled in parallel | ||
| 144 | # This was found to lock up builds, break reproducibility, and produce strange file ownership | ||
| 145 | # races. | ||
| 146 | # | ||
| 147 | # The upstream commit introducing the change was: | ||
| 148 | # https://github.com/python/cpython/commit/1a2dd82f56bd813aacc570e172cefe55a8a41504 | ||
| 149 | # | ||
| 150 | # The build lock up issue is reported here: | ||
| 151 | # https://bugs.python.org/issue45945 | ||
| 152 | # | ||
| 153 | # The repro failures are documented here: | ||
| 154 | # https://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20211130-yr_o1a8d/packages/diff-html/ | ||
| 155 | |||
| 156 | EXTRA_OEMAKE = '\ | ||
| 157 | STAGING_LIBDIR=${STAGING_LIBDIR} \ | ||
| 158 | STAGING_INCDIR=${STAGING_INCDIR} \ | ||
| 159 | LIB=${baselib} \ | ||
| 160 | COMPILEALL_OPTS= \ | ||
| 161 | ' | ||
| 162 | |||
| 163 | # Generate a Profile Guided Optimisation wrapper script that uses qemu-user for | ||
| 164 | # all cross builds. | ||
| 165 | write_pgo_wrapper:class-native = ":" | ||
| 166 | write_pgo_wrapper() { | ||
| 167 | if ${@bb.utils.contains('PACKAGECONFIG', 'pgo', 'true', 'false', d)}; then | ||
| 168 | cat >pgo-wrapper <<EOF | ||
| 169 | #!/bin/sh | ||
| 170 | cd ${B} | ||
| 171 | ${@qemu_wrapper_cmdline(d, '${STAGING_DIR_TARGET}', ['${B}', '${STAGING_DIR_TARGET}/${base_libdir}'])} "\$@" | ||
| 172 | EOF | ||
| 173 | chmod +x pgo-wrapper | ||
| 174 | fi | ||
| 175 | } | ||
| 176 | |||
| 177 | do_compile:prepend() { | ||
| 178 | write_pgo_wrapper | ||
| 179 | } | ||
| 180 | |||
| 181 | do_install:prepend() { | ||
| 182 | ${UNPACKDIR}/check_build_completeness.py ${T}/log.do_compile | ||
| 183 | } | ||
| 184 | |||
| 185 | do_install:append:class-target() { | ||
| 186 | oe_multilib_header python${PYTHON_MAJMIN}/pyconfig.h | ||
| 187 | } | ||
| 188 | |||
| 189 | do_install:append:class-native() { | ||
| 190 | # Make sure we use /usr/bin/env python | ||
| 191 | for PYTHSCRIPT in `grep -rIl ${bindir}/${PN}/python ${D}${bindir}/${PN}`; do | ||
| 192 | sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT | ||
| 193 | done | ||
| 194 | # Add a symlink to the native Python so that scripts can just invoke | ||
| 195 | # "nativepython" and get the right one without needing absolute paths | ||
| 196 | # (these often end up too long for the #! parser in the kernel as the | ||
| 197 | # buffer is 128 bytes long). | ||
| 198 | ln -s python3-native/python3 ${D}${bindir}/nativepython3 | ||
| 199 | |||
| 200 | # Remove the opt-1.pyc and opt-2.pyc files. There are over 3,000 of them | ||
| 201 | # and the overhead in each recipe-sysroot-native isn't worth it, particularly | ||
| 202 | # when they're only used for python called with -O or -OO. | ||
| 203 | #find ${D} -name *opt-*.pyc -delete | ||
| 204 | # Remove all pyc files. There are a ton of them and it is probably faster to let | ||
| 205 | # python create the ones it wants at runtime rather than manage in the sstate | ||
| 206 | # tarballs and sysroot creation. | ||
| 207 | find ${D} -name *.pyc -delete | ||
| 208 | |||
| 209 | # Nothing should be looking into ${B} for python3-native | ||
| 210 | sed -i -e 's:${B}:/build/path/unavailable/:g' \ | ||
| 211 | ${D}/${libdir}/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}${PYTHON_ABI}*/Makefile | ||
| 212 | |||
| 213 | # disable the lookup in user's site-packages globally | ||
| 214 | sed -i 's#ENABLE_USER_SITE = None#ENABLE_USER_SITE = False#' ${D}${libdir}/python${PYTHON_MAJMIN}/site.py | ||
| 215 | |||
| 216 | # python3-config needs to be in /usr/bin and not in a subdir of it to work properly | ||
| 217 | mv ${D}/${bindir}/${PN}/python*config ${D}/${bindir}/ | ||
| 218 | } | ||
| 219 | |||
| 220 | do_install:append() { | ||
| 221 | for c in ${D}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py; do | ||
| 222 | python3 ${UNPACKDIR}/reformat_sysconfig.py $c | ||
| 223 | done | ||
| 224 | rm -f ${D}${libdir}/python${PYTHON_MAJMIN}/__pycache__/_sysconfigdata*.cpython* | ||
| 225 | |||
| 226 | mkdir -p ${D}${libdir}/python-sysconfigdata | ||
| 227 | sysconfigfile=`find ${D} -name _sysconfig*.py` | ||
| 228 | sed -i \ | ||
| 229 | -e "s,^ 'LIBDIR'.*, 'LIBDIR': '${STAGING_LIBDIR}'\,,g" \ | ||
| 230 | -e "s,^ 'INCLUDEDIR'.*, 'INCLUDEDIR': '${STAGING_INCDIR}'\,,g" \ | ||
| 231 | -e "s,^ 'CONFINCLUDEDIR'.*, 'CONFINCLUDEDIR': '${STAGING_INCDIR}'\,,g" \ | ||
| 232 | -e "s,^ 'INCLUDEPY'.*, 'INCLUDEPY': '${STAGING_INCDIR}/python${PYTHON_MAJMIN}'\,,g" \ | ||
| 233 | -e "s,^ 'CONFINCLUDEPY'.*, 'CONFINCLUDEPY': '${STAGING_INCDIR}/python${PYTHON_MAJMIN}'\,,g" \ | ||
| 234 | -e "s,${B},/build/path/unavailable/,g" \ | ||
| 235 | $sysconfigfile | ||
| 236 | cp $sysconfigfile ${D}${libdir}/python-sysconfigdata/_sysconfigdata.py | ||
| 237 | |||
| 238 | # Remove the opt-1.pyc and opt-2.pyc files. They effectively waste space on embedded | ||
| 239 | # style targets as they're only used when python is called with the -O or -OO options | ||
| 240 | # which is rare. | ||
| 241 | find ${D} -name *opt-*.pyc -delete | ||
| 242 | } | ||
| 243 | |||
| 244 | do_install:append:class-nativesdk () { | ||
| 245 | # Make sure we use /usr/bin/env python | ||
| 246 | for PYTHSCRIPT in `grep -rIl ${bindir}/python ${D}${bindir}`; do | ||
| 247 | sed -i -e '1s|^#!.*|#!/usr/bin/env python3|' $PYTHSCRIPT | ||
| 248 | done | ||
| 249 | create_wrapper ${D}${bindir}/python${PYTHON_MAJMIN} TERMINFO_DIRS='${sysconfdir}/terminfo:/etc/terminfo:/usr/share/terminfo:/usr/share/misc/terminfo:/lib/terminfo' PYTHONNOUSERSITE='1' | ||
| 250 | } | ||
| 251 | |||
| 252 | do_install_ptest:append:class-target:libc-musl () { | ||
| 253 | sed -i -e 's|SKIPPED_TESTS=|SKIPPED_TESTS="-x test__locale -x test_c_locale_coercion -x test_locale -x test_os test_re -x test__xxsubinterpreters -x test_threading --ignore test.test_strptime.StrptimeTests.test_date_locale2"|' ${D}${PTEST_PATH}/run-ptest | ||
| 254 | } | ||
| 255 | |||
| 256 | SYSROOT_PREPROCESS_FUNCS:append:class-target = " provide_target_config_script" | ||
| 257 | SYSROOT_PREPROCESS_FUNCS:append:class-nativesdk = " provide_target_config_script" | ||
| 258 | |||
| 259 | # This is installed into /usr/python-target-config/ and not /usr/bin | ||
| 260 | # because adding target sysroot's /usr/bin/ to PATH has unwanted side effects | ||
| 261 | # in components erroneously picking up other target executables from it | ||
| 262 | provide_target_config_script() { | ||
| 263 | install -d ${SYSROOT_DESTDIR}${prefix}/python-target-config/ | ||
| 264 | install ${D}/${bindir}/python3-config ${SYSROOT_DESTDIR}/${prefix}/python-target-config/ | ||
| 265 | install ${D}/${bindir}/python${PYTHON_MAJMIN}-config ${SYSROOT_DESTDIR}/${prefix}/python-target-config/ | ||
| 266 | } | ||
| 267 | SYSROOT_DIRS += "${prefix}/python-target-config/" | ||
| 268 | |||
| 269 | SSTATE_SCAN_FILES += "Makefile _sysconfigdata.py" | ||
| 270 | SSTATE_HASHEQUIV_FILEMAP = " \ | ||
| 271 | populate_sysroot:*/lib*/python3*/_sysconfigdata*.py:${TMPDIR} \ | ||
| 272 | populate_sysroot:*/lib*/python3*/_sysconfigdata*.py:${COREBASE} \ | ||
| 273 | populate_sysroot:*/lib*/python3*/config-*/Makefile:${TMPDIR} \ | ||
| 274 | populate_sysroot:*/lib*/python3*/config-*/Makefile:${COREBASE} \ | ||
| 275 | populate_sysroot:*/lib*/python-sysconfigdata/_sysconfigdata.py:${TMPDIR} \ | ||
| 276 | populate_sysroot:*/lib*/python-sysconfigdata/_sysconfigdata.py:${COREBASE} \ | ||
| 277 | " | ||
| 278 | PACKAGE_PREPROCESS_FUNCS += "py_package_preprocess" | ||
| 279 | |||
| 280 | py_package_preprocess () { | ||
| 281 | # Remove references to buildmachine paths in target Makefile and _sysconfigdata | ||
| 282 | sed -i -e 's:--sysroot=${STAGING_DIR_TARGET}::g' -e s:'--with-libtool-sysroot=${STAGING_DIR_TARGET}'::g \ | ||
| 283 | -e 's|${DEBUG_PREFIX_MAP}||g' \ | ||
| 284 | -e 's:${HOSTTOOLS_DIR}/::g' \ | ||
| 285 | -e 's:${RECIPE_SYSROOT_NATIVE}::g' \ | ||
| 286 | -e 's:${RECIPE_SYSROOT}::g' \ | ||
| 287 | -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \ | ||
| 288 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}${PYTHON_ABI}*/Makefile \ | ||
| 289 | ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py \ | ||
| 290 | ${PKGD}/${bindir}/python${PYTHON_MAJMIN}-config | ||
| 291 | |||
| 292 | # Reformat _sysconfigdata after modifying it so that it remains | ||
| 293 | # reproducible | ||
| 294 | for c in ${PKGD}/${libdir}/python${PYTHON_MAJMIN}/_sysconfigdata*.py; do | ||
| 295 | python3 ${UNPACKDIR}/reformat_sysconfig.py $c | ||
| 296 | done | ||
| 297 | |||
| 298 | # Recompile _sysconfigdata after modifying it | ||
| 299 | cd ${PKGD} | ||
| 300 | sysconfigfile=`find . -name _sysconfigdata_*.py` | ||
| 301 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 \ | ||
| 302 | -c "from py_compile import compile; compile('$sysconfigfile')" | ||
| 303 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 \ | ||
| 304 | -c "from py_compile import compile; compile('$sysconfigfile', optimize=1)" | ||
| 305 | ${STAGING_BINDIR_NATIVE}/python3-native/python3 \ | ||
| 306 | -c "from py_compile import compile; compile('$sysconfigfile', optimize=2)" | ||
| 307 | cd - | ||
| 308 | |||
| 309 | mv ${PKGD}/${bindir}/python${PYTHON_MAJMIN}-config ${PKGD}/${bindir}/python${PYTHON_MAJMIN}-config-${MULTILIB_SUFFIX} | ||
| 310 | |||
| 311 | #Remove the unneeded copy of target sysconfig data | ||
| 312 | rm -rf ${PKGD}/${libdir}/python-sysconfigdata | ||
| 313 | } | ||
| 314 | |||
| 315 | # We want bytecode precompiled .py files (.pyc's) by default | ||
| 316 | # but the user may set it on their own conf | ||
| 317 | INCLUDE_PYCS ?= "1" | ||
| 318 | |||
| 319 | python(){ | ||
| 320 | import collections, json | ||
| 321 | |||
| 322 | filename = os.path.join(d.getVar('THISDIR'), 'python3', 'python3-manifest.json') | ||
| 323 | # This python changes the datastore based on the contents of a file, so mark | ||
| 324 | # that dependency. | ||
| 325 | bb.parse.mark_dependency(d, filename) | ||
| 326 | |||
| 327 | with open(filename) as manifest_file: | ||
| 328 | manifest_str = manifest_file.read() | ||
| 329 | json_start = manifest_str.find('# EOC') + 6 | ||
| 330 | manifest_file.seek(json_start) | ||
| 331 | manifest_str = manifest_file.read() | ||
| 332 | python_manifest = json.loads(manifest_str, object_pairs_hook=collections.OrderedDict) | ||
| 333 | |||
| 334 | # First set RPROVIDES for -native case | ||
| 335 | # Hardcoded since it cant be python3-native-foo, should be python3-foo-native | ||
| 336 | pn = 'python3' | ||
| 337 | rprovides = (d.getVar('RPROVIDES') or "").split() | ||
| 338 | |||
| 339 | # ${PN}-misc-native is not in the manifest | ||
| 340 | rprovides.append(pn + '-misc-native') | ||
| 341 | |||
| 342 | for key in python_manifest: | ||
| 343 | pypackage = pn + '-' + key + '-native' | ||
| 344 | if pypackage not in rprovides: | ||
| 345 | rprovides.append(pypackage) | ||
| 346 | |||
| 347 | d.setVar('RPROVIDES:class-native', ' '.join(rprovides)) | ||
| 348 | |||
| 349 | # Then work on the target | ||
| 350 | include_pycs = d.getVar('INCLUDE_PYCS') | ||
| 351 | |||
| 352 | packages = d.getVar('PACKAGES').split() | ||
| 353 | pn = d.getVar('PN') | ||
| 354 | |||
| 355 | newpackages=[] | ||
| 356 | for key in python_manifest: | ||
| 357 | pypackage = pn + '-' + key | ||
| 358 | |||
| 359 | if pypackage not in packages: | ||
| 360 | # We need to prepend, otherwise python-misc gets everything | ||
| 361 | # so we use a new variable | ||
| 362 | newpackages.append(pypackage) | ||
| 363 | |||
| 364 | # "Build" python's manifest FILES, RDEPENDS and SUMMARY | ||
| 365 | for value in python_manifest[key]['files']: | ||
| 366 | d.appendVar('FILES:' + pypackage, ' ' + value) | ||
| 367 | |||
| 368 | # Add cached files | ||
| 369 | if include_pycs == '1': | ||
| 370 | for value in python_manifest[key]['cached']: | ||
| 371 | d.appendVar('FILES:' + pypackage, ' ' + value) | ||
| 372 | |||
| 373 | for value in python_manifest[key]['rdepends']: | ||
| 374 | # Make it work with or without $PN | ||
| 375 | if '${PN}' in value: | ||
| 376 | value=value.split('-', 1)[1] | ||
| 377 | d.appendVar('RDEPENDS:' + pypackage, ' ' + pn + '-' + value) | ||
| 378 | |||
| 379 | for value in python_manifest[key].get('rrecommends', ()): | ||
| 380 | if '${PN}' in value: | ||
| 381 | value=value.split('-', 1)[1] | ||
| 382 | d.appendVar('RRECOMMENDS:' + pypackage, ' ' + pn + '-' + value) | ||
| 383 | |||
| 384 | d.setVar('SUMMARY:' + pypackage, python_manifest[key]['summary']) | ||
| 385 | |||
| 386 | # Prepending so to avoid python-misc getting everything | ||
| 387 | packages = newpackages + packages | ||
| 388 | d.setVar('PACKAGES', ' '.join(packages)) | ||
| 389 | d.setVar('ALLOW_EMPTY:${PN}-fcntl', '1') | ||
| 390 | d.setVar('ALLOW_EMPTY:${PN}-modules', '1') | ||
| 391 | d.setVar('ALLOW_EMPTY:${PN}-pkgutil', '1') | ||
| 392 | |||
| 393 | if "pgo" in d.getVar("PACKAGECONFIG").split() and not bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', True, False, d): | ||
| 394 | bb.fatal("pgo cannot be enabled as there is no qemu-usermode support for this architecture/machine") | ||
| 395 | } | ||
| 396 | |||
| 397 | # Files needed to create a new manifest | ||
| 398 | |||
| 399 | do_create_manifest() { | ||
| 400 | # This task should be run with every new release of Python. | ||
| 401 | # We must ensure that PACKAGECONFIG enables everything when creating | ||
| 402 | # a new manifest, this is to base our new manifest on a complete | ||
| 403 | # native python build, containing all dependencies, otherwise the task | ||
| 404 | # wont be able to find the required files. | ||
| 405 | # e.g. BerkeleyDB is an optional build dependency so it may or may not | ||
| 406 | # be present, we must ensure it is. | ||
| 407 | |||
| 408 | cp ${UNPACKDIR}/create_manifest3.py ${WORKDIR} | ||
| 409 | cp ${UNPACKDIR}/python3-manifest.json ${WORKDIR} | ||
| 410 | cp ${UNPACKDIR}/get_module_deps3.py ${WORKDIR} | ||
| 411 | cd ${WORKDIR} | ||
| 412 | # This needs to be executed by python-native and NOT by HOST's python | ||
| 413 | nativepython3 create_manifest3.py ${PYTHON_MAJMIN} | ||
| 414 | cp python3-manifest.json.new ${THISDIR}/python3/python3-manifest.json | ||
| 415 | } | ||
| 416 | |||
| 417 | # bitbake python -c create_manifest | ||
| 418 | # Make sure we have native python ready when we create a new manifest | ||
| 419 | addtask do_create_manifest after do_patch do_prepare_recipe_sysroot | ||
| 420 | |||
| 421 | # manual dependency additions | ||
| 422 | RRECOMMENDS:${PN}-core:append:class-nativesdk = " nativesdk-python3-modules" | ||
| 423 | RRECOMMENDS:${PN}-crypt:append:class-target = " ${MLPREFIX}openssl ${MLPREFIX}ca-certificates" | ||
| 424 | RRECOMMENDS:${PN}-crypt:append:class-nativesdk = " ${MLPREFIX}openssl ${MLPREFIX}ca-certificates" | ||
| 425 | |||
| 426 | # For historical reasons PN is empty and provided by python3-modules | ||
| 427 | FILES:${PN} = "" | ||
| 428 | RPROVIDES:${PN}-modules = "${PN}" | ||
| 429 | |||
| 430 | FILES:${PN}-pydoc += "${bindir}/pydoc${PYTHON_MAJMIN} ${bindir}/pydoc3" | ||
| 431 | FILES:${PN}-idle += "${bindir}/idle3 ${bindir}/idle${PYTHON_MAJMIN}" | ||
| 432 | FILES:${PN}-tkinter += "${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_tkinter.*.so" | ||
| 433 | |||
| 434 | # provide python-pyvenv from python3-venv | ||
| 435 | RPROVIDES:${PN}-venv += "${MLPREFIX}python3-pyvenv" | ||
| 436 | |||
| 437 | # package libpython3 | ||
| 438 | PACKAGES =+ "libpython3 libpython3-staticdev" | ||
| 439 | FILES:libpython3 = "${libdir}/libpython*.so.*" | ||
| 440 | FILES:libpython3-staticdev += "${libdir}/python${PYTHON_MAJMIN}/config-${PYTHON_MAJMIN}-*/libpython${PYTHON_MAJMIN}.a" | ||
| 441 | INSANE_SKIP:${PN}-dev += "dev-elf" | ||
| 442 | INSANE_SKIP:${PN}-ptest = "dev-deps" | ||
| 443 | |||
| 444 | # catch all the rest (unsorted) | ||
| 445 | PACKAGES += "${PN}-misc" | ||
| 446 | RDEPENDS:${PN}-misc += "\ | ||
| 447 | ${PN}-audio \ | ||
| 448 | ${PN}-codecs \ | ||
| 449 | ${PN}-core \ | ||
| 450 | ${PN}-email \ | ||
| 451 | ${PN}-numbers \ | ||
| 452 | ${PN}-pickle \ | ||
| 453 | ${PN}-pydoc \ | ||
| 454 | " | ||
| 455 | RDEPENDS:${PN}-modules:append:class-target = " ${MLPREFIX}python3-misc" | ||
| 456 | RDEPENDS:${PN}-modules:append:class-nativesdk = " ${MLPREFIX}python3-misc" | ||
| 457 | RDEPENDS:${PN}-modules:append:class-target = " ${@bb.utils.contains('PACKAGECONFIG', 'gdbm', '${MLPREFIX}python3-gdbm', '', d)}" | ||
| 458 | FILES:${PN}-misc = "${libdir}/python${PYTHON_MAJMIN} ${libdir}/python${PYTHON_MAJMIN}/lib-dynload" | ||
| 459 | |||
| 460 | # catch manpage | ||
| 461 | PACKAGES += "${PN}-man" | ||
| 462 | FILES:${PN}-man = "${datadir}/man" | ||
| 463 | |||
| 464 | # See https://bugs.python.org/issue18748 and https://bugs.python.org/issue37395 | ||
| 465 | RDEPENDS:libpython3:append:libc-glibc = " libgcc" | ||
| 466 | RRECOMMENDS:${PN}-ctypes:append:libc-glibc = " ${MLPREFIX}ldconfig" | ||
| 467 | RDEPENDS:${PN}-ptest = "\ | ||
| 468 | ${PN}-dev \ | ||
| 469 | ${PN}-modules \ | ||
| 470 | ${PN}-tests \ | ||
| 471 | ${PN}-zipapp \ | ||
| 472 | binutils \ | ||
| 473 | bzip2 \ | ||
| 474 | coreutils \ | ||
| 475 | gcc \ | ||
| 476 | gcc-symlinks \ | ||
| 477 | g++ \ | ||
| 478 | libgcc \ | ||
| 479 | locale-base-fr-fr \ | ||
| 480 | locale-base-en-us \ | ||
| 481 | locale-base-de-de \ | ||
| 482 | sed \ | ||
| 483 | tzdata \ | ||
| 484 | unzip \ | ||
| 485 | " | ||
| 486 | RDEPENDS:${PN}-ptest:append:libc-glibc = " locale-base-tr-tr" | ||
| 487 | RDEPENDS:${PN}-tkinter += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${MLPREFIX}tk ${MLPREFIX}tk-lib', '', d)}" | ||
| 488 | RDEPENDS:${PN}-idle += "${@bb.utils.contains('PACKAGECONFIG', 'tk', '${PN}-tkinter ${MLPREFIX}tcl', '', d)}" | ||
| 489 | DEV_PKG_DEPENDENCY = "" | ||
| 490 | RDEPENDS:${PN}-pydoc += "${PN}-io" | ||
| 491 | |||
| 492 | RDEPENDS:${PN}-tests:append:class-target = " ${MLPREFIX}bash" | ||
| 493 | RDEPENDS:${PN}-tests:append:class-nativesdk = " ${MLPREFIX}bash" | ||
| 494 | |||
| 495 | # Python's tests contain large numbers of files we don't need in the recipe sysroots | ||
| 496 | SYSROOT_PREPROCESS_FUNCS += " py3_sysroot_cleanup" | ||
| 497 | py3_sysroot_cleanup () { | ||
| 498 | rm -rf ${SYSROOT_DESTDIR}${libdir}/python${PYTHON_MAJMIN}/test | ||
| 499 | } | ||
