Your message dated Sun, 03 Jul 2005 20:02:12 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#256279: fixed in man-db 2.4.3-1
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at maintonly) by bugs.debian.org; 25 Jun 2004 19:40:02 +0000
>From [EMAIL PROTECTED] Fri Jun 25 12:40:02 2004
Return-path: <[EMAIL PROTECTED]>
Received: from khan.acc.umu.se [130.239.18.139] (postfix)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BdwYM-0002jw-00; Fri, 25 Jun 2004 12:40:02 -0700
Received: from localhost (localhost [127.0.0.1])
by amavisd-new (Postfix) with ESMTP id 373DAD2F0
for <[EMAIL PROTECTED]>; Fri, 25 Jun 2004 21:40:01 +0200 (MEST)
Received: by khan.acc.umu.se (Postfix, from userid 23136)
id 4EB05D228; Fri, 25 Jun 2004 21:39:59 +0200 (MEST)
Date: Fri, 25 Jun 2004 21:39:59 +0200
From: David Weinehall <[EMAIL PROTECTED]>
To: "Debian Bug Tracking System, Maintonly" <[EMAIL PROTECTED]>
Subject: XSI:isms in several scripts
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.4.1i
X-Accept-Language: Swedish, English
X-GPG-Fingerprint: 7ACE 0FB0 7A74 F994 9B36 E1D1 D14E 8526 DC47 CA16
X-GPG-Key: http://www.acc.umu.se/~tao/files/pubkey_dc47ca16.gpg.asc
X-Virus-Scanned: by amavisd-new at acc.umu.se
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: man-db
Version: 2.4.2-16
Severity: minor
Tags: patch upstream
This patch fixes several occurences of the XSI:isms `-a' and `-o',
and changes egrep to grep -E, as per recommendations in SUSv3.
Rationale:
policy 10.4
http://www.opengroup.org/onlinepubs/009695399/utilities/test.html
http://www.opengroup.org/onlinepubs/009695399/utilities/grep.html
Regards: David Weinehall
diff -ur man-db-2.4.2-old/debian/postinst man-db-2.4.2/debian/postinst
--- man-db-2.4.2-old/debian/postinst 2004-06-24 12:55:33.000000000 +0300
+++ man-db-2.4.2/debian/postinst 2004-06-25 20:49:44.000000000 +0300
@@ -51,7 +51,7 @@
if dpkg --compare-versions "$2" lt 2.3.18; then
# /usr/local/man now mapped to /var/cache/man/oldlocal
- if [ -d $catdir/local -a ! -d $catdir/oldlocal ]; then
+ if [ -d $catdir/local ] && [ ! -d $catdir/oldlocal ]; then
mv -f $catdir/local $catdir/oldlocal
fi
fi
diff -ur man-db-2.4.2-old/debian/postrm man-db-2.4.2/debian/postrm
--- man-db-2.4.2-old/debian/postrm 2004-06-24 12:55:33.000000000 +0300
+++ man-db-2.4.2/debian/postrm 2004-06-25 20:50:04.000000000 +0300
@@ -17,12 +17,12 @@
;;
abort-install|abort-upgrade)
- if [ -e /etc/cron.daily/man.moved-by-preinst -a \
- ! -e /etc/cron.daily/man ]; then
+ if [ -e /etc/cron.daily/man.moved-by-preinst ] && \
+ [ ! -e /etc/cron.daily/man ]; then
mv /etc/cron.daily/man.moved-by-preinst /etc/cron.daily/man
fi
- if [ -e /etc/cron.weekly/catman.moved-by-preinst -a \
- ! -e /etc/cron.weekly/catman ]; then
+ if [ -e /etc/cron.weekly/catman.moved-by-preinst && \
+ [ ! -e /etc/cron.weekly/catman ]; then
mv /etc/cron.weekly/catman.moved-by-preinst /etc/cron.weekly/catman
fi
;;
diff -ur man-db-2.4.2-old/tools/config.rpath man-db-2.4.2/tools/config.rpath
--- man-db-2.4.2-old/tools/config.rpath 2003-09-20 14:03:49.000000000 +0300
+++ man-db-2.4.2/tools/config.rpath 2004-06-25 20:50:41.000000000 +0300
@@ -143,7 +143,7 @@
ld_shlibs=no
;;
beos*)
- if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ if $LD --help 2>&1 | grep -E ': supported targets:.* elf' > /dev/null;
then
:
else
ld_shlibs=no
@@ -162,9 +162,9 @@
netbsd*)
;;
solaris* | sysv5*)
- if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
+ if $LD -v 2>&1 | grep -E 'BFD 2\.8' > /dev/null; then
ld_shlibs=no
- elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null;
then
+ elif $LD --help 2>&1 | grep -E ': supported targets:.* elf' > /dev/null;
then
:
else
ld_shlibs=no
@@ -174,7 +174,7 @@
hardcode_direct=yes
;;
*)
- if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ if $LD --help 2>&1 | grep -E ': supported targets:.* elf' > /dev/null;
then
:
else
ld_shlibs=no
diff -ur man-db-2.4.2-old/tools/mkcatdirs man-db-2.4.2/tools/mkcatdirs
--- man-db-2.4.2-old/tools/mkcatdirs 2002-10-23 04:03:29.000000000 +0300
+++ man-db-2.4.2/tools/mkcatdirs 2004-06-25 20:52:42.000000000 +0300
@@ -28,11 +28,11 @@
# sort out the command line options
-if test "$1" = "-t" -o "$1" = "--test"
+if test "$1" = "-t" || test "$1" = "--test"
then
test_only=yes
else
- if test "$1" -a "$2" -a "$3"
+ if test "$1" && test "$2" && test "$3"
then
test_only=no
owner=$1
@@ -41,9 +41,9 @@
fi
fi
-test "$1" = "-h" -o "$1" = "--help" && help=yes || help=
+( test "$1" = "-h" || test "$1" = "--help" ) && help=yes || help=
-if test "$help" -o -z "$test_only"
+if test "$help" || test -z "$test_only"
then
cat << EOF
usage: $progname -h | -t | owner group mode
@@ -104,7 +104,7 @@
fi
cd $here
- if test "$test_only" = "no" -a "$catdirs"
+ if test "$test_only" = "no" && test "$catdirs"
then
echo " "
echo "mkinstalldirs $catdirs" &&
---------------------------------------
Received: (at 256279-close) by bugs.debian.org; 4 Jul 2005 00:09:22 +0000
>From [EMAIL PROTECTED] Sun Jul 03 17:09:22 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DpEWX-00089W-00; Sun, 03 Jul 2005 17:09:21 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DpEPc-0006TI-00; Sun, 03 Jul 2005 20:02:12 -0400
From: Colin Watson <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#256279: fixed in man-db 2.4.3-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 03 Jul 2005 20:02:12 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
X-CrossAssassin-Score: 6
Source: man-db
Source-Version: 2.4.3-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.4.3-1.diff.gz
to pool/main/m/man-db/man-db_2.4.3-1.diff.gz
man-db_2.4.3-1.dsc
to pool/main/m/man-db/man-db_2.4.3-1.dsc
man-db_2.4.3-1_powerpc.deb
to pool/main/m/man-db/man-db_2.4.3-1_powerpc.deb
man-db_2.4.3.orig.tar.gz
to pool/main/m/man-db/man-db_2.4.3.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.7
Date: Mon, 4 Jul 2005 00:27:05 +0100
Source: man-db
Binary: man-db
Architecture: source powerpc
Version: 2.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Colin Watson <[EMAIL PROTECTED]>
Changed-By: Colin Watson <[EMAIL PROTECTED]>
Description:
man-db - The on-line manual pager
Closes: 129575 207436 218407 241387 245057 256279 268584 275562
Changes:
man-db (2.4.3-1) unstable; urgency=low
.
* New upstream release.
- Make most calls to external programs directly rather than going via
the shell.
- When stdout is not a terminal, man pages will be formatted in plain
text without the use of backspace or ANSI formatting characters.
- Try harder to find somewhere to store cat pages for symlinked man
pages (closes: #129575).
- When invoking apropos (man -k) or whatis (man -f) as external
programs, man now only passes through command-line options understood
by the respective programs (closes: #207436).
- Drop versions and/or modifiers from locale names before deciding how
to handle them (closes: #241387).
- Fix portable shell issues in mkcatdirs (closes: #256279).
- Terminate NAME section parsing on encountering a macro definition
(closes: #275562).
- Add -s/--section option to apropos and whatis (closes: #218407).
- Update Polish translation (thanks, Robert Luberda; closes: #245057).
- Update Russian translation (thanks, Yuri Kozlov; closes: #268584).
* Policy version 3.6.2: no changes required.
Files:
36d19ca84004afcaf2d39fadf5595457 594 doc important man-db_2.4.3-1.dsc
30814a47f209f43b152659ba51fc7937 816545 doc important man-db_2.4.3.orig.tar.gz
7d550ab7461ad2b65d6394371086f114 72545 doc important man-db_2.4.3-1.diff.gz
952c76020a19de98031079d8752f2132 682396 doc important
man-db_2.4.3-1_powerpc.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFCyHfb9t0zAhD6TNERAhu9AJ9qoUNIlcmgle6uyHCGlo65IcvAugCeKCcM
By6QFFk92t1OE/Q5Em0gkQ4=
=l0sz
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]