summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-poetry-core/deterministic.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python3-poetry-core/deterministic.patch')
-rw-r--r--meta/recipes-devtools/python/python3-poetry-core/deterministic.patch23
1 files changed, 0 insertions, 23 deletions
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 @@
1builders/wheel: Ensure dist-info is written determinisically
2
3glob() returns values in "on disk" order. To make the RECORD file
4deterministic and consistent between builds we need to sort the
5data before adding to the records list.
6
7Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
8
9Upstream-Status: Submitted [https://github.com/python-poetry/poetry-core/pull/545]
10
11Index: builders/wheel.py
12===================================================================
13--- a/src/poetry/core/masonry/builders/wheel.py
14+++ b/src/poetry/core/masonry/builders/wheel.py
15@@ -294,7 +294,7 @@ class WheelBuilder(Builder):
16
17 def _copy_dist_info(self, wheel: zipfile.ZipFile, source: Path) -> None:
18 dist_info = Path(self.dist_info)
19- for file in source.glob("**/*"):
20+ for file in sorted(source.glob("**/*") ):
21 if not file.is_file():
22 continue
23