Your message dated Mon, 09 Mar 2020 23:58:30 +0000
with message-id <e1jbsi2-000cuv...@fasolo.debian.org>
and subject line Bug#953436: Removed package(s) from unstable
has caused the Debian Bug report #827419,
regarding ldaptor: please make the build reproducible
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
827419: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=827419
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ldaptor
Severity: wishlist
Tags: patch
User: reproducible-bui...@lists.alioth.debian.org
Usertags: environment fileordering

Dear maintainer,

while working on the “reproducible builds” effort [1], we have noticed
that ldaptor could not be built reproducibly.

This is due to different content of the documentation created by Epydoc.
The attached patch ensures stable sorted order for the list of input
files fed into Epydoc, and it also moves a list out of the global scope that
captures the home directory set during the build in a string. This would
otherwise have been added to the documentation.
Once applied, ldaptor can be built reproducibly in our current experimental
framework.

Thanks for considering the patch.
Best regards,
Sascha

[1]: https://wiki.debian.org/ReproducibleBuilds
Description: make build reproducible
 This patch addresses nondeterminism in Epydoc input that influences the
 reproducibility of the ldaptor package build.
 In particular, this patch uses a stable sorted order for the list of input
 files fed into Epydoc, and it also moves a list out of the global scope that
 captures the home directory set during the build in a string. This would
 otherwise have been added to the documentation.
Author: Sascha Steinbiss <sas...@steinbiss.name>
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -137,6 +137,6 @@
 	        -o api \
 		--name Ldaptor \
 		--url http://www.inoi.fi/open/trac/ldaptor/ \
-		$$(find ../ldaptor \( -name SCCS -prune \) -o -name '*.py' -a ! -regex '.*/webui/.*' -a ! -regex '.*/test/web/.*' -a ! -regex '.*/test/test_webui\.py' -a ! -regex '.*/test/mockweb\.py' -a ! -name 'weave.py' -print)
+		$$(find ../ldaptor \( -name SCCS -prune \) -o -name '*.py' -a ! -regex '.*/webui/.*' -a ! -regex '.*/test/web/.*' -a ! -regex '.*/test/test_webui\.py' -a ! -regex '.*/test/mockweb\.py' -a ! -name 'weave.py' -print | LC_ALL=C sort)
 
 .PHONY: api
--- a/ldaptor/config.py
+++ b/ldaptor/config.py
@@ -121,11 +121,6 @@
                },
     }
 
-CONFIG_FILES = [
-    '/etc/ldaptor/global.cfg',
-    os.path.expanduser('~/.ldaptor/global.cfg'),
-    ]
-
 __config = None
 
 def loadConfig(configFiles=None,
@@ -134,6 +129,10 @@
     Load configuration file.
     """
     global __config
+    CONFIG_FILES = [
+        '/etc/ldaptor/global.cfg',
+        os.path.expanduser('~/.ldaptor/global.cfg'),
+    ]
     if __config is None or reload:
         x = ConfigParser.SafeConfigParser()
         x.optionxform = InsensitiveString

--- End Message ---
--- Begin Message ---
Version: 0.0.43+debian1-7.2+rm

Dear submitter,

as the package ldaptor has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/953436

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

--- End Message ---
_______________________________________________
Python-modules-team mailing list
Python-modules-team@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to