Merge pull request #11353 from kvuorine/fwknop-fixes
[feed/packages.git] / lang / python / python3 / patches-setuptools / 001-reproducible.patch
1 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=848136
2 https://sources.debian.org/patches/python-setuptools/40.8.0-1/reproducible.diff/
3
4 Index: b/setuptools/command/easy_install.py
5 ===================================================================
6 --- a/setuptools/command/easy_install.py
7 +++ b/setuptools/command/easy_install.py
8 @@ -423,7 +423,7 @@ class easy_install(Command):
9 for spec in self.args:
10 self.easy_install(spec, not self.no_deps)
11 if self.record:
12 - outputs = self.outputs
13 + outputs = list(sorted(self.outputs))
14 if self.root: # strip any package prefix
15 root_len = len(self.root)
16 for counter in range(len(outputs)):