Version in base suite: 1.0.0+ds-2.1 Base version: onionprobe_1.0.0+ds-2.1 Target version: onionprobe_1.0.0+ds-2.1+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/o/onionprobe/onionprobe_1.0.0+ds-2.1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/o/onionprobe/onionprobe_1.0.0+ds-2.1+deb12u1.dsc changelog | 9 ++-- patches/0001-Fix-make-the-tor-process-quiet-when-generating-hashed-passwords.patch | 21 ++++++++++ patches/series | 1 3 files changed, 27 insertions(+), 4 deletions(-) diff -Nru onionprobe-1.0.0+ds/debian/changelog onionprobe-1.0.0+ds/debian/changelog --- onionprobe-1.0.0+ds/debian/changelog 2022-10-15 10:32:07.000000000 +0000 +++ onionprobe-1.0.0+ds/debian/changelog 2023-12-18 14:30:56.000000000 +0000 @@ -1,9 +1,10 @@ -onionprobe (1.0.0+ds-2.1) unstable; urgency=medium +onionprobe (1.0.0+ds-2.1+deb12u1) bookworm; urgency=medium - * Non-maintainer upload. - * No source change upload to rebuild with debhelper 13.10. + * debian/patches: + - Pull in upstream fix to silence Tor if generating hashed passwords. + (Closes: #1053204) - -- Michael Biebl Sat, 15 Oct 2022 12:32:07 +0200 + -- Georg Faerber Mon, 18 Dec 2023 14:30:56 +0000 onionprobe (1.0.0+ds-2) unstable; urgency=medium diff -Nru onionprobe-1.0.0+ds/debian/patches/0001-Fix-make-the-tor-process-quiet-when-generating-hashed-passwords.patch onionprobe-1.0.0+ds/debian/patches/0001-Fix-make-the-tor-process-quiet-when-generating-hashed-passwords.patch --- onionprobe-1.0.0+ds/debian/patches/0001-Fix-make-the-tor-process-quiet-when-generating-hashed-passwords.patch 1970-01-01 00:00:00.000000000 +0000 +++ onionprobe-1.0.0+ds/debian/patches/0001-Fix-make-the-tor-process-quiet-when-generating-hashed-passwords.patch 2023-12-18 14:30:56.000000000 +0000 @@ -0,0 +1,21 @@ +Description: Fix: make the tor process quiet when generating hashed passwords +Author: Silvio Rhatto +Origin: upstream +Applied-Upstream: 6bb2a64fa73e2f678279709f82823f90fd3dc672 +Reviewed-by: Georg Faerber +Last-Update: 2023-12-18 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: onionprobe/packages/onionprobe/tor.py +=================================================================== +--- onionprobe.orig/packages/onionprobe/tor.py 2023-12-18 14:20:02.960327906 +0000 ++++ onionprobe/packages/onionprobe/tor.py 2023-12-18 14:21:17.442024820 +0000 +@@ -166,7 +166,7 @@ + import subprocess + + tor = shutil.which('tor') +- result = subprocess.check_output([tor, '--hash-password', password], text=True) ++ result = subprocess.check_output([tor, '--quiet', '--hash-password', password], text=True) + + return result + diff -Nru onionprobe-1.0.0+ds/debian/patches/series onionprobe-1.0.0+ds/debian/patches/series --- onionprobe-1.0.0+ds/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ onionprobe-1.0.0+ds/debian/patches/series 2023-12-18 14:30:56.000000000 +0000 @@ -0,0 +1 @@ +0001-Fix-make-the-tor-process-quiet-when-generating-hashed-passwords.patch