From 7aeaa145586c18b8157522ec2297f9ec11ecda4b Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Fri, 3 Feb 2023 09:50:25 -0800 Subject: python3-poetry-core: upgrade 1.4.0 -> 1.5.0 * Drop deterministic.patch; merged https://github.com/python-poetry/poetry-core/pull/545 * Drop vendored pyparsing LICENSE; no longer vendored https://github.com/python-poetry/poetry-core/blob/main/CHANGELOG.md#150---2023-01-27 (From OE-Core rev: 32921155acf776c91ee2fb002660b419512f0932) Signed-off-by: Tim Orling Signed-off-by: Richard Purdie --- .../python/python3-poetry-core/deterministic.patch | 23 ---------------------- 1 file changed, 23 deletions(-) delete mode 100644 meta/recipes-devtools/python/python3-poetry-core/deterministic.patch (limited to 'meta/recipes-devtools/python/python3-poetry-core/deterministic.patch') diff --git a/meta/recipes-devtools/python/python3-poetry-core/deterministic.patch b/meta/recipes-devtools/python/python3-poetry-core/deterministic.patch deleted file mode 100644 index 402ee53094..0000000000 --- a/meta/recipes-devtools/python/python3-poetry-core/deterministic.patch +++ /dev/null @@ -1,23 +0,0 @@ -builders/wheel: Ensure dist-info is written determinisically - -glob() returns values in "on disk" order. To make the RECORD file -deterministic and consistent between builds we need to sort the -data before adding to the records list. - -Signed-off-by: Richard Purdie - -Upstream-Status: Submitted [https://github.com/python-poetry/poetry-core/pull/545] - -Index: builders/wheel.py -=================================================================== ---- a/src/poetry/core/masonry/builders/wheel.py -+++ b/src/poetry/core/masonry/builders/wheel.py -@@ -294,7 +294,7 @@ class WheelBuilder(Builder): - - def _copy_dist_info(self, wheel: zipfile.ZipFile, source: Path) -> None: - dist_info = Path(self.dist_info) -- for file in source.glob("**/*"): -+ for file in sorted(source.glob("**/*") ): - if not file.is_file(): - continue - -- cgit v1.2.3-54-g00ecf