mirror of
https://git.yoctoproject.org/poky
synced 2026-02-04 07:48:43 +01:00
Add a patch to fix a reproducibility issue in the new version. (From OE-Core rev: ea6fffe4f07cfd105f861ad0d2dc7c7605bf9e64) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
The License-File lines in PKG-INFO change ordering depending on the order on disk,
|
|
for example for python-packaging, one build shows:
|
|
|
|
License-File: LICENSE
|
|
License-File: LICENSE.APACHE
|
|
License-File: LICENSE.BSD
|
|
|
|
and the other shows:
|
|
|
|
License-File: LICENSE
|
|
License-File: LICENSE.BSD
|
|
License-File: LICENSE.APACHE
|
|
|
|
This is because glob uses os.listdir() which is unsorted. Sort the result to avoid this.
|
|
|
|
Upstream-Status: Submitted [https://github.com/pypa/setuptools/issues/2691]
|
|
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
Index: setuptools-57.0.0/setuptools/dist.py
|
|
===================================================================
|
|
--- setuptools-57.0.0.orig/setuptools/dist.py
|
|
+++ setuptools-57.0.0/setuptools/dist.py
|
|
@@ -15,7 +15,7 @@ import distutils.command
|
|
from distutils.util import strtobool
|
|
from distutils.debug import DEBUG
|
|
from distutils.fancy_getopt import translate_longopt
|
|
-from glob import iglob
|
|
+from glob import glob
|
|
import itertools
|
|
import textwrap
|
|
from typing import List, Optional, TYPE_CHECKING
|
|
@@ -603,7 +603,7 @@ class Distribution(_Distribution):
|
|
return (
|
|
path
|
|
for pattern in patterns
|
|
- for path in iglob(pattern)
|
|
+ for path in sorted(glob(pattern))
|
|
if not path.endswith('~')
|
|
and os.path.isfile(path)
|
|
)
|