Package Lispy - external symbols
Lispy is Common Lisp package management in Common Lisp.
Package Lispy uses the packages Common-Lisp. It has 85 total symbols and 36 external ones.
Class
| install | An INSTALL represents a Lisp package that has been installed by Lispy. |
|---|
| module | A MODULE represents a Lisp package from a Lispy map. |
|---|
| version | A VERSION represents a specific version of a MODULE. |
|---|
Variable
| *lispy-asdf-config-pathname* | The path to the Lispy ASDF configuration file. |
|---|
| *lispy-distfiles-pathname* | The path where source packages should be downloaded to. |
|---|
| *lispy-installation-pathname* | The path to the installation list file. |
|---|
| *lispy-log-stream* | A stream Lispy should use to write log messages. |
|---|
| *lispy-map-urls* | A list of map URLs Lispy should read and merge. |
|---|
| *lispy-pathname* | Where Lispy is installed. You should never need to modify this. |
|---|
Constant
| +lispy-default-map-url+ | The URL to the official Lispy map. |
|---|
Function
| initialize | Initialize Lispy. This reads and merges all maps in *LISPY-MAP-URLS*, reads the installation, wr... |
|---|
| install-by-name | Return the instance of INSTALL given by NAME. |
|---|
| list-installation | Return the list of installed modules versions. |
|---|
| list-map | Return the merged list of modules. |
|---|
| list-upgrades | Returns a list of VERSION instances for all modules that can be upgraded. |
|---|
| module-by-name | Returns the instance of MODULE described by NAME. |
|---|
| read-asdf-config | Load the Lispy ASDF configuration, which in turn adds paths to ASDF:*CENTRAL-REGISTRY*. |
|---|
| read-installation | Read the installation file into *LISPY-INSTALLATION* |
|---|
| read-map | Read the map at MAP-URL and merge the modules into *LISPY-MAP*. |
|---|
| upgrade-all | Upgrade all upgradable Lisp source packages. |
|---|
| write-asdf-config | Write a Lispy ASDF configuration file which can be loaded indepedent of Lispy. |
|---|
| write-installation | Write *LISPY-INSTALLATION* to the installtaion file. |
|---|
Generic-Function
| install | Install Lisp package source. |
|---|
| latest-version | Determine the latest version of the Lisp package described by MODULE. Returns an instance of VER... |
|---|
| uninstall | Uninstall Lisp package source. |
|---|
| upgradable-p | Non-NIL if the Lisp package source can be upgraded. |
|---|
| upgrade | Upgrade a Lisp source package installation. |
|---|