[Python-apps-commits] r13340 - in packages/prospector/trunk/debian (3 files)

stender at users.alioth.debian.org stender at users.alioth.debian.org
Fri Jun 24 17:54:13 UTC 2016


    Date: Friday, June 24, 2016 @ 17:54:12
  Author: stender
Revision: 13340

dropped sort-for-eggs.patch

Modified:
  packages/prospector/trunk/debian/changelog
  packages/prospector/trunk/debian/patches/series
Deleted:
  packages/prospector/trunk/debian/patches/sort-for-eggs.patch

Modified: packages/prospector/trunk/debian/changelog
===================================================================
--- packages/prospector/trunk/debian/changelog	2016-06-24 17:52:22 UTC (rev 13339)
+++ packages/prospector/trunk/debian/changelog	2016-06-24 17:54:12 UTC (rev 13340)
@@ -1,8 +1,9 @@
 prospector (0.12-1) UNRELEASED; urgency=medium
 
   * New upstream release.
+  * Dropped sort-for-eggs.patch (applied upstream).
 
- -- Daniel Stender <stender at debian.org>  Fri, 24 Jun 2016 19:51:55 +0200
+ -- Daniel Stender <stender at debian.org>  Fri, 24 Jun 2016 19:53:31 +0200
 
 prospector (0.11.7-7) unstable; urgency=medium
 

Modified: packages/prospector/trunk/debian/patches/series
===================================================================
--- packages/prospector/trunk/debian/patches/series	2016-06-24 17:52:22 UTC (rev 13339)
+++ packages/prospector/trunk/debian/patches/series	2016-06-24 17:54:12 UTC (rev 13340)
@@ -1,3 +1,2 @@
-sort-for-eggs.patch
 docs-privacy-breaches.patch
 rename-console-script.patch

Deleted: packages/prospector/trunk/debian/patches/sort-for-eggs.patch
===================================================================
--- packages/prospector/trunk/debian/patches/sort-for-eggs.patch	2016-06-24 17:52:22 UTC (rev 13339)
+++ packages/prospector/trunk/debian/patches/sort-for-eggs.patch	2016-06-24 17:54:12 UTC (rev 13340)
@@ -1,21 +0,0 @@
-Description: determine sorting order of `with_everything` deps.
- _OPTIONAL['with_everything'] catches the order of appearance of the other
- entries in _OPTIONAL which is not deterministic (dict). Patch to support
- reproducible builds. Temporary fix until #804249 (add sorted() to egg_info.py
- in setuptools) is accepted.
-Author: Daniel Stender <stender at debian.org>
-Forwarded: not-needed
-Last-Update: 2016-05-29 12:12
-
---- a/setup.py
-+++ b/setup.py
-@@ -76,7 +76,8 @@
-     'with_pyroma': ('pyroma>=1.6,<2.0',),
-     'with_pep257': (),  # note: this is no longer optional, so this option will be removed in a future release
- }
--_OPTIONAL['with_everything'] = [req for req_list in _OPTIONAL.values() for req in req_list]
-+with_everything = [req for req_list in _OPTIONAL.values() for req in req_list]
-+_OPTIONAL['with_everything'] = sorted(with_everything)
- 
- 
- if os.path.exists('README.rst'):




More information about the Python-apps-commits mailing list