[mcclim-cvs] CVS mcclim/Drei/cl-automaton

thenriksen thenriksen at common-lisp.net
Tue Feb 6 12:53:09 UTC 2007


Update of /project/mcclim/cvsroot/mcclim/Drei/cl-automaton
In directory clnet:/tmp/cvs-serv15900

Modified Files:
	automaton-package.lisp automaton.lisp eqv-hash.lisp 
	regexp.lisp state-and-transition.lisp 
Log Message:
Updated the copyright headers as per request from the Debian packager
of McCLIM.


--- /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/automaton-package.lisp	2006/11/08 01:15:32	1.1
+++ /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/automaton-package.lisp	2007/02/06 12:53:09	1.2
@@ -1,7 +1,22 @@
-;;; -*- mode: lisp -*-
-;;; 
-;;; (c) copyright 2005 by Aleksandar Bakic (a_bakic at yahoo.com)
-;;; 
+;;; -*- Mode: Lisp; Package: AUTOMATON -*-
+;;;
+;;;  (c) copyright 2005-2007 by
+;;;           Aleksandar Bakic (a_bakic at yahoo.com)
+;;;
+;;; This library is free software; you can redistribute it and/or
+;;; modify it under the terms of the GNU Library General Public
+;;; License as published by the Free Software Foundation; either
+;;; version 2 of the License, or (at your option) any later version.
+;;;
+;;; This library is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;; Library General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Library General Public
+;;; License along with this library; if not, write to the
+;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;;; Boston, MA  02111-1307  USA.
 
 (defpackage #:eqv-hash
   (:use :cl)
--- /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/automaton.lisp	2007/01/14 17:33:51	1.2
+++ /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/automaton.lisp	2007/02/06 12:53:09	1.3
@@ -1,8 +1,23 @@
-;;; -*- mode: lisp -*-
-;;; 
-;;; (c) copyright 2005 by Aleksandar Bakic (a_bakic at yahoo.com)
-;;; 
-
+;;; -*- Mode: Lisp; Package: AUTOMATON -*-
+;;;
+;;;  (c) copyright 2005-2007 by
+;;;           Aleksandar Bakic (a_bakic at yahoo.com)
+;;;
+;;; This library is free software; you can redistribute it and/or
+;;; modify it under the terms of the GNU Library General Public
+;;; License as published by the Free Software Foundation; either
+;;; version 2 of the License, or (at your option) any later version.
+;;;
+;;; This library is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;; Library General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Library General Public
+;;; License along with this library; if not, write to the
+;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;;; Boston, MA  02111-1307  USA.
+;;;
 ;;; Derived from dk.brics.automaton v1.8.1, (c) 2001-2005 by Anders Møller
 ;;; - Functionality not used by the regular expression engine and not tested
 ;;;   has been omitted from this initial release.
--- /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/eqv-hash.lisp	2007/01/14 17:33:51	1.2
+++ /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/eqv-hash.lisp	2007/02/06 12:53:09	1.3
@@ -1,7 +1,22 @@
-;;; -*- mode: lisp -*-
-;;; 
-;;; (c) copyright 2005 by Aleksandar Bakic (a_bakic at yahoo.com)
-;;; 
+;;; -*- Mode: Lisp; Package: AUTOMATON -*-
+;;;
+;;;  (c) copyright 2005-2007 by
+;;;           Aleksandar Bakic (a_bakic at yahoo.com)
+;;;
+;;; This library is free software; you can redistribute it and/or
+;;; modify it under the terms of the GNU Library General Public
+;;; License as published by the Free Software Foundation; either
+;;; version 2 of the License, or (at your option) any later version.
+;;;
+;;; This library is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;; Library General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Library General Public
+;;; License along with this library; if not, write to the
+;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;;; Boston, MA  02111-1307  USA.
 
 ;;; A naive attempt at implementing the protocol proposed by Robert
 ;;; Strandh (see eqv-hash.txt).
--- /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/regexp.lisp	2006/11/08 01:15:32	1.1
+++ /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/regexp.lisp	2007/02/06 12:53:09	1.2
@@ -1,7 +1,22 @@
-;;; -*- mode: lisp -*-
-;;; 
-;;; (c) copyright 2005 by Aleksandar Bakic (a_bakic at yahoo.com)
-;;; 
+;;; -*- Mode: Lisp; Package: AUTOMATON -*-
+;;;
+;;;  (c) copyright 2005-2007 by
+;;;           Aleksandar Bakic (a_bakic at yahoo.com)
+;;;
+;;; This library is free software; you can redistribute it and/or
+;;; modify it under the terms of the GNU Library General Public
+;;; License as published by the Free Software Foundation; either
+;;; version 2 of the License, or (at your option) any later version.
+;;;
+;;; This library is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;; Library General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Library General Public
+;;; License along with this library; if not, write to the
+;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;;; Boston, MA  02111-1307  USA.
 
 ;;; Derived from dk.brics.automaton v1.8.1, (c) 2001-2005 by Anders Møller
 ;;; - Some comments have been copied verbatim from the original code.
--- /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/state-and-transition.lisp	2007/01/14 17:33:51	1.2
+++ /project/mcclim/cvsroot/mcclim/Drei/cl-automaton/state-and-transition.lisp	2007/02/06 12:53:09	1.3
@@ -1,7 +1,22 @@
-;;; -*- mode: lisp -*-
-;;; 
-;;; (c) copyright 2005 by Aleksandar Bakic (a_bakic at yahoo.com)
-;;; 
+;;; -*- Mode: Lisp; Package: AUTOMATON -*-
+;;;
+;;;  (c) copyright 2005-2007 by
+;;;           Aleksandar Bakic (a_bakic at yahoo.com)
+;;;
+;;; This library is free software; you can redistribute it and/or
+;;; modify it under the terms of the GNU Library General Public
+;;; License as published by the Free Software Foundation; either
+;;; version 2 of the License, or (at your option) any later version.
+;;;
+;;; This library is distributed in the hope that it will be useful,
+;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;; Library General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU Library General Public
+;;; License along with this library; if not, write to the
+;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+;;; Boston, MA  02111-1307  USA.
 
 ;;; Derived from dk.brics.automaton v1.8.1, (c) 2001-2005 by Anders Møller
 




More information about the Mcclim-cvs mailing list