Update of /project/definer/cvsroot/definer In directory cl-net:/tmp/cvs-serv9292
Modified Files: definer-pkg.lisp definer.system Added Files: COPYING definer.asd Log Message: Adde files COPYING and .asd. Edited and updated the package and system.
--- /project/definer/cvsroot/definer/definer-pkg.lisp 2004/04/22 18:05:06 1.1.1.1 +++ /project/definer/cvsroot/definer/definer-pkg.lisp 2011/03/06 15:29:36 1.2 @@ -2,7 +2,7 @@
;;; definer-pkg.lisp --
-;;; Copyright (c) 2003-2004 Marco Antoniotti, All rigths reserved. +;;; Copyright (c) 2003-2011 Marco Antoniotti, All rigths reserved. ;;; ;;; Permission to use, modify, and redistribute this code is hereby ;;; granted. @@ -11,7 +11,7 @@
(defpackage "NET.NTUNIOTT.CL.EXT.SYNTAX.DEFINER" (:use "COMMON-LISP") - (:nicknames "CL.EXT.SYNTAX.DEFINER" "DEFINER") + (:nicknames "CL.EXT.SYNTAX.DEFINER" "DEFINER" #-lispworks "DEF") (:export "DEF" "BUILD-DEFINITION-FORM") --- /project/definer/cvsroot/definer/definer.system 2004/04/22 18:10:23 1.1 +++ /project/definer/cvsroot/definer/definer.system 2011/03/06 15:29:36 1.2 @@ -1,10 +1,13 @@ -;;; -*- Mode: Lisp -*- +;;;; -*- Mode: Lisp -*-
-;;; definer.system -- +;;;; definer.system -- +;;;; +;;;; See the file COPYING for license and copying information.
(mk:defsystem "DEFINER" + :author "Marco Antoniotti" :components ("definer-pkg" "definer"))
-;;; end of file -- definer.system -- +;;;; end of file -- definer.system --
--- /project/definer/cvsroot/definer/COPYING 2011/03/06 15:29:36 NONE +++ /project/definer/cvsroot/definer/COPYING 2011/03/06 15:29:36 1.1 Copyright (c) 2003-2011 Marco Antoniotti All rights reserved.
Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software.
IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE AUTHOR(S), HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
THE AUTHOR(S) UNIVERSITY, COMPANY AND/OR AFFILIATION SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE AUTHOR(S) HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
--- /project/definer/cvsroot/definer/definer.asd 2011/03/06 15:29:36 NONE +++ /project/definer/cvsroot/definer/definer.asd 2011/03/06 15:29:36 1.1 ;;;; -*- Mode: Lisp -*-
;;;; definer.asd -- ;;;; ;;;; See the file COPYING for license and copying information.
(asdf:defsystem "DEFINER" :author "Marco Antoniotti" :components ((:file "definer-pkg") (:file "definer" :depends-on ("definer-pkg"))) )
;;;; end of file -- definer.asd --