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