Your message dated Wed, 17 Feb 2010 01:32:11 +0000
with message-id <[email protected]>
and subject line Bug#565255: fixed in man-db 2.5.7-1
has caused the Debian Bug report #565255,
regarding man-db: 'whatis nosuchfile' outputs to standard output, not standard
error
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 [email protected]
immediately.)
--
565255: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565255
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: man-db
Version: 2.5.6-4
Severity: normal
For comparision:
# show what five file utils output to STDIN only
% X=nosuchfile ; for f in ls wc gzip rm whatis ; do echo "running: $f $X" ;
$f $X ; echo $? ; echo ------- ; done 2> /dev/null
running: ls nosuchfile
2
-------
running: wc nosuchfile
1
-------
running: gzip nosuchfile
1
-------
running: rm nosuchfile
1
-------
running: whatis nosuchfile
nosuchfile: nothing appropriate.
16
-------
And:
# the same, but only to STDERR
% X=nosuchfile ; for f in ls wc gzip rm whatis ; do echo "running: $f $X" ;
$f $X ; echo $? ; echo ------- ; done > /dev/null
ls: cannot access nosuchfile: No such file or directory
wc: nosuchfile: No such file or directory
gzip: nosuchfile: No such file or directory
rm: cannot remove `nosuchfile': No such file or directory
HTH...
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.31-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash
Versions of packages man-db depends on:
ii bsdmainutils 8.0.4 collection of more utilities from
ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy
ii dpkg 1.15.3.1 Debian package management system
ii groff-base 1.20.1-6 GNU troff text-formatting system (
ii libc6 2.10.2-2 GNU C Library: Shared libraries
ii libgdbm3 1.8.3-9 GNU dbm database routines (runtime
ii zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime
man-db recommends no packages.
Versions of packages man-db suggests:
ii dillo [www-browser] 0.8.6-3 Small and fast web browser
ii elinks [www-browser] 0.12~pre5-1+b1 advanced text-mode WWW browser
ii epiphany-browser [www- 2.29.3-1 Intuitive GNOME web browser
ii galeon [www-browser] 2.0.7-1.1 GNOME web browser for advanced use
ii groff 1.20.1-6 GNU troff text-formatting system
ii iceape-browser [www-br 2.0.1-1 Iceape Navigator (Internet browser
ii iceweasel [www-browser 3.5.6-1 lightweight web browser based on M
ii konqueror [www-browser 4:3.5.10.dfsg.1-2 KDE's advanced file manager, web b
ii less 436-1 pager program similar to more
ii links [www-browser] 2.2-1+b1 Web browser running in text mode
ii lynx-cur [www-browser] 2.8.8dev.1-1 Text-mode WWW Browser with NLS sup
ii opera-static [www-brow 7.23-20031119.1 The Opera Web Browser
-- debconf information:
man-db/build-database: true
* man-db/rebuild-database: true
* man-db/install-setuid: true
man-db/auto-update: true
--- End Message ---
--- Begin Message ---
Source: man-db
Source-Version: 2.5.7-1
We believe that the bug you reported is fixed in the latest version of
man-db, which is due to be installed in the Debian FTP archive:
man-db_2.5.7-1.debian.tar.gz
to main/m/man-db/man-db_2.5.7-1.debian.tar.gz
man-db_2.5.7-1.dsc
to main/m/man-db/man-db_2.5.7-1.dsc
man-db_2.5.7-1_i386.deb
to main/m/man-db/man-db_2.5.7-1_i386.deb
man-db_2.5.7.orig.tar.gz
to main/m/man-db/man-db_2.5.7.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Colin Watson <[email protected]> (supplier of updated man-db package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Wed, 17 Feb 2010 00:56:08 +0000
Source: man-db
Binary: man-db
Architecture: source i386
Version: 2.5.7-1
Distribution: unstable
Urgency: low
Maintainer: Colin Watson <[email protected]>
Changed-By: Colin Watson <[email protected]>
Description:
man-db - on-line manual pager
Closes: 440047 446741 505465 519547 519807 537434 545805 564818 565255 568000
Changes:
man-db (2.5.7-1) unstable; urgency=low
.
* New upstream release:
- Make man(1) refer to the "Warnings" node in 'info groff' for a list of
available warning names (closes: #545805).
- Don't run tests if cross-compiling.
- Add option to disable justification (closes: #440047).
- Do what the user probably means when the full path to an executable is
given as an argument (closes: #505465).
- Search man<sec><ext> directories in the GNU layout (closes: #519807).
- Prefer getting a page from the best manual section over getting a page
in the correct language; I have my reservations about this, but it
seems to be what people are requesting (closes: #519547).
- 'man -f' and 'man -k' now pass through any -s option to apropos/whatis
respectively.
- All programs now support a MAN_DEBUG environment variable which can be
used in place of the -d/--debug option. This is useful in some
situations where a program is being called deep in a process tree.
- Fix off-by-one error when write returns EAGAIN (thanks, Samuel
Thibault; closes: #564818).
- "%s: nothing appropriate." is an error; write it to stderr, not stdout
(closes: #565255).
- Don't bother printing error messages for SIGINT and SIGQUIT, since
these correspond to explicit user actions (closes: #568000).
- Fix sense of directory check while decompressing (closes: #537434).
- Always save cat pages in UTF-8 (closes: #446741).
* Convert to source format 3.0 (quilt).
Checksums-Sha1:
71309dec7d94b3cdb51f5ae62ad8092889727f98 1116 man-db_2.5.7-1.dsc
dd5f7f2f2fa93bcf4221cda189b94a8acdce346c 2173870 man-db_2.5.7.orig.tar.gz
fc01ca744c7240f637dff052c0cfe9163034746d 66520 man-db_2.5.7-1.debian.tar.gz
60788704ebf4463a70d18dfff4e6bd37fde447b5 1182496 man-db_2.5.7-1_i386.deb
Checksums-Sha256:
1c04ca39e3d0868639e4ef91074b36230c34568814aed09af2aa3beae246198a 1116
man-db_2.5.7-1.dsc
e41d4831860c9de85ad21928a542e8f8f1735bcf277f2bc455366397eaa7463e 2173870
man-db_2.5.7.orig.tar.gz
f8b390938cb5f53b2c86ae27704ba9a91aab94a96b2c0eb7ecb83a4d51ef2070 66520
man-db_2.5.7-1.debian.tar.gz
024b336dad05fcc99244963b4d8552c4a63f2f9ca2e8a99292bb0d313fd6a55f 1182496
man-db_2.5.7-1_i386.deb
Files:
a40b09fd91eb2dbf2c9e4ef3e3561a04 1116 doc important man-db_2.5.7-1.dsc
eef0d8c8e54894e4e050e2176bb1d88d 2173870 doc important man-db_2.5.7.orig.tar.gz
173409d7156c993227ba8f80a11a60a8 66520 doc important
man-db_2.5.7-1.debian.tar.gz
1284a585a292e298903f7cc2538c22b7 1182496 doc important man-db_2.5.7-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Colin Watson <[email protected]> -- Debian developer
iD8DBQFLez9V9t0zAhD6TNERAuuEAJ49C3xmeVR0PzrGEi4ff4er/lPBPACeKhT6
OKJHOAa8mpf7vJ4l8Oh9GVY=
=Aumj
-----END PGP SIGNATURE-----
--- End Message ---