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.23.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/512c0df77b27
branches:  trunk
changeset: 461416:512c0df77b27
user:      agc <agc%pkgsrc.org@localhost>
date:      Tue Sep 16 09:06:03 2003 +0000

description:
Update audit-packages to 1.23.

Use the first word of ${FETCH_CMD} to determine which utility is used.

Addresses PR 22760 from Todd Vierling.

diffstat:

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

diffs (50 lines):

diff -r 9bd8cbaf3a32 -r 512c0df77b27 doc/CHANGES
--- a/doc/CHANGES       Tue Sep 16 08:09:04 2003 +0000
+++ b/doc/CHANGES       Tue Sep 16 09:06:03 2003 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES,v 1.3392 2003/09/16 08:01:12 xtraeme Exp $
+$NetBSD: CHANGES,v 1.3393 2003/09/16 09:07:49 agc Exp $
 
 Changes to the packages collection and infrastructure in 2003:
 
@@ -3708,5 +3708,6 @@
        Updated rocksndiamonds-sdl to 3.0.4 [adam 2003-09-15]
        Added py-TPG 2.1.6 [recht 2003-09-15]
        Removed samba20 [jlam 2003-09-16]
-       Updated audit-packages to 1.22 [adam 2003-09-16]
+       Updated audit-packages to 1.22 [agc 2003-09-16]
        Updated tsclient to 0.124 [xtraeme 2003-09-16]
+       Updated audit-packages to 1.23 [agc 2003-09-16]
diff -r 9bd8cbaf3a32 -r 512c0df77b27 security/audit-packages/Makefile
--- a/security/audit-packages/Makefile  Tue Sep 16 08:09:04 2003 +0000
+++ b/security/audit-packages/Makefile  Tue Sep 16 09:06:03 2003 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.31 2003/09/16 07:21:01 agc Exp $
+# $NetBSD: Makefile,v 1.32 2003/09/16 09:06:03 agc Exp $
 
-DISTNAME=      audit-packages-1.22
+DISTNAME=      audit-packages-1.23
 WRKSRC=                ${WRKDIR}
 CATEGORIES=    security pkgtools
 MASTER_SITES=  # empty
diff -r 9bd8cbaf3a32 -r 512c0df77b27 security/audit-packages/files/download-vulnerability-list
--- a/security/audit-packages/files/download-vulnerability-list Tue Sep 16 08:09:04 2003 +0000
+++ b/security/audit-packages/files/download-vulnerability-list Tue Sep 16 09:06:03 2003 +0000
@@ -1,6 +1,6 @@
 #! @SH@
 
-# $NetBSD: download-vulnerability-list,v 1.18 2003/09/16 07:21:03 agc Exp $
+# $NetBSD: download-vulnerability-list,v 1.19 2003/09/16 09:06:04 agc Exp $
 
 : ${PKGVULNDIR=@PKGVULNDIR@}
 
@@ -14,7 +14,8 @@
 EXIST_VUL_LIST=pkg-vulnerabilities
 
 cd ${PKGVULNDIR}
-case "@FETCH_CMD@" in
+utility=`echo "@FETCH_CMD@" | @AWK@ '{ print $1 }'`
+case "$utility" in
 *curl) @FETCH_CMD@ -o ${NEW_VUL_LIST} ${VUL_SOURCE} ;;
 *ftp)  @FETCH_CMD@ -o ${NEW_VUL_LIST} ${VUL_SOURCE} ;;
 *wget) @FETCH_CMD@ -O ${NEW_VUL_LIST} ${VUL_SOURCE} ;;



Home | Main Index | Thread Index | Old Index