summaryrefslogtreecommitdiff
path: root/security/audit-packages
AgeCommit message (Collapse)AuthorFilesLines
2005-02-19Add PKGVULNDIR to BUILD_DEFS.wiz1-1/+3
2005-02-11Update audit-packages to 1.33:agc2-8/+8
In download-vulnerability-list, first set the PKGVULNDIR, then create the directory if it doesn't already exist. Pointed out by Geert Hendrickx on tech-pkg@
2004-10-29avoid use of test -e for consistency with pkgsrc itself. usegrant1-4/+3
consistent shell syntax.
2004-10-07* Make PKGSRC_TOPDIR a private variable by renaming it to _PKGSRC_TOPDIR,jlam1-2/+2
as it's only used internally by bsd.prefs.mk. * Make _PKGSRCDIR a public variable by renaming it to PKGSRCDIR. Also, generate its value from ${_PKGSRC_TOPDIR} so it's less fragile than the old method of stripping off the last two components of ${.CURDIR}. PKGSRCDIR may now be used after bsd.prefs.mk is defined. * Change all references to _PKGSRCDIR to PKGSRCDIR.
2004-06-06Update audit-packages to 1.32, with fixes for the problems mentionedagc4-21/+27
in PR 25654 from Hauke Fath. Take any non-standard values from audit-packages.conf file in audit-packages as well as download-vulnerability-list. Fix the pre-formatted documentation so that filenames to be substituted are not formatted with the bold or underline "overstrikes" on ttys, so that the correct sed substitutions take place at package install time.
2004-05-17Add explanation of -v switch to man page. (Okay'd by agc@.)reed3-7/+13
audit-packages version is now 1.31.
2004-04-14Make it a separate warning if downloading the filewiz2-3/+10
failed completely. Welcome to 1.30.
2004-04-11Rethink the nroff dilemma:jschauma1-13/+5
only regen on SunOS or AIX - the pre-generated pages _are_ mandoc type pages, so we can use them on more platforms than just Irix.
2004-04-09Do this the right way: regen audit-packages.0 and then substitute asjschauma2-16/+15
regular
2004-04-09Add a pre-formatted catman page which is only used (copied into place)jschauma2-1/+108
under IRIX. Other OS regen the catman page. This addresses PR pkg/23452. Since just depending on textproc/groff would pull in a large number of packages (such as perl, ghostscript, tiff etc.), and since this is a very important package that should NOT depend on all this gunk, Jeremy C. Reed suggested this solution. Ok agc.
2004-02-09Update security/audit-packages to 1.29. Changes from version 1.28 includejlam2-3/+4
supporting using the FreeBSD "fetch" command to get the vulnerabilities list. Patch provided in PR 24371 by Michal Pasternak.
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2004-01-19This package never invokes the toolchain so it doesn't need buildlink[23].jlam1-2/+2
Define NO_BUILDLINK to signify this to bsd.pkg.mk.
2004-01-05bl3ifyjlam1-2/+7
2004-01-01Update audit-packages to 1.28.agc3-8/+20
By popular demand, add a -v switch to audit-packages(8) which enables the check for a package vulnerabilities file being unchanged for over 7 days. To enable the check, -v must be specified on the command line: % audit-packages % audit-packages -v *** WARNING - /usr/distfiles/pkg-vulnerabilities more than a week old, continuing... %
2003-12-12AIX doesn't have mandoc, just like SunOS.erh1-2/+2
2003-12-12Whitespace fix, cosmetic onlyagc1-2/+2
2003-12-11Update audit-packages to version 1.27.agc2-4/+4
Difference from previous version (1.26): + if the vulnerability list is older than a week, just display a warning message - don't consider this a fatal error.
2003-12-03Bump date for previous. Fix typo.wiz1-3/+3
2003-12-03Updated audit-packages to 1.26martti3-7/+28
Added support for audit-packages.conf. This file can be used to define environment variables (e.g. FETCH_ARGS).
2003-10-18Update audit-packages to 1.25.agc3-21/+120
+ get rid of unnecessary awk invocation in audit-packages, use shell construction instead, pointed out by enami tsugutomo. Cuts system and user execution times for audit-packages in half. + add (4-clause) licences to audit-packages and download-vulnerability-list + check integrity of pkg-vulnerabilities file in audit-packages by using the same construct as in download-vulnerability-list + CSE in error checking in audit-packages + properly terminate a case expression in download-vulnerability-list
2003-10-17Update audit-packages to 1.24:agc2-4/+4
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.
2003-09-16missed a pkg-vulnerabilities filenamegrant1-2/+2
2003-09-16netbsd.org -> NetBSD.org.grant1-2/+2
2003-09-16correct name of pkg-vulnerabilities file; netbsd.org -> NetBSD.org;grant1-7/+7
add missing word; bump date.
2003-09-16ftp.netbsd.org -> ftp.NetBSD.orggrant1-1/+1
2003-09-16Update audit-packages to 1.23.agc2-4/+5
Use the first word of ${FETCH_CMD} to determine which utility is used. Addresses PR 22760 from Todd Vierling.
2003-09-16Update audit-packages to 1.22:agc2-4/+4
Make an informational message clearer.
2003-09-12Update to version 1.21.seb1-2/+4
download-vulnerability-list(8) now needs digest(1). Hence put digest package as a runtime dependency of audit-packages package.
2003-09-09Update audit-packages to 1.20.agc2-4/+11
Support wget and curl as FETCH_CMDs, as discussed in PR 19103.
2003-09-03Fix inconsistent filename for "pkg-vulnerabilities" file intron2-4/+4
"audit-packages" script. Bump package version again.
2003-09-02Update audit-packages to 1.18.agc4-37/+75
Changes from previous version: + rely on an embedded sha1 digest to tell whether the vulnerabilities file has been damaged in transit or received successfully, rather than trusting that the file will not grow smaller + use the new filename "pkg-vulnerabilities" + use definitions from defs.${OPSYS}.mk in the download-vulnerability-list script + at installation time, don't rely on "ln -sf" to DTRT - explicitly call "rm -f" before attempting the symbolc link With thanks to seb@ for testing.
2003-08-22Update audit-packages to 1.17.agc2-6/+7
Instead of using the number of bytes to determine whether or not the file has shrunk, use the number of lines. This will allow for spelling corrections, login name of committers being shorter than others, etc. This is a temporary measure until a better distribution mechanism is used. Suggested by David Brownlee.
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-09Remove NO_MTREE=yesaymeric1-2/+1
It broke installation of audit-packages as the first package in the system. Okayed by Alistair.
2003-06-12-f the symlinks. Requested by Jeremy C. Reed.wiz1-3/+3
2003-06-12Add man page supplied by Jeremy C. Reed in PR 21865, with some fixes by me.wiz3-6/+188
Bump to 1.16.
2003-05-21Update to version 1.15.seb3-17/+20
The directory ${PKGVULNDIR)} holding the 'vulnerabilities' file which default value is determined at configure time can now be overridden at runtime from the environment. As a side effect the strings substituted at configure time in files/{audit-packages,download-vulnerability-list} are now of the form '@VAR@' and not '${VAR}'.
2003-04-25Make the PKGVULNDIR variable more generic, so one can choose where tojmmv1-3/+1
store the vulnerabilities file. This variable was already recognized by audit-packages but not by bsd.pkg.mk which hardcoded DISTDIR.
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2002-12-13Change directory before ${FETCH_CMD} as mk/bsd.pkg.mk does. This avoids auebayasi1-3/+4
fetch error if FETCH_CMD is e.g. ``curl -O''. No functional changes.
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-07-04Add chmod a+r after downloading the new vulnerability file.wiz2-3/+4
Addresses part of pkg/17368. Bump to 1.14.
2002-06-04Make sure we get the grandchild output before the script exits.kim2-4/+4
2002-04-26Store vulnerabilities file in ${PKGVULNDIR} instead of ${DISTDIR}, in caselukem3-15/+17
the latter is not appropriate. The former defaults to the latter. Bump version to 1.12. Per discussion with Alistair Crooks.
2002-02-06Make sure this package installs properly. Pointed out in mail byagc1-2/+2
Toru TAKAMIZU <ttaka@ma1.seikyou.ne.jp>
2001-12-29Don't hardcode the PKG_DBDIR value at package installation time.agc2-5/+5
Bump version to 1.11
2001-12-17Add RCS Ids.wiz2-0/+2
2001-11-01Move pkg/ files into package's toplevel directoryzuntum4-4/+4