(deptree system-name)
Example: (deptree "hunchentoot")
The resulting list of system names is deduplicated and pruned of dependencies within same system directories.
(systems-paths dependencies)
Example: (systems-paths (deptree "hunchentoot"))
(systems-archive dependencies tarball-pathname &key (sanitize-p t) (path-prefix “”))
Example: (systems-archive (deptree "hunchentoot") #p"/tmp/hunchentoot-deps.tgz")
Before archiving, make sure the dependencies are in fact present on your host. If you are using Quicklisp it’s as easy as quickload-ing the system.
All systems directories are stored flat (with prepeneded :PATH-PREFIX
) regardless their original
absolute pathnames. Since feature-conditional dependencies are honored, please ensure you’re archiving from
the relevant platform.
Unless :SANITIZE-P
is NIL, the function will clean up git and Mercurial DVCS data from the archives.
(systems-licenses systems)
Example: (systems-licenses (deptree "hunchentoot"))
Produces a list of pairs (system-name . license-string) for the supplied list of licenses.
(license-set systems)
Example: (license-set (deptree "hunchentoot"))
Produces a mostly deduplicated list of licenses. Variations in character case or hyphens are collated.