| 1 | The original ASDF-INSTALL code (the files Makefile, README, |
|---|
| 2 | asdf-install.asd, defpackage.lisp, and installer.lisp) was written by |
|---|
| 3 | Daniel Barlow <dan@telent.net> and is distributed with SBCL and |
|---|
| 4 | therefore in the public domain. The SBCL Common Lisp implementation |
|---|
| 5 | can be obtained from Sourceforge: <http://sbcl.sf.net/>. |
|---|
| 6 | |
|---|
| 7 | The initial port of ASDF-INSTALL to other Lisps was done by Dr. Edmund |
|---|
| 8 | Weitz <edi@agharta.de> and included the file port.lisp and some |
|---|
| 9 | changes to the files mentioned above. More code was provided by Marco |
|---|
| 10 | Baringer <mb@bese.it> (OpenMCL port), James Anderson |
|---|
| 11 | <james.anderson@setf.de> (MCL port, including the file digitool.lisp), |
|---|
| 12 | Kiyoshi 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 |
|---|
| 15 | MK:DEFSYSTEM which includes the files load-asdf-install.lisp, |
|---|
| 16 | loader.lisp, and finally split-sequence.lisp which has its own |
|---|
| 17 | copyright notice. ASDF-Install is currently maintained by Gary King |
|---|
| 18 | <gwking@metabang.com> and is hosted on Common-Lisp.net. |
|---|
| 19 | |
|---|
| 20 | The complete code distributed with this archive (asdf-install.tar.gz) |
|---|
| 21 | is copyrighted by the above-mentioned authors and governed by the |
|---|
| 22 | following license. |
|---|
| 23 | |
|---|
| 24 | Redistribution and use in source and binary forms, with or without |
|---|
| 25 | modification, are permitted provided that the following conditions are |
|---|
| 26 | met: |
|---|
| 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 | |
|---|
| 36 | THIS SOFTWARE IS PROVIDED BY THE AUTHORS 'AS IS' AND ANY EXPRESSED OR |
|---|
| 37 | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
|---|
| 38 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
|---|
| 39 | DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, |
|---|
| 40 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
|---|
| 41 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
|---|
| 42 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
|---|
| 43 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
|---|
| 44 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
|---|
| 45 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|---|
| 46 | POSSIBILITY OF SUCH DAMAGE. |
|---|
| 47 | |
|---|