[Python-apps-commits] r14515 - in packages/pylint/trunk/debian (3 files)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Sun Dec 10 14:18:17 UTC 2017


    Date: Sunday, December 10, 2017 @ 14:18:16
  Author: morph
Revision: 14515

* debian/patches/reproducible_build.patch
  - make the build reproducible; patch by Chris Lamb; Closes: #883913

Added:
  packages/pylint/trunk/debian/patches/reproducible_build.patch
Modified:
  packages/pylint/trunk/debian/changelog
  packages/pylint/trunk/debian/patches/series

Modified: packages/pylint/trunk/debian/changelog
===================================================================
--- packages/pylint/trunk/debian/changelog	2017-12-10 12:54:54 UTC (rev 14514)
+++ packages/pylint/trunk/debian/changelog	2017-12-10 14:18:16 UTC (rev 14515)
@@ -1,3 +1,10 @@
+pylint (1.7.4-2) UNRELEASED; urgency=medium
+
+  * debian/patches/reproducible_build.patch
+    - make the build reproducible; patch by Chris Lamb; Closes: #883913
+
+ -- Sandro Tosi <morph at debian.org>  Sun, 10 Dec 2017 09:17:42 -0500
+
 pylint (1.7.4-1) unstable; urgency=medium
 
   [ Michael Hudson-Doyle ]

Added: packages/pylint/trunk/debian/patches/reproducible_build.patch
===================================================================
--- packages/pylint/trunk/debian/patches/reproducible_build.patch	                        (rev 0)
+++ packages/pylint/trunk/debian/patches/reproducible_build.patch	2017-12-10 14:18:16 UTC (rev 14515)
@@ -0,0 +1,25 @@
+Description: Make the build reproducible
+Author: Chris Lamb <lamby at debian.org>
+Last-Update: 2017-12-09
+
+--- pylint-1.7.4.orig/doc/exts/pylint_extensions.py
++++ pylint-1.7.4/doc/exts/pylint_extensions.py
+@@ -42,6 +42,7 @@ def builder_inited(app):
+         elif ext == '.rst':
+             doc_files['pylint.extensions.' + name] = os.path.join(ext_path,
+                                                                   filename)
++    modules.sort()
+     if not modules:
+         sys.exit("No Pylint extensions found?")
+ 
+--- pylint-1.7.4.orig/pylint/utils.py
++++ pylint-1.7.4/pylint/utils.py
+@@ -454,7 +454,7 @@ class MessagesHandlerMixIn(object):
+         print("Below is a list of all checkers and their features.", file=stream)
+         print("", file=stream)
+ 
+-        for checker, info in six.iteritems(by_checker):
++        for checker, info in sorted(six.iteritems(by_checker)):
+             self._print_checker_doc(checker, info, stream=stream)
+ 
+     @staticmethod

Modified: packages/pylint/trunk/debian/patches/series
===================================================================
--- packages/pylint/trunk/debian/patches/series	2017-12-10 12:54:54 UTC (rev 14514)
+++ packages/pylint/trunk/debian/patches/series	2017-12-10 14:18:16 UTC (rev 14515)
@@ -1 +1,2 @@
 doc_makefile_python3.patch
+reproducible_build.patch




More information about the Python-apps-commits mailing list