public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH] python3-attrs: upgrade 21.2.0 -> 21.4.0
@ 2022-01-03  6:36 Wang Mingyu
  2022-01-03  6:36 ` [OE-core] [PATCH] python3-setuptools: upgrade 59.5.0 -> 60.2.0 Wang Mingyu
  2022-01-03  6:36 ` [OE-core] [PATCH] python3-zipp: upgrade 3.6.0 -> 3.7.0 Wang Mingyu
  0 siblings, 2 replies; 3+ messages in thread
From: Wang Mingyu @ 2022-01-03  6:36 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

Changelog:
=========
Bugs fixed for this release (https://github.com/python-attrs/attrs/pull/####)
Fixed the test suite on PyPy3.8 where cloudpickle does not work. #892
Fixed coverage report for projects that use attrs and don't set a --source. #895, #896

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../python/{python3-attrs_21.2.0.bb => python3-attrs_21.4.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-attrs_21.2.0.bb => python3-attrs_21.4.0.bb} (82%)

diff --git a/meta/recipes-devtools/python/python3-attrs_21.2.0.bb b/meta/recipes-devtools/python/python3-attrs_21.4.0.bb
similarity index 82%
rename from meta/recipes-devtools/python/python3-attrs_21.2.0.bb
rename to meta/recipes-devtools/python/python3-attrs_21.4.0.bb
index d52237f267..d1dde29d37 100644
--- a/meta/recipes-devtools/python/python3-attrs_21.2.0.bb
+++ b/meta/recipes-devtools/python/python3-attrs_21.4.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.attrs.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff"
 
-SRC_URI[sha256sum] = "ef6aaac3ca6cd92904cdd0d83f629a15f18053ec84e6432106f7a4d04ae4f5fb"
+SRC_URI[sha256sum] = "626ba8234211db98e869df76230a137c4c40a12d72445c45d5f5b716f076e2fd"
 
 inherit pypi setuptools3
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [OE-core] [PATCH] python3-setuptools: upgrade 59.5.0 -> 60.2.0
  2022-01-03  6:36 [OE-core] [PATCH] python3-attrs: upgrade 21.2.0 -> 21.4.0 Wang Mingyu
@ 2022-01-03  6:36 ` Wang Mingyu
  2022-01-03  6:36 ` [OE-core] [PATCH] python3-zipp: upgrade 3.6.0 -> 3.7.0 Wang Mingyu
  1 sibling, 0 replies; 3+ messages in thread
From: Wang Mingyu @ 2022-01-03  6:36 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

refresh 0001-conditionally-do-not-fetch-code-by-easy_install.patch

Changes
------
 #2974: Setuptools now relies on the Python logging infrastructure to log
 messages. Instead of using distutils.log.*, use logging.getLogger(name).*.
 #2987: Sync with pypa/distutils@2def21c5d74fdd2fe7996ee4030ac145a9d751bd,
 including fix for missing get_versions attribute (#2969), more reliance
 on sysconfig from stdlib.

Misc
------
 #2962: Avoid attempting to use local distutils when the presiding version of
 Setuptools on the path doesn't have one.
 #2983: Restore 'add_shim' as the way to invoke the hook. Avoids compatibility
 issues between different versions of Setuptools with the distutils local
 implementation.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...01-conditionally-do-not-fetch-code-by-easy_install.patch | 6 +++---
 ...n3-setuptools_59.5.0.bb => python3-setuptools_60.2.0.bb} | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-devtools/python/{python3-setuptools_59.5.0.bb => python3-setuptools_60.2.0.bb} (94%)

diff --git a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
index 5e2ee454da..6efef9b36c 100644
--- a/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
+++ b/meta/recipes-devtools/python/files/0001-conditionally-do-not-fetch-code-by-easy_install.patch
@@ -1,4 +1,4 @@
-From da88c57fe03e4474ba20325edacf519e80c1d7a8 Mon Sep 17 00:00:00 2001
+From 8d9a601b5a5d572fef512d3addf8c4d7c50d012c Mon Sep 17 00:00:00 2001
 From: Hongxu Jia <hongxu.jia@windriver.com>
 Date: Tue, 17 Jul 2018 10:13:38 +0800
 Subject: [PATCH] conditionally do not fetch code by easy_install
@@ -15,10 +15,10 @@ Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
  1 file changed, 5 insertions(+)
 
 diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
-index fc848d0..c04a5de 100644
+index fb34d10..217fce1 100644
 --- a/setuptools/command/easy_install.py
 +++ b/setuptools/command/easy_install.py
-@@ -642,6 +642,11 @@ class easy_install(Command):
+@@ -649,6 +649,11 @@ class easy_install(Command):
              os.path.exists(tmpdir) and rmtree(tmpdir)
  
      def easy_install(self, spec, deps=False):
diff --git a/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb b/meta/recipes-devtools/python/python3-setuptools_60.2.0.bb
similarity index 94%
rename from meta/recipes-devtools/python/python3-setuptools_59.5.0.bb
rename to meta/recipes-devtools/python/python3-setuptools_60.2.0.bb
index 878fa08404..8748f91388 100644
--- a/meta/recipes-devtools/python/python3-setuptools_59.5.0.bb
+++ b/meta/recipes-devtools/python/python3-setuptools_60.2.0.bb
@@ -13,7 +13,7 @@ SRC_URI += "\
     file://0001-_distutils-sysconfig-append-STAGING_LIBDIR-python-sy.patch \
 "
 
-SRC_URI[sha256sum] = "d144f85102f999444d06f9c0e8c737fd0194f10f2f7e5fdb77573f6e2fa4fad0"
+SRC_URI[sha256sum] = "675fcebecb43c32eb930481abf907619137547f4336206e4d673180242e1a278"
 
 DEPENDS += "${PYTHON_PN}"
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [OE-core] [PATCH] python3-zipp: upgrade 3.6.0 -> 3.7.0
  2022-01-03  6:36 [OE-core] [PATCH] python3-attrs: upgrade 21.2.0 -> 21.4.0 Wang Mingyu
  2022-01-03  6:36 ` [OE-core] [PATCH] python3-setuptools: upgrade 59.5.0 -> 60.2.0 Wang Mingyu
@ 2022-01-03  6:36 ` Wang Mingyu
  1 sibling, 0 replies; 3+ messages in thread
From: Wang Mingyu @ 2022-01-03  6:36 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../python/{python3-zipp_3.6.0.bb => python3-zipp_3.7.0.bb}     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-zipp_3.6.0.bb => python3-zipp_3.7.0.bb} (84%)

diff --git a/meta/recipes-devtools/python/python3-zipp_3.6.0.bb b/meta/recipes-devtools/python/python3-zipp_3.7.0.bb
similarity index 84%
rename from meta/recipes-devtools/python/python3-zipp_3.6.0.bb
rename to meta/recipes-devtools/python/python3-zipp_3.7.0.bb
index c98bc7a3a4..9ce987c870 100644
--- a/meta/recipes-devtools/python/python3-zipp_3.6.0.bb
+++ b/meta/recipes-devtools/python/python3-zipp_3.7.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/jaraco/zipp"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
 
-SRC_URI[sha256sum] = "71c644c5369f4a6e07636f0aa966270449561fcea2e3d6747b8d23efaa9d7832"
+SRC_URI[sha256sum] = "9f50f446828eb9d45b267433fd3e9da8d801f614129124863f9c51ebceafb87d"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-03  6:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-03  6:36 [OE-core] [PATCH] python3-attrs: upgrade 21.2.0 -> 21.4.0 Wang Mingyu
2022-01-03  6:36 ` [OE-core] [PATCH] python3-setuptools: upgrade 59.5.0 -> 60.2.0 Wang Mingyu
2022-01-03  6:36 ` [OE-core] [PATCH] python3-zipp: upgrade 3.6.0 -> 3.7.0 Wang Mingyu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox