diff options
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch | 10 | ||||
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch | 2 | ||||
| -rw-r--r-- | meta/recipes-devtools/python/python3-setuptools_78.1.0.bb (renamed from meta/recipes-devtools/python/python3-setuptools_76.0.0.bb) | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch b/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch index e2fd53e039..8ccffeef1d 100644 --- a/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch +++ b/meta/recipes-devtools/python/python3-setuptools/0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From 801b64480490e99c5eb062401149d1f1a945e8f8 Mon Sep 17 00:00:00 2001 | 1 | From c3d2c40e10f24724ab2e3d5f236823f3076c7aec Mon Sep 17 00:00:00 2001 |
| 2 | From: Alexander Kanavin <alex@linutronix.de> | 2 | From: Alexander Kanavin <alex@linutronix.de> |
| 3 | Date: Wed, 11 May 2022 21:41:14 +0200 | 3 | Date: Wed, 11 May 2022 21:41:14 +0200 |
| 4 | Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the | 4 | Subject: [PATCH] _distutils/sysconfig.py: make it possible to substite the |
| @@ -20,10 +20,10 @@ Signed-off-by: Alexander Kanavin <alex@linutronix.de> | |||
| 20 | 1 file changed, 10 insertions(+), 2 deletions(-) | 20 | 1 file changed, 10 insertions(+), 2 deletions(-) |
| 21 | 21 | ||
| 22 | diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py | 22 | diff --git a/setuptools/_distutils/sysconfig.py b/setuptools/_distutils/sysconfig.py |
| 23 | index ef3def8..577d320 100644 | 23 | index e5facae..0932f6f 100644 |
| 24 | --- a/setuptools/_distutils/sysconfig.py | 24 | --- a/setuptools/_distutils/sysconfig.py |
| 25 | +++ b/setuptools/_distutils/sysconfig.py | 25 | +++ b/setuptools/_distutils/sysconfig.py |
| 26 | @@ -122,6 +122,8 @@ def get_python_inc(plat_specific=False, prefix=None): | 26 | @@ -134,6 +134,8 @@ def get_python_inc(plat_specific: bool = False, prefix: str | None = None) -> st |
| 27 | sys.base_exec_prefix -- i.e., ignore 'plat_specific'. | 27 | sys.base_exec_prefix -- i.e., ignore 'plat_specific'. |
| 28 | """ | 28 | """ |
| 29 | default_prefix = BASE_EXEC_PREFIX if plat_specific else BASE_PREFIX | 29 | default_prefix = BASE_EXEC_PREFIX if plat_specific else BASE_PREFIX |
| @@ -32,7 +32,7 @@ index ef3def8..577d320 100644 | |||
| 32 | resolved_prefix = prefix if prefix is not None else default_prefix | 32 | resolved_prefix = prefix if prefix is not None else default_prefix |
| 33 | # MinGW imitates posix like layout, but os.name != posix | 33 | # MinGW imitates posix like layout, but os.name != posix |
| 34 | os_name = "posix" if is_mingw() else os.name | 34 | os_name = "posix" if is_mingw() else os.name |
| 35 | @@ -242,7 +244,13 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None): | 35 | @@ -256,7 +258,13 @@ def get_python_lib( |
| 36 | 36 | ||
| 37 | early_prefix = prefix | 37 | early_prefix = prefix |
| 38 | 38 | ||
| @@ -47,7 +47,7 @@ index ef3def8..577d320 100644 | |||
| 47 | if standard_lib: | 47 | if standard_lib: |
| 48 | prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX | 48 | prefix = plat_specific and BASE_EXEC_PREFIX or BASE_PREFIX |
| 49 | else: | 49 | else: |
| 50 | @@ -257,7 +265,7 @@ def get_python_lib(plat_specific=False, standard_lib=False, prefix=None): | 50 | @@ -271,7 +279,7 @@ def get_python_lib( |
| 51 | # Pure Python | 51 | # Pure Python |
| 52 | libdir = "lib" | 52 | libdir = "lib" |
| 53 | implementation = 'pypy' if IS_PYPY else 'python' | 53 | implementation = 'pypy' if IS_PYPY else 'python' |
diff --git a/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch b/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch index 0e75d0f62c..785a2192c3 100644 --- a/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch +++ b/meta/recipes-devtools/python/python3-setuptools/0001-conditionally-do-not-fetch-code-by-easy_install.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From a8bffb1a3d0273d049b93df18982edee7b0cc4ec Mon Sep 17 00:00:00 2001 | 1 | From 92363514224b0aeba065f83b868a15a2a03601ab Mon Sep 17 00:00:00 2001 |
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Tue, 17 Jul 2018 10:13:38 +0800 | 3 | Date: Tue, 17 Jul 2018 10:13:38 +0800 |
| 4 | Subject: [PATCH] conditionally do not fetch code by easy_install | 4 | Subject: [PATCH] conditionally do not fetch code by easy_install |
diff --git a/meta/recipes-devtools/python/python3-setuptools_76.0.0.bb b/meta/recipes-devtools/python/python3-setuptools_78.1.0.bb index 71c8eb1a1f..7455ec41af 100644 --- a/meta/recipes-devtools/python/python3-setuptools_76.0.0.bb +++ b/meta/recipes-devtools/python/python3-setuptools_78.1.0.bb | |||
| @@ -13,7 +13,7 @@ SRC_URI:append:class-native = " file://0001-conditionally-do-not-fetch-code-by-e | |||
| 13 | SRC_URI += " \ | 13 | SRC_URI += " \ |
| 14 | file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch" | 14 | file://0001-_distutils-sysconfig.py-make-it-possible-to-substite.patch" |
| 15 | 15 | ||
| 16 | SRC_URI[sha256sum] = "43b4ee60e10b0d0ee98ad11918e114c70701bc6051662a9a675a0496c1a158f4" | 16 | SRC_URI[sha256sum] = "18fd474d4a82a5f83dac888df697af65afa82dec7323d09c3e37d1f14288da54" |
| 17 | 17 | ||
| 18 | DEPENDS += "python3" | 18 | DEPENDS += "python3" |
| 19 | 19 | ||
