Opened 14 years ago

Closed 14 years ago

#78 closed defect (fixed)

Include ASDF-INSTALL in base ABCL

Reported by: Mark Evenson Owned by: Mark Evenson
Priority: minor Milestone: unscheduled
Component: libraries Version:
Keywords: Cc:
Parent Tickets:

Description

Including a port of ASDF-INSTALL in ABCL would help others trying to use CL libraries.

Change History (2)

comment:1 Changed 14 years ago by Mark Evenson

Owner: changed from nobody to Mark Evenson
Status: newaccepted

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.

comment:2 Changed 14 years ago by Mark Evenson

Resolution: fixed
Status: acceptedclosed

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)

Note: See TracTickets for help on using tickets.