NanoBSD has helper script "fill_pkg.sh" which links all packages andther dependencies from "package dump" (like /usr/ports/packages/All) tospecified director. fill_pkg.sh has some limitations:
- It needs ports tree, which should have exactly same versions as "package dump".
- It requires full paths to needed ports, including "/usr/ports" part.
- It has assumptions about Nano Package Dir (it assumes, that it specified rtelative to current directory).
- It does not have any diagnostics (almost).
This PR enhances "fill_pkg.sh" script in several ways:
- Nano package dir could be absolute path.
- Script understands four ways to specify "root" ports/packages: (a) Absolute directory with port (old one) (b) Relative directory with port, relative to ${PORTSDIR} or /usr/ports (c) Absolute path to file with package (with .tbz suffix) (d) Name of package in dump dir, with or without .tbz suffix
These ways can be mixed in one call. Dependencies for packages are obtained with 'pkg_info -r' call, and are searched for in same directory as "parent" package. Dependencies for ports are obtained in old way from port's Makefile. - Three levels of diagnostic (and -v option, could be repeated) are added.
- All path variables are enclosed in quotes, to make script work with paths, containing spaces.
Note: imp merged in the changes to fill_pkg.sh since this has been a PR.
PR: 151695