--- a/debian/patches/reproducible-build 1970-01-01 01:00:00.000000000 +0100 --- b/debian/patches/reproducible-build 2021-10-07 11:10:54.375241027 +0100 @@ -0,0 +1,24 @@ +Description: Make the build reproducible +Author: Chris Lamb +Last-Update: 2021-10-07 + +--- python-pipx-0.16.5.orig/src/pipx/main.py ++++ python-pipx-0.16.5/src/pipx/main.py +@@ -56,7 +56,7 @@ PIPX_DESCRIPTION = textwrap.dedent( + Virtual Environment location is {str(constants.PIPX_LOCAL_VENVS)}. + Symlinks to apps are placed in {str(constants.LOCAL_BIN_DIR)}. + +- """ ++ """.replace(str(Path.home()), "$HOME") + ) + PIPX_DESCRIPTION += pipx_wrap( + """ +@@ -103,7 +103,7 @@ INSTALL_DESCRIPTION = textwrap.dedent( + The default python executable used to install a package is + {DOC_DEFAULT_PYTHON} and can be overridden + by setting the environment variable `PIPX_DEFAULT_PYTHON`. +- """ ++ """.replace(str(Path.home()), "$HOME") + ) + + --- a/debian/patches/series 2021-10-07 11:00:38.217743254 +0100 --- b/debian/patches/series 2021-10-07 11:10:53.175238288 +0100 @@ -5,3 +5,4 @@ generate-docs-without-virtualenv generate-manpage release-version +reproducible-build