mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
python: update 3.11.5 -> 3.12.1
Drop distutils and smtpd modules from packaging, as both are gone in 3.12. Rebase: 0020-configure.ac-setup.py-do-not-add-a-curses-include-pa.patch (drop setup.py chunk as the file is gone) Drop patches: 0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch (setup.py gone, lib/termcap not mentioned anywhere else) 0001-Don-t-search-system-for-headers-libraries.patch (setup.py gone, usr/lib64 not mentioned anywhere else) 0001-Makefile-do-not-compile-.pyc-in-parallel.patch (replaced with COMPILEALL_OPTS= in EXTRA_OEMAKE) 0001-setup.py-Do-not-detect-multiarch-paths-when-cross-co.patch (setup.py gone, add_multiarch_paths not mentioned anywhere else) 0017-setup.py-do-not-report-missing-dependencies-for-disa.patch (has been superseded by Setup.local tweak in do_configure:prepend) 12-distutils-prefix-is-inside-staging-area.patch (distutils has been removed upstream, so this old, unplesant hack can be finally dropped) avoid_warning_about_tkinter.patch (setup.py gone, tkinter detection logic performed in configure.ac) (From OE-Core rev: 716d82352545d3667a658b69d65d6127678dd150) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
375ac472d8
commit
78e30d940d
@@ -201,17 +201,18 @@
|
||||
"compression": {
|
||||
"summary": "Python high-level compression support",
|
||||
"rdepends": [
|
||||
"core"
|
||||
"core",
|
||||
"shell"
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/gzip.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/tarfile.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/zipfile.py"
|
||||
"${libdir}/python${PYTHON_MAJMIN}/zipfile",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/zipfile/_path"
|
||||
],
|
||||
"cached": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/gzip.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/tarfile.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/zipfile.*.pyc"
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/tarfile.*.pyc"
|
||||
]
|
||||
},
|
||||
"core": {
|
||||
@@ -271,6 +272,7 @@
|
||||
"${libdir}/python${PYTHON_MAJMIN}/importlib/util.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/inspect.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/io.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/ipaddress.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/keyword.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/_struct.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/__pycache__/binascii.*.so",
|
||||
@@ -378,6 +380,7 @@
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/imp.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/inspect.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/io.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/ipaddress.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/keyword.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/linecache.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/locale.*.pyc",
|
||||
@@ -452,9 +455,8 @@
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_hashlib.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_md5.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha1.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha256.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha3.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha512.*.so"
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha2.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_sha3.*.so"
|
||||
],
|
||||
"cached": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/crypt.*.pyc",
|
||||
@@ -550,8 +552,7 @@
|
||||
"${libdir}/pkgconfig"
|
||||
],
|
||||
"rdepends": [
|
||||
"core",
|
||||
"distutils"
|
||||
"core"
|
||||
],
|
||||
"summary": "Python development package"
|
||||
},
|
||||
@@ -567,27 +568,6 @@
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/difflib.*.pyc"
|
||||
]
|
||||
},
|
||||
"distutils-windows": {
|
||||
"summary": "Python distribution utilities (Windows installer stubs)",
|
||||
"rdepends": [
|
||||
"core"
|
||||
],
|
||||
"files": [],
|
||||
"cached": []
|
||||
},
|
||||
"distutils": {
|
||||
"summary": "Python Distribution Utilities",
|
||||
"rdepends": [
|
||||
"compression",
|
||||
"core",
|
||||
"email",
|
||||
"stringold"
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/distutils"
|
||||
],
|
||||
"cached": []
|
||||
},
|
||||
"doctest": {
|
||||
"summary": "Python framework for running examples in docstrings",
|
||||
"rdepends": [
|
||||
@@ -630,24 +610,12 @@
|
||||
"ensurepip": {
|
||||
"summary": "Support for bootstrapping the pip installer",
|
||||
"rdepends": [
|
||||
"asyncio",
|
||||
"compile",
|
||||
"core",
|
||||
"ctypes",
|
||||
"image",
|
||||
"io",
|
||||
"mmap",
|
||||
"plistlib",
|
||||
"pprint",
|
||||
"unixadmin",
|
||||
"xmlrpc"
|
||||
"core"
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/ensurepip/"
|
||||
],
|
||||
"cached": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/ensurepip/_uninstall.*.pyc"
|
||||
]
|
||||
"cached": []
|
||||
},
|
||||
"fcntl": {
|
||||
"summary": "Python's fcntl interface",
|
||||
@@ -715,7 +683,6 @@
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/_pyio.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/ipaddress.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_socket.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/_ssl.*.so",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/lib-dynload/termios.*.so",
|
||||
@@ -726,7 +693,6 @@
|
||||
],
|
||||
"cached": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/_pyio.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/ipaddress.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/pipes.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/socket.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/ssl.*.pyc",
|
||||
@@ -836,7 +802,6 @@
|
||||
"db",
|
||||
"debugger",
|
||||
"difflib",
|
||||
"distutils",
|
||||
"doctest",
|
||||
"email",
|
||||
"ensurepip",
|
||||
@@ -863,15 +828,14 @@
|
||||
"pydoc",
|
||||
"resource",
|
||||
"shell",
|
||||
"smtpd",
|
||||
"sqlite3",
|
||||
"statistics",
|
||||
"stringold",
|
||||
"syslog",
|
||||
"terminal",
|
||||
"tomllib",
|
||||
"threading",
|
||||
"tkinter",
|
||||
"tomllib",
|
||||
"unittest",
|
||||
"unixadmin",
|
||||
"venv",
|
||||
@@ -879,9 +843,6 @@
|
||||
"xmlrpc",
|
||||
"zoneinfo"
|
||||
],
|
||||
"rrecommends": [
|
||||
"distutils-windows"
|
||||
],
|
||||
"summary": "All Python modules"
|
||||
},
|
||||
"multiprocessing": {
|
||||
@@ -1104,31 +1065,6 @@
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/shlex.*.pyc"
|
||||
]
|
||||
},
|
||||
"smtpd": {
|
||||
"summary": "Python Simple Mail Transport Daemon",
|
||||
"rdepends": [
|
||||
"core",
|
||||
"crypt",
|
||||
"datetime",
|
||||
"email",
|
||||
"io",
|
||||
"math",
|
||||
"mime",
|
||||
"netclient",
|
||||
"stringold"
|
||||
],
|
||||
"files": [
|
||||
"${bindir}/smtpd.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/asynchat.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/asyncore.py",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/smtpd.py"
|
||||
],
|
||||
"cached": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/asynchat.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/asyncore.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/__pycache__/smtpd.*.pyc"
|
||||
]
|
||||
},
|
||||
"sqlite3": {
|
||||
"summary": "Python Sqlite3 database support",
|
||||
"rdepends": [
|
||||
@@ -1223,18 +1159,12 @@
|
||||
"tomllib": {
|
||||
"summary": "Provides an interface for parsing TOML",
|
||||
"rdepends": [
|
||||
"core",
|
||||
"datetime",
|
||||
"stringold"
|
||||
"core"
|
||||
],
|
||||
"files": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/tomllib/"
|
||||
],
|
||||
"cached": [
|
||||
"${libdir}/python${PYTHON_MAJMIN}/tomllib/_re.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/tomllib/_types.*.pyc",
|
||||
"${libdir}/python${PYTHON_MAJMIN}/tomllib/_parser.*.pyc"
|
||||
]
|
||||
"cached": []
|
||||
},
|
||||
"turtle": {
|
||||
"summary": "Turtle graphics is a popular way for introducing programming to kids.",
|
||||
|
||||
Reference in New Issue
Block a user