source: tags/1.0.0/abcl/contrib/asdf-install/COPYRIGHT

Last change on this file was 12487, checked in by Mark Evenson, 14 years ago

Port of ASDF-INSTALL under 'contrib/asdf-install'.

'abcl.contrib' will package ASDF-INSTALL in dist/abcl-contrib.jar.

We only have one contrib 'asdf-install'. It is not expected to work
well under Windows at the moment.

To use ASDF-INSTALL, use the following in your ~/.abclrc:

(require 'asdf)
(pushnew "jar:file:${dist.dir}/abcl-contrib.jar!/asdf-install/" asdf:*central-registry*)

Then issuing

CL-USER> (require 'asdf-install)

will load ASDF-INSTALL.

A file ~/.asdf-install can contain customizations to help ASDF-INSTALL
find the programs 'tar' and 'gpg'. 'tar' is searched for in
asdf-install:*shell-search-paths*. The location of 'gpg' can be
customized by setting *gpg-command* to a string containing the file.
This behavior should be rationalized in the future.

ASDF-INSTALL tested under OSX.

File size: 2.4 KB
Line 
1The original ASDF-INSTALL code (the files Makefile, README,
2asdf-install.asd, defpackage.lisp, and installer.lisp) was written by
3Daniel Barlow <dan@telent.net> and is distributed with SBCL and
4therefore in the public domain.  The SBCL Common Lisp implementation
5can be obtained from Sourceforge: <http://sbcl.sf.net/>.
6
7The initial port of ASDF-INSTALL to other Lisps was done by Dr. Edmund
8Weitz <edi@agharta.de> and included the file port.lisp and some
9changes to the files mentioned above.  More code was provided by Marco
10Baringer <mb@bese.it> (OpenMCL port), James Anderson
11<james.anderson@setf.de> (MCL port, including the file digitool.lisp),
12Kiyoshi Mizumaru <maru@krc.sony.co.jp>, Robert P. Goldman
13<rpgoldman@sift.info>, and Raymond Toy <toy@rtp.ericsson.se>
14(bugfixes).  Marco Antoniotti <marcoxa@cs.nyu.edu> added support for
15MK:DEFSYSTEM which includes the files load-asdf-install.lisp,
16loader.lisp, and finally split-sequence.lisp which has its own
17copyright notice. ASDF-Install is currently maintained by Gary King
18<gwking@metabang.com> and is hosted on Common-Lisp.net.
19
20The complete code distributed with this archive (asdf-install.tar.gz)
21is copyrighted by the above-mentioned authors and governed by the
22following license.
23
24Redistribution and use in source and binary forms, with or without
25modification, are permitted provided that the following conditions are
26met:
27
28  * Redistributions of source code must retain the above copyright
29    notice, this list of conditions and the following disclaimer.
30
31  * Redistributions in binary form must reproduce the above
32    copyright notice, this list of conditions and the following
33    disclaimer in the documentation and/or other materials
34    provided with the distribution.
35
36THIS SOFTWARE IS PROVIDED BY THE AUTHORS 'AS IS' AND ANY EXPRESSED OR
37IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
38WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT,
40INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
41(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
42SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
45IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
46POSSIBILITY OF SUCH DAMAGE.
47
Note: See TracBrowser for help on using the repository browser.