diff options
author | jlam <jlam@pkgsrc.org> | 2004-02-09 03:56:34 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-02-09 03:56:34 +0000 |
commit | 56a6d12f0758d21a39f2bea68e18682de3c55dee (patch) | |
tree | 262e190378f6afcf4ddfd1cd07a2c9d6a06630a7 | |
parent | d420fe7358d37e777d120694013748ef719b277e (diff) | |
download | pkgsrc-56a6d12f0758d21a39f2bea68e18682de3c55dee.tar.gz |
Update security/audit-packages to 1.29. Changes from version 1.28 include
supporting using the FreeBSD "fetch" command to get the vulnerabilities
list. Patch provided in PR 24371 by Michal Pasternak.
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | security/audit-packages/Makefile | 4 | ||||
-rw-r--r-- | security/audit-packages/files/download-vulnerability-list | 3 |
3 files changed, 6 insertions, 4 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 0158d307036..7cf0df4495b 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.4740 2004/02/09 01:29:25 kim Exp $ +$NetBSD: CHANGES,v 1.4741 2004/02/09 03:57:18 jlam Exp $ Changes to the packages collection and infrastructure in 2004: @@ -716,3 +716,4 @@ Changes to the packages collection and infrastructure in 2004: Updated kde3 to 3.2.0nb2 [chris 2004-02-09] Updated bogofilter to 0.16.4 [snj 2004-02-09] Updated roller to 1.15 [kim 2004-02-09] + Updated audit-packages to 1.29 [jlam 2004-02-09] diff --git a/security/audit-packages/Makefile b/security/audit-packages/Makefile index 6a83fe297b5..89f63731461 100644 --- a/security/audit-packages/Makefile +++ b/security/audit-packages/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.42 2004/01/20 12:25:33 agc Exp $ +# $NetBSD: Makefile,v 1.43 2004/02/09 03:56:34 jlam Exp $ -DISTNAME= audit-packages-1.28 +DISTNAME= audit-packages-1.29 CATEGORIES= security pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/security/audit-packages/files/download-vulnerability-list b/security/audit-packages/files/download-vulnerability-list index a6e01a0d08e..b06f5893a49 100644 --- a/security/audit-packages/files/download-vulnerability-list +++ b/security/audit-packages/files/download-vulnerability-list @@ -1,6 +1,6 @@ #! @SH@ -# $NetBSD: download-vulnerability-list,v 1.22 2003/12/03 04:58:01 martti Exp $ +# $NetBSD: download-vulnerability-list,v 1.23 2004/02/09 03:56:34 jlam Exp $ # # Copyright (c) 2000-2003 Alistair Crooks. All rights reserved. # @@ -55,6 +55,7 @@ case "$utility" in *curl) @FETCH_CMD@ ${FETCH_ARGS} -o ${NEW_VUL_LIST} ${VUL_SOURCE} ;; *ftp) @FETCH_CMD@ ${FETCH_ARGS} -o ${NEW_VUL_LIST} ${VUL_SOURCE} ;; *wget) @FETCH_CMD@ ${FETCH_ARGS} -O ${NEW_VUL_LIST} ${VUL_SOURCE} ;; +*fetch) @FETCH_CMD@ ${FETCH_ARGS} -o ${NEW_VUL_LIST} ${VUL_SOURCE} ;; *) echo "Unknown fetch command - please use send-pr to send in support for your fetch command" 1>&2 exit 1 ;; |