Bug#982634: xtrlock: allow numpad Enter key to enter password

2021-02-12 Thread Steve Ward
Package: xtrlock Version: 2.8+deb10u1+b1 Severity: wishlist Dear Maintainer, I often use the numpad Enter key to enter my password, but xtrlock allows only the regular Enter key to be used. In xtrlock.c at line 306, please add a case for XK_KP_Enter where XK_Linefeed and XK_Return are handled.

Bug#854101: lrzip: Fails to extract its own output when used as a pipe

2018-11-18 Thread Steve Ward
I created a bug with the upstream project. corrupt compressed output when piping or redirecting to stdout https://github.com/ckolivas/lrzip/issues/102

Bug#700682: pbzip2 can't compress file that starts with '-' (unless preceded with "./")

2013-02-15 Thread Steve Ward
Package: pbzip2 Version: 1.1.8-1 Severity: normal # Steps to reproduce: # (given a file named "-foo") $ pbzip2 -- -foo pbzip2: *ERROR: Won't read compressed data from terminal. Aborting! pbzip2: For help type: pbzip2 -h $ echo $? 1 # prepending "./" works $ pbzip2 -- ./-foo # bzip2 works $

Bug#700681: lzma can't decompress a file to stdout without a known suffix

2013-02-15 Thread Steve Ward
Package: lzma Version: 9.22-2 Severity: normal # Steps to reproduce: $ lzma -c /usr/share/dict/words > foo $ lzma -d -c foo > bar foo: unknown suffix -- unchanged $ echo $? 2 # using pipes works $ lzma -c /usr/share/dict/words | lzma -d -c > bar # gzip works $ gzip -c /usr/share/dict/words >

Bug#700680: lbzip2 can't compress symlinks when output to stdout

2013-02-15 Thread Steve Ward
Package: lbzip2 Version: 2.2-2 Severity: minor # Steps to reproduce: $ lbzip2 -c /usr/share/dict/words > foo lbzip2: skipping "/usr/share/dict/words": not a regular file $ echo $? 4 # must use --force option $ lbzip2 --force -c /usr/share/dict/words > foo # bzip2 works $ bzip2 -c /usr/share/di