From f7be321a8d19e1fb27ed91ad8a55b1696d34b954 Mon Sep 17 00:00:00 2001 From: Alexander Kanavin Date: Wed, 16 Oct 2024 21:36:02 +0200 Subject: python3-installer: add a patch to ensure RECORD file reproducibility (From OE-Core rev: 982dce3dd65f786d3c9c12216be49c3be5b9e928) Signed-off-by: Alexander Kanavin Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- ...er-utils.py-sort-entries-before-writing-o.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 meta/recipes-devtools/python/python3-installer/0001-src-installer-utils.py-sort-entries-before-writing-o.patch (limited to 'meta/recipes-devtools/python/python3-installer') diff --git a/meta/recipes-devtools/python/python3-installer/0001-src-installer-utils.py-sort-entries-before-writing-o.patch b/meta/recipes-devtools/python/python3-installer/0001-src-installer-utils.py-sort-entries-before-writing-o.patch new file mode 100644 index 0000000000..a6715ed457 --- /dev/null +++ b/meta/recipes-devtools/python/python3-installer/0001-src-installer-utils.py-sort-entries-before-writing-o.patch @@ -0,0 +1,27 @@ +From 760ddf50ce559abd67bbdd31797267d00bcddfb3 Mon Sep 17 00:00:00 2001 +From: Alexander Kanavin +Date: Tue, 1 Oct 2024 19:22:11 +0200 +Subject: [PATCH] src/installer/utils.py: sort entries before writing out + RECORD file + +This helps build reproducibility. + +Upstream-Status: Submitted [https://github.com/pypa/installer/pull/245] +Signed-off-by: Alexander Kanavin +--- + src/installer/utils.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/installer/utils.py b/src/installer/utils.py +index 3e601d6..073297c 100644 +--- a/src/installer/utils.py ++++ b/src/installer/utils.py +@@ -207,7 +207,7 @@ def construct_record_file( + io.BytesIO(), encoding="utf-8", write_through=True, newline="" + ) + writer = csv.writer(stream, delimiter=",", quotechar='"', lineterminator="\n") +- for scheme, record in records: ++ for scheme, record in sorted(records, key=lambda x: x[1].path): + writer.writerow(record.to_row(prefix_for_scheme(scheme))) + stream.seek(0) + return stream.detach() -- cgit v1.2.3-54-g00ecf