summaryrefslogtreecommitdiff
path: root/mk/scripts
AgeCommit message (Collapse)AuthorFilesLines
2006-07-01Add a script that can be used to scan for NO_BIN_ON_FTP packages usingdmcmahill1-0/+163
the cache files left by the README.html generation. This is indended to be used to monitor a ftp server, not for generating a file list for uploading to a ftp server.
2006-06-21When producing the list of directories containing binary packages, dodmcmahill1-3/+29
some extra processing to ensure that we have a list of unique directories. Otherwise we end up with two problems: - cache files get rebuilt all the time because they get built once for each path to the directory in question and since the path ends up in the cache, it is always declared out of date. - we end up with multiple links to the same binary package in the README.html files. Committed during the freeze becuase this is a real bug which is encountered daily.
2006-06-08undo most of the last commit which was a mistake.dmcmahill1-12/+3
2006-06-06When using find to search for the "All" directories containing binarydmcmahill1-4/+13
packages, use -follow. Hopefully this will pick up all of the binary packages again after the ftp.netbsd.org reorganization.
2006-06-06Refactor "fetch" and "extract" code into correspondingly namedjlam1-306/+0
subdirectories of pkgsrc/mk. Move the following files around for locality: pkgsrc/mk/scripts/extract -> pkgsrc/mk/extract/extract pkgsrc/mk/bsd.sites.mk -> pkgsrc/mk/fetch/sites.mk Also get rid of the recursive make for the "fetch" and "extract" targets. This basically merges the "fetch" and "extract" phases into the "patch" phase. There is still much more work to do to simplify the fetch code, but this is a good start.
2006-05-30Recognize -tar.gz as tar.gz files. PR 33571 by Dieter Roelants.wiz1-2/+2
2006-05-29when generating the list of pkgsrc packages, usedmcmahill1-29/+40
${BMAKE} show-subdir-var VARNAME=SUBDIR instead of just grepping through the makefiles. This seems to be a litle more robust. Suggested by Joerg Sonnenberger.
2006-05-28strip trailing comments when searching for SUBDIR+= lines in the Makefilesdmcmahill1-2/+2
2006-04-15Back to pkg-vulnerabilities format 1.0.0.salo1-4/+2
2006-03-22Remove an unsed script -- print-la-libnames was replaced withjlam1-77/+0
plist/libtool-expand after the plist module was committed.
2006-02-19Add .tar.bz supportadrianp1-3/+3
2006-02-04- Added "set -e" at the top of the file to prevent uncontrolled execution.rillig1-15/+28
- Added "set -u" at the top of the file to prevent spelling errors. - Renamed UNZIP to UNZIP_CMD, since that is used by the rest of pkgsrc. - Found a singleton use of $extract_options and replaced it with ${EXTRACT_OPTS_LHA}. - Took the default assignment for TMPDIR out of the block. All other entries are tools. - Removed unnecessary variables. - Make sure that distfile can always be resolved, even if the current working directory is changed. - Provide default values for all EXTRACT_OPTS_* variables, as close as possible to the point where they are used. - Replaced all "$@" with ${1+"$@"} to avoid errors when no parameters are given. - Made the removal of the temporary file for .tar extraction more robust.
2006-02-03.tar.z is a valid tar extension.joerg1-2/+2
2006-02-02Fix unrar usage: the command to extract is 'x', without hyphen.joerg1-2/+2
2006-01-24Ensure that decompress_cat and tarprog always have vaild default valuesjlam1-2/+3
in the case where the user makes bad option choices on the command line.
2006-01-23If the package directory doesn't exist, then return a non-zero code. Thisjlam1-2/+6
allows us to distinguish the case where everything is what we expect, and any deviations from that main case.
2006-01-23Handle *.ZIP the same way as *.zip -- fixes fonts/cyberbit-ttf extraction.wiz1-2/+2
2006-01-21While walking the dependency graph, push the dependencies onto thejlam1-2/+6
stack in the reverse order that show-depends-pkgpaths outputs them. This makes the top element of the stack the first child dependency that was marked as "pushed". This change orders the default "postfix" output of this script in such a way that for any package listed in the output, there is no earlier package that depends on it. In other words, you can take the default output and install from first to last and never need to install any dependencies, because any dependencies are guaranteed to have already been installed earlier.
2006-01-21duh... stacks are LIFOs not FIFOs.jlam1-2/+2
2006-01-21Allow using standard input for the archive contents for tar and sharjlam1-3/+16
extraction.
2006-01-21Fix the case where -X excludefile is used so that we don't error out tryingjlam1-3/+7
to remove "".
2006-01-21Teach the extract script how to exclude files specified on the commandjlam1-2/+14
line from extraction when using tar (it already knew how to do it for pax).
2006-01-21Teach extract how to extract *.z files using gzip.jlam1-3/+4
2006-01-21Teach the extract script a "-d dir" option to extract into a specificjlam1-2/+13
directory.
2006-01-21Fix up the comments, and add a fall-through for unrecognized archivejlam1-5/+10
formats.
2006-01-21Fix other instance of _ZOO -> _ZIP and remove a debugging line.jlam1-3/+2
2006-01-21unzip should be using EXTRACT_OPTS_ZIP, not *_ZOO.jlam1-2/+3
2006-01-21Teach the extract script to simply copy the distfile over to thejlam1-16/+40
current working directory by default if it can't figure out what type of archive it is. This handles the most common case of overriding EXTRACT_CMD in package Makefiles, which is to copy a C file or a Perl script over to the work directory. Also, modify the script to allow the file format to be specified on the command line via a -f option, which will force the extract script to interpret the archive as the specified a format. This covers the case where there is a distfile with an unusual file extension that is actually in well-known format, and we would like to just tell the extract script which format this is.
2006-01-20Teach this script a default extraction method for *.bin files (which arejlam1-2/+7
what Sun packagse its JRE/JDKs as). While here, cleanup up the comments slightly.
2006-01-20Support listing files/patterns for exclusion in an "excludefile",jlam1-7/+28
which is correctly parsed and translated into the correct syntax for the underlying tool.
2006-01-20Add some whitespace for readability.jlam1-1/+8
2006-01-20Fix processing of -t tarprog.jlam1-3/+2
2006-01-20First pass at a script that replaces many of the variables, loops andjlam1-0/+190
logic in bsd.pkg.extract.mk. This script "knows" how to extract files depending on their file extension.
2006-01-18Add a "-s pkgsrcdir" option that allows specifying the path to the pkgsrcjlam1-6/+32
directory tree on the command line more easily.
2006-01-18Modify the show-depends-pkgpaths implementation so that we don't assumejlam1-0/+86
package directories specified in DEPENDS lines begin with "../..". The new standalone script pkgsrc/mk/scripts/pkg_path will canonicalize them into package paths relative to ${PKGSRCDIR}.
2006-01-18whitespace nit.jlam1-2/+1
2006-01-18Pass MAKEFLAGs to the depends-depth-first.awk script, which will bejlam1-1/+6
used by the "make show-depends-pkgpaths" process to short-circuit some of the rather lengthy computations that are spread throughout bsd.pkg.mk and files included by bsd.pkg.mk. This causes the script to speed up noticeably. Also, rename the _DEPENDS_DEPTH_FIRST_CMD variable to _DEPENDS_WALK_CMD for brevity and to allow for other implementations in the future.
2006-01-18Create a standalone awk script, depends-depth-first.awk, that encapsulatesjlam1-0/+273
the code that performs the dependency graph traversal (in depth-first fashion). This script has a hook that allows executing a shell command line upon visiting a dependency's package directory in either prefix or postfix order, and may be used to simplify the code in bsd.pkg.mk that iterates over dependencies. This awk script requires the target "show-depends-pkgpaths", which is defined in a new Makefile pkgsrc/mk/bsd.utils.mk. This file should accumulate "utility" targets that current exist in bsd.pkg.mk, i.e., "helper" targets for various actions.
2006-01-17Rework the way the vulnerabilities list is displayed a bit todmcmahill1-6/+22
remove the vulnerability ID from the pkg-vulnerabilities file which managed to creep into the README.html output.
2006-01-05Fix a bug which caused the README.html generation to fail when the packagesdmcmahill2-10/+26
directory did not exist. Now the generation completes with a warning that no binary packages were found. Reported in PR pkg/32351.
2005-11-18Added a few FIXMEs at places where this program might fail unexpectedly.rillig1-1/+5
2005-11-18Renamed append to append_flag. Removed superfluous quotes around thatrillig1-5/+4
variable. As it is controlled completely by this program, they are not needed.
2005-11-18Don't accept anything besides the known options on the command line. Asrillig1-7/+2
no additional parameters are used it's better to reject them.
2005-11-18- Added section headings.rillig1-29/+34
- Renamed DEBUG to debug_flag, as it is not modifiable via the environment. - Removed trailing white-space from the --help output. - Removed the clean_and_exit function, as it had been practically unused. - Replaced some "if"s with "case"s to avoid line noise.
2005-11-17Properly quoted variables.rillig1-21/+17
2005-08-24Added a code snippet that demonstrates how to set the $@ array to therillig1-1/+12
lines printed by a shell command. In contrast to the read(1) shell utility, there are no problems when the output contains backslashes.
2005-06-01Recognize inet6 in PKG_SUPPORTED_OPTIONS as an indicatorwiz1-2/+2
that a package support IPv6 (for the README-IPv6.html generation).
2005-05-24Add more error checking. PACKAGES must exist. No extra command line args ↵dmcmahill1-1/+12
taken.
2005-05-24improve the message when an invalid cache file version is founddmcmahill1-2/+4
2005-05-24Improve error checking. Specifically, after a new cache file isdmcmahill1-7/+27
created in a temp directory, issue a warning if we fail to install it in the package directory. If the error happens on the top level (master) cache file, then error out. For a subdirectory, issue a warning and drop that directory from the master cache.