pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc Update audit-packages to 1.24:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/747ea575edb3
branches:  trunk
changeset: 462862:747ea575edb3
user:      agc <agc%pkgsrc.org@localhost>
date:      Fri Oct 17 09:45:28 2003 +0000

description:
Update audit-packages to 1.24:

Simplify quoting syntax in the awk command, so that gawk-3.1.3 (as found in
NetBSD-current) doesn't have a problem with a malformed escape sequence.

With thanks to Johnny Lam for testing with an older version of gawk.

diffstat:

 doc/CHANGES                                  |  3 ++-
 security/audit-packages/Makefile             |  4 ++--
 security/audit-packages/files/audit-packages |  4 ++--
 3 files changed, 6 insertions(+), 5 deletions(-)

diffs (46 lines):

diff -r 6eea58979175 -r 747ea575edb3 doc/CHANGES
--- a/doc/CHANGES       Fri Oct 17 08:54:58 2003 +0000
+++ b/doc/CHANGES       Fri Oct 17 09:45:28 2003 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.3699 2003/10/17 05:33:13 itojun Exp $
+$NetBSD: CHANGES,v 1.3700 2003/10/17 09:46:18 agc Exp $
 
 Changes to the packages collection and infrastructure in 2003:
 
@@ -4210,3 +4210,4 @@
        Updated silc-client-icb to 0.14nb2 [salo 2003-10-16]
        Updated slurm to 0.3.1 [cube 2003-10-16]
        Updated quagga to 0.96.3 [itojun 2003-10-17]
+       Updated audit-packages to 1.24 [agc 2003-10-17]
diff -r 6eea58979175 -r 747ea575edb3 security/audit-packages/Makefile
--- a/security/audit-packages/Makefile  Fri Oct 17 08:54:58 2003 +0000
+++ b/security/audit-packages/Makefile  Fri Oct 17 09:45:28 2003 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.32 2003/09/16 09:06:03 agc Exp $
+# $NetBSD: Makefile,v 1.33 2003/10/17 09:45:28 agc Exp $
 
-DISTNAME=      audit-packages-1.23
+DISTNAME=      audit-packages-1.24
 WRKSRC=                ${WRKDIR}
 CATEGORIES=    security pkgtools
 MASTER_SITES=  # empty
diff -r 6eea58979175 -r 747ea575edb3 security/audit-packages/files/audit-packages
--- a/security/audit-packages/files/audit-packages      Fri Oct 17 08:54:58 2003 +0000
+++ b/security/audit-packages/files/audit-packages      Fri Oct 17 09:45:28 2003 +0000
@@ -1,6 +1,6 @@
 #! @SH@
 
-# $NetBSD: audit-packages,v 1.12 2003/09/03 15:07:00 tron Exp $
+# $NetBSD: audit-packages,v 1.13 2003/10/17 09:45:28 agc Exp $
 
 : ${PKGVULNDIR=@PKGVULNDIR@}
 
@@ -19,7 +19,7 @@
 @AWK@ '
        /^#.*/ { next }
        NF == 0 { next }
-       { cmd = sprintf("@PKG_TOOLS_BIN@/pkg_info -qe \"%s\" && echo Package \"`@PKG_TOOLS_BIN@/pkg_info -e '\''%s\'\''`\" has a %s vulnerability, see %s ; wait", $1, $1, $2, $3);
+       { cmd = sprintf("@PKG_TOOLS_BIN@/pkg_info -qe \"%s\" && echo Package \"`@PKG_TOOLS_BIN@/pkg_info -e %c%s%c`\" has a %s vulnerability, see %s ; wait", $1, 39, $1, 39, $2, $3);
          system(cmd); }
 ' ${PKGVULNDIR}/pkg-vulnerabilities
 



Home | Main Index | Thread Index | Old Index