cl-2sql

Lisp to SQL compiler for Common Lisp
git clone https://logand.com/git/cl-2sql.git/
Log | Files | Refs | README | LICENSE

commit 94902930fe84af420c471f77df4da305ea1cf9aa
parent 874b54296ac7fcc9d1128f3759a8d1b72793360f
Author: Tomas Hlavaty <tom@logand.com>
Date:   Tue,  2 Aug 2011 00:48:57 +0200

MIT licence

Diffstat:
ACOPYING | 19+++++++++++++++++++
Mcl-2sql.asd | 2+-
Mcore.lisp | 2++
Mmacros.lisp | 2++
Mpackages.lisp | 2++
5 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/COPYING b/COPYING @@ -0,0 +1,19 @@ +cl-2sql Copyright (c) 2011 Tomas Hlavaty + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/cl-2sql.asd b/cl-2sql.asd @@ -5,7 +5,7 @@ :version "" :author "Tomas Hlavaty" :maintainer "Tomas Hlavaty" - :licence "" + :licence "MIT" :depends-on (:split-sequence) :serial t :components ((:file "packages") diff --git a/core.lisp b/core.lisp @@ -1,3 +1,5 @@ +;;; cl-2sql Copyright (c) 2011 Tomas Hlavaty + ;;; Redefine EXECUTE, PRINT-SYMBOL and PRINT-STRING if needed. (in-package :2sql) diff --git a/macros.lisp b/macros.lisp @@ -1,3 +1,5 @@ +;;; cl-2sql Copyright (c) 2011 Tomas Hlavaty + (in-package :2sql-macros) (cl:defmacro defsyntax (name args &body body) diff --git a/packages.lisp b/packages.lisp @@ -1,3 +1,5 @@ +;;; cl-2sql Copyright (c) 2011 Tomas Hlavaty + (in-package :cl-user) (defpackage 2sql