#78: Include ASDF-INSTALL in base ABCL -----------------------+---------------------------------------------------- Reporter: mevenson | Owner: nobody Type: defect | Status: new Priority: minor | Milestone: unscheduled Component: libraries | Version: Keywords: | -----------------------+---------------------------------------------------- Including a port of [http://www.cliki.net/ASDF-Install ASDF-INSTALL] in ABCL would help others trying to use CL libraries.
#78: Include ASDF-INSTALL in base ABCL ------------------------+--------------------------------------------------- Reporter: mevenson | Owner: mevenson Type: defect | Status: accepted Priority: minor | Milestone: unscheduled Component: libraries | Version: Resolution: | Keywords: ------------------------+--------------------------------------------------- Changes (by mevenson):
* owner: nobody => mevenson * status: new => accepted
Comment:
A port of ASDF-INSTALL has been committed in r12487. Work isn't complete, as 1) Microsoft Windows needs more testing, and 2) this is currently an "optional" contrib not distributed with base ABCL. We need to decide on how best to handle this.
#78: Include ASDF-INSTALL in base ABCL ------------------------+--------------------------------------------------- Reporter: mevenson | Owner: mevenson Type: defect | Status: closed Priority: minor | Milestone: unscheduled Component: libraries | Version: Resolution: fixed | Keywords: ------------------------+--------------------------------------------------- Changes (by mevenson):
* status: accepted => closed * resolution: => fixed
Comment:
Committed as contrib in 0.20.
To use the contrib:
1) build the ABCL contrib via 'ant abcl.contrib'
2) Place the resulting JAR file in the ASDF:*CENTRAL-REGISTRY* via something like the following which is valid for an abcl built from $HOME/work/abcl
{{{
(pushnew (format nil "jar:file:~A/dist/abcl-contrib.jar!/asdf-install/" (merge-pathnames "work/abcl/" (user-homedir-pathname))) asdf:*central-registry*)
}}}
3) Now ASDF-INSTALL can be loaded via
{{{
CL-USER> (require 'asdf-install)
}}}
armedbear-ticket@common-lisp.net