Bug#917101: python-sshoot: please make the build reproducible

Chris Lamb lamby at debian.org
Sat Dec 22 16:43:54 GMT 2018


Source: python-sshoot
Version: 1.4.1-1
Severity: wishlist
Tags: patch
User: reproducible-builds at lists.alioth.debian.org
Usertags: buildpath
X-Debbugs-Cc: reproducible-bugs at lists.alioth.debian.org

Hi,

Whilst working on the Reproducible Builds effort [0], we noticed
that python-sshoot could not be built reproducibly.

This is because the manpage embedded $HOME via xdg_config_dir. A patch
attached that hardcodes this to literal reference to the string
'$HOME' instead.

 [0] https://reproducible-builds.org/


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      lamby at debian.org / chris-lamb.co.uk
       `-
-------------- next part --------------
--- a/sshoot/main.py	2018-12-22 16:37:13.119817835 +0000
--- b/sshoot/main.py	2018-12-22 16:42:54.961956741 +0000
@@ -90,7 +90,7 @@
             version='%(prog)s {}'.format(__version__))
         parser.add_argument(
             '-C', '--config', default=DEFAULT_CONFIG_PATH,
-            help=_('configuration directory (default: %(default)s)'))
+            help=_('configuration directory (default: $HOME/.config/sshoot)'))
         subparsers = parser.add_subparsers(
             metavar='ACTION', dest='action', help=_('action to perform'))
         subparsers.required = True


More information about the Reproducible-bugs mailing list