You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
775 B

  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. Index: b/setuptools/command/easy_install.py
  4. ===================================================================
  5. --- a/setuptools/command/easy_install.py
  6. +++ b/setuptools/command/easy_install.py
  7. @@ -436,7 +436,7 @@ consider to install to another location,
  8. for spec in self.args:
  9. self.easy_install(spec, not self.no_deps)
  10. if self.record:
  11. - outputs = self.outputs
  12. + outputs = list(sorted(self.outputs))
  13. if self.root: # strip any package prefix
  14. root_len = len(self.root)
  15. for counter in range(len(outputs)):