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.

14 lines
496 B

  1. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=894215
  2. https://sources.debian.org/patches/python-setuptools/40.8.0-1/PKG-INFO-output-reproducible.diff/
  3. --- a/setuptools/dist.py
  4. +++ b/setuptools/dist.py
  5. @@ -193,7 +193,7 @@ def write_pkg_file(self, file):
  6. self.long_description_content_type
  7. )
  8. if self.provides_extras:
  9. - for extra in self.provides_extras:
  10. + for extra in sorted(self.provides_extras):
  11. write_field('Provides-Extra', extra)