Skip to content

Commit

Permalink
Change the license to MIT.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukamachi committed Aug 11, 2022
1 parent 53a93ff commit 98e1ba3
Show file tree
Hide file tree
Showing 9 changed files with 89 additions and 200 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2011 Eitaro Fukamachi

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.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).

## Copyright

Copyright (c) 2011-2015 Eitaro Fukamachi & [contributors](https://github.com/fukamachi/clack/graphs/contributors)
Copyright (c) 2011 Eitaro Fukamachi & [contributors](https://github.com/fukamachi/clack/graphs/contributors)

## License

Licensed under the LLGPL License.
Licensed under the MIT License.
35 changes: 8 additions & 27 deletions clack-handler-fcgi.asd
Original file line number Diff line number Diff line change
@@ -1,30 +1,11 @@
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <e.arrows@gmail.com>
Clack is freely distributable under the LLGPL License.
|#

#|
Clack.Handler.Fcgi - Clack handler for FastCGI.
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#

(in-package :cl-user)
(defpackage :clack-handler-fcgi-asd
(:use :cl :asdf))
(in-package :clack-handler-fcgi-asd)

(defsystem clack-handler-fcgi
:version "0.3.1"
(defsystem "clack-handler-fcgi"
:version "0.4.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:cl-fastcgi
:alexandria
:flexi-streams
:usocket
:quri)
:license "MIT"
:depends-on ("cl-fastcgi"
"alexandria"
"flexi-streams"
"usocket"
"quri")
:components ((:file "src/handler/fcgi"))
:description "Clack handler for FastCGI.")
37 changes: 9 additions & 28 deletions clack-handler-hunchentoot.asd
Original file line number Diff line number Diff line change
@@ -1,31 +1,12 @@
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <e.arrows@gmail.com>
Clack is freely distributable under the LLGPL License.
|#

#|
Clack.Handler.Hunchentoot - Clack handler for Hunchentoot.
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#

(in-package :cl-user)
(defpackage :clack-handler-hunchentoot-asd
(:use :cl :asdf))
(in-package :clack-handler-hunchentoot-asd)

(defsystem clack-handler-hunchentoot
:version "0.4.0"
(defsystem "clack-handler-hunchentoot"
:version "0.5.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:hunchentoot
:clack-socket
:flexi-streams
:bordeaux-threads
:split-sequence
:alexandria)
:license "MIT"
:depends-on ("hunchentoot"
"clack-socket"
"flexi-streams"
"bordeaux-threads"
"split-sequence"
"alexandria")
:components ((:file "src/handler/hunchentoot"))
:description "Clack handler for Hunchentoot.")
38 changes: 9 additions & 29 deletions clack-handler-toot.asd
Original file line number Diff line number Diff line change
@@ -1,32 +1,12 @@
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <e.arrows@gmail.com>
Clack is freely distributable under the LLGPL License.
|#

#|
Clack.Handler.Toot - Clack handler for Toot.
Author: Eitaro Fukamachi (e.arrows@gmail.com)
Author: κeen
|#

(in-package :cl-user)
(defpackage :clack-handler-toot-asd
(:use :cl :asdf))
(in-package :clack-handler-toot-asd)

(defsystem clack-handler-toot
:version "0.2.0"
(defsystem "clack-handler-toot"
:version "0.3.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:toot
:flexi-streams
:bordeaux-threads
:cl-ppcre
:split-sequence
:alexandria)
:license "MIT"
:depends-on ("toot"
"flexi-streams"
"bordeaux-threads"
"cl-ppcre"
"split-sequence"
"alexandria")
:components ((:file "src/handler/toot"))
:description "Clack handler for Toot.")
45 changes: 13 additions & 32 deletions clack-handler-wookie.asd
Original file line number Diff line number Diff line change
@@ -1,35 +1,16 @@
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <e.arrows@gmail.com>
Clack is freely distributable under the LLGPL License.
|#

#|
Clack.Handler.Wookie - Clack handler for Wookie.
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#

(in-package :cl-user)
(defpackage :clack-handler-wookie-asd
(:use :cl :asdf))
(in-package :clack-handler-wookie-asd)

(defsystem clack-handler-wookie
:version "0.2.0"
(defsystem "clack-handler-wookie"
:version "0.3.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:wookie
:clack-socket
:cl-async
:fast-http
:quri
:flexi-streams
:babel
:fast-io
:split-sequence
:alexandria)
:license "MIT"
:depends-on ("wookie"
"clack-socket"
"cl-async"
"fast-http"
"quri"
"flexi-streams"
"babel"
"fast-io"
"split-sequence"
"alexandria")
:components ((:file "src/handler/wookie"))
:description "Clack handler for Wookie.")
11 changes: 3 additions & 8 deletions clack-socket.asd
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
(in-package :cl-user)
(defpackage clack-socket-asd
(:use :cl :asdf))
(in-package :clack-socket-asd)

(defsystem clack-socket
:version "0.1"
(defsystem "clack-socket"
:version "0.2.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:license "MIT"
:components ((:file "src/socket")))
43 changes: 12 additions & 31 deletions clack-test.asd
Original file line number Diff line number Diff line change
@@ -1,35 +1,16 @@
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <e.arrows@gmail.com>
Clack is freely distributable under the LLGPL License.
|#

#|
Clack.Test - Testing Clack Applications.
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#

(in-package :cl-user)
(defpackage clack-test-asd
(:use :cl :asdf))
(in-package :clack-test-asd)

(defsystem clack-test
:version "0.1.2"
(defsystem "clack-test"
:version "0.2.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:clack
:clack-handler-hunchentoot
:rove
:bordeaux-threads
:ironclad
:usocket
:dexador
:flexi-streams
:http-body)
:license "MIT"
:depends-on ("clack"
"clack-handler-hunchentoot"
"rove"
"bordeaux-threads"
"ironclad"
"usocket"
"dexador"
"flexi-streams"
"http-body")
:components ((:file "src/test")
(:file "src/test/suite" :depends-on ("src/test")))
:description "Testing Clack Applications.")
55 changes: 12 additions & 43 deletions clack.asd
Original file line number Diff line number Diff line change
@@ -1,49 +1,18 @@
#|
This file is a part of Clack package.
URL: http://github.com/fukamachi/clack
Copyright (c) 2011 Eitaro Fukamachi <e.arrows@gmail.com>
Clack is freely distributable under the LLGPL License.
|#

#|
Clack is a Web server Interface for Common Lisp.
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#

(in-package :cl-user)
(defpackage clack-asd
(:use :cl :asdf))
(in-package :clack-asd)

(defsystem clack
:version "2.0.0"
(defsystem "clack"
:version "2.1.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:lack
:lack-middleware-backtrace
:lack-util
:bordeaux-threads
:usocket
:swank
:alexandria
:uiop)
:license "MIT"
:depends-on ("lack"
"lack-middleware-backtrace"
"lack-util"
"bordeaux-threads"
"usocket"
"swank"
"alexandria"
"uiop")
:components ((:module "src"
:components
((:file "clack" :depends-on ("handler" "util"))
(:file "handler" :depends-on ("util"))
(:file "util"))))
:description "Web application environment for Common Lisp"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq))))
:description "Web application environment for Common Lisp")

0 comments on commit 98e1ba3

Please sign in to comment.