From 5fdb50b8bec06a35b601378f36cfc1baffc2147c Mon Sep 17 00:00:00 2001 From: Christoph Finkensiep Date: Mon, 16 Apr 2012 10:26:27 +0200 Subject: [PATCH] License added, README is now a bit more descriptive and the Hunchentoot has been added as a dependency. --- LICENSE | 7 +++++++ README | 4 +++- m-server.asd | 15 +++++++++++---- package.lisp | 3 +-- 4 files changed, 22 insertions(+), 7 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..acc173a --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Copyright (c) 2012 Christoph Finkensiep + +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. \ No newline at end of file diff --git a/README b/README index 76ebc6c..af3ed4e 100644 --- a/README +++ b/README @@ -1 +1,3 @@ -This is the stub README.txt for the "m-server" project. +mensa_server is a Common Lisp server for the Socialunch app (mensa_app). +It defines an ASDF named called "m-server". +For the interface definition see api.txt. \ No newline at end of file diff --git a/m-server.asd b/m-server.asd index ab35cfa..3e756a3 100644 --- a/m-server.asd +++ b/m-server.asd @@ -2,9 +2,16 @@ (asdf:defsystem #:m-server :serial t - :description "Describe m-server here" - :author "Your Name " - :license "Specify license here" + :depends-on (#:hunchentoot) :components ((:file "package") - (:file "m-server"))) + (:file "m-server")) + :description "m-server is a CL server for the Socialunch app." + :author "Christoph Finkensiep " + :license "Copyright (c) 2012 Christoph Finkensiep + +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/package.lisp b/package.lisp index aa634b7..f0c033c 100644 --- a/package.lisp +++ b/package.lisp @@ -1,5 +1,4 @@ ;;;; package.lisp (defpackage #:m-server - (:use #:cl)) - + (:use #:cl)) \ No newline at end of file