Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2004-04-12 | Catch UPDATE_VULNERABILITY_LIST being unset, default to be conservative | hubertf | 1 | -2/+2 | |
and run it if it's not explicitly set to "no" | |||||
2004-04-10 | According to egrep(1): | jschauma | 1 | -2/+2 | |
Portability note: unlike GNU grep, traditional grep did not con- form to POSIX.2, because traditional grep lacked a -q option and its -s option behaved like GNU grep's -q option. Shell scripts intended to be portable to traditional grep should avoid both -q and -s and should redirect output to /dev/null instead. And, guess what, that's exactly what we run into when we call IRIX' egrep(1) with '-q' (which it doesn't know). So let's follow this suggestion and use neither '-q' nor '-s' and redirect output to /dev/null instead. | |||||
2004-04-09 | Commentary cleanup: | jschauma | 6 | -70/+79 | |
- If it's a full sentence, start capitalize first letter and end with a period. - Break comments at ~80 chars so it fits into a terminal.[*] (* This should be done for the code as well, but then it'll need testing. I'll do this at another point in time.) | |||||
2004-04-09 | On some systems, bootstrap also installs ${LOCALBASE}/bin/install-sh -- | jschauma | 1 | -2/+2 | |
if that is removed, the bulk-build will fail immediately. So tar it up, too. (Note that this will give a warning on systems that don't have it.) | |||||
2004-04-09 | Add a --mirror_only option to the bulk build script. When combined with | dmcmahill | 1 | -5/+88 | |
setting SPECIFIC_PKGS=1, this is a convenient way to make sure you have all required distfiles before starting a build. In particular, you will get all distfiles for all required dependencies of the explicitly listed packages. As part of this make the option processing part of this script a bit more general purpose and add a -h|--help option. | |||||
2004-04-07 | Add support in the bulk build code to properly deal with SPECIFIC_PKGS=1. | dmcmahill | 3 | -8/+47 | |
In particular, when SPECIFIC_PKGS is set in /etc/mk.conf, you can now do sh mk/bulk/build and have the right thing happen. Only those packages explicitly listed and those which are depended upon are considered for the build. Other than the restricted list of packages, the bulk build works the same way as a full bulk build. | |||||
2004-03-28 | Rearrange the wording slightly in an informational message, to avoid | agc | 1 | -2/+2 | |
some email filters and false positives. | |||||
2004-03-26 | Attribute "my thoughts" to the original author. | jlam | 1 | -3/+3 | |
2004-03-22 | If BULK_BUILD_CONF points to an absolute path, don't try to use it | jschauma | 1 | -2/+6 | |
with a leading "./". | |||||
2004-03-18 | don't assume there will always be broken packages. noted by wiz. | grant | 1 | -2/+5 | |
2004-03-16 | Enforce vulnerability list being installed & correct & upto-date | hubertf | 2 | -4/+18 | |
before trying to upload anything. | |||||
2004-03-13 | Remove some more of the "last touched by" code. | wiz | 1 | -4/+2 | |
2004-03-11 | Remove 'blame' column, OK'd by grant@. | hubertf | 1 | -7/+5 | |
2004-02-25 | s/netbsd.org/NetBSD.org/ | grant | 5 | -13/+13 | |
2004-02-25 | GNU tar on netbsd-1-6 doesn't grok "-T -" at the end, but pax-as-tar | grant | 1 | -3/+4 | |
does, so rearrange the arguments so that "-f -" is always at the end. noted by krister@. while I'm here, make sure we use the same tar(1) program pkgsrc does. | |||||
2004-02-16 | Add RCS ID | hubertf | 1 | -0/+2 | |
2004-02-15 | avoid another long command line calling tar(1). | grant | 1 | -2/+2 | |
2004-02-14 | zoularis is deprecated, don't backup zoularis.mk. | grant | 1 | -2/+2 | |
2004-02-14 | when copying the broken files, use find(1) instead of a shell glob | grant | 1 | -2/+2 | |
to avoid a command line too long for sh(1) on some platforms. | |||||
2004-02-13 | on Solaris, mount /opt/SUNWspro in the sandbox if it exists. | grant | 1 | -2/+2 | |
2004-02-08 | print date and time in UTC. | grant | 1 | -3/+5 | |
2004-02-08 | include the total number of binary pkgs created in the report. fix | grant | 1 | -6/+17 | |
some HTML nits. | |||||
2004-02-05 | extract OPSYS and OS_VERSION from pkgsrc and use them in the report | grant | 1 | -3/+8 | |
email subject. | |||||
2004-02-05 | show build start time in localtime, not seconds-since-epoch :) | grant | 1 | -2/+6 | |
2004-02-05 | Remove a local change which crept in with the last update. | sketch | 1 | -3/+1 | |
2004-01-31 | fix typo in comment | grant | 1 | -2/+2 | |
2004-01-31 | improve report layout: | grant | 1 | -197/+376 | |
- move the build summary to the top and include build start/end times. - break the report up into three sections for easier navigation: Broken, Broken dependencies, and Not packaged. - HTML report now uses a subset of the www.NetBSD.org stylesheet. - improve some of the text. | |||||
2004-01-30 | shut up a warning from gawk. | grant | 1 | -2/+2 | |
2004-01-30 | allow the user to set the packages to build in build.conf (PKGLIST). | grant | 3 | -11/+28 | |
cache the list in printdepends so that printindex doesn't need to run the same command(s) again at the start of a bulk build. | |||||
2004-01-30 | print a useful error if the pkgsrc directory or src directory | grant | 1 | -3/+16 | |
doesn't exist. | |||||
2004-01-30 | if an unknown option is given, don't treat it as a sandbox | grant | 1 | -3/+9 | |
directory, print the usage message instead. | |||||
2004-01-27 | Replace all occurrences of the "MAIL" definition with MAIL_CMD, since | agc | 1 | -4/+4 | |
some shells can set MAIL to be the mailbox of the user, and environment variables will override assignments in make when using conditional assignments. | |||||
2004-01-26 | add /usr/5bin for Solaris. | grant | 1 | -2/+2 | |
2004-01-26 | Add a new definition, _PRESERVE_WRKDIR, which defaults to "no". This | agc | 1 | -10/+15 | |
definition is not intended to be set by the user, and so has a leading '_', and is undocumented. If set to "yes", then a "make clean" of the package will not be done, thereby preserving the working directory. This is useful for debugging problems in bulk builds. | |||||
2004-01-26 | Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248 | heinz | 2 | -6/+7 | |
2004-01-22 | sandboxed builds also need /usr/dt and /usr/ucblib on Solaris. | grant | 1 | -2/+2 | |
2004-01-22 | make date format string more portable. | grant | 1 | -2/+2 | |
2004-01-20 | add archivers/pax, net/tnftp, security/kth-krb4 and textproc/nbsed to | grant | 1 | -7/+9 | |
the packages to skip on non-NetBSD because they blow away bootstrap-pkgsrc installed files. only create ${PKG_DBDIR} if it doesn't already exist. | |||||
2004-01-20 | make this work on Solaris by using perl's internal grep(). it is | grant | 1 | -15/+28 | |
faster, and (f)grep can't handle very long word lists. | |||||
2004-01-20 | reverse some "if ! command;" statements so this works with Solaris' | grant | 1 | -9/+9 | |
/bin/sh, which doesn't deal with ! bulk builds now work out-of-the-box on Solaris. woo :-) | |||||
2004-01-20 | missed a `uname -p` | grant | 1 | -2/+2 | |
2004-01-20 | get and use the value of ${MACHINE_ARCH} instead of `uname -p` to | grant | 1 | -2/+3 | |
correctly reflect the pkgsrc arch. (uname -p returns "unknown" on (my) Linux, which is not very helpful..) | |||||
2004-01-20 | tiny whitespace tweak | grant | 1 | -2/+2 | |
2004-01-20 | on Linux, use --bind arg to mount(8) and call 'MAKEDEV generic' to | grant | 1 | -2/+6 | |
make the device files, as this is what Linux systems seem to use... | |||||
2004-01-17 | portability fixes: | grant | 1 | -11/+22 | |
- use AWK, GREP, SED and MAIL as set by defs.opsys.mk. - use $? to test exit code of programs | |||||
2004-01-17 | minor whitespace cleanup. | grant | 1 | -15/+15 | |
2004-01-17 | use GREP and SED as set by defs.opsys.mk so this works on non-NetBSD. | grant | 1 | -5/+18 | |
2004-01-15 | ensure we call chroot with the full path to 'sh'. | grant | 1 | -2/+3 | |
2004-01-15 | 'export VAR=value' doesn't work in some brain-dead shells. use | grant | 1 | -2/+3 | |
'VAR=value; export VAR' instead. | |||||
2003-12-10 | Replace hardcoded '/usr/pkgsrc' in comments. | sketch | 3 | -7/+7 | |