aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-21 08:08:26 -0600
committerColin Okay <okay@toyful.space>2022-02-21 08:08:26 -0600
commit6f05e6beaecf5bf3d91ad883f00ae2d0c397b895 (patch)
treeba48f495b7dfee363c13bdc8927ad97018473975
parent70def00400c88f4d872a58b2f76449077ece22ca (diff)
adding copyright notices
-rw-r--r--clpmfile.lock16
-rw-r--r--lazybones-documentation.lisp16
-rw-r--r--lazybones-hunchentoot.lisp16
-rw-r--r--lazybones.lisp16
-rw-r--r--macros.lisp16
5 files changed, 72 insertions, 8 deletions
diff --git a/clpmfile.lock b/clpmfile.lock
index 54750b5..deb0fbe 100644
--- a/clpmfile.lock
+++ b/clpmfile.lock
@@ -29,28 +29,28 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
:releases
-("alexandria" :version "2021-12-09" :source "quicklisp" :systems ("alexandria"))
+("alexandria" :version "2022-02-20" :source "quicklisp" :systems ("alexandria"))
("babel" :version "2020-09-25" :source "quicklisp" :systems ("babel"))
("bordeaux-threads" :version "2020-06-10" :source "quicklisp" :systems
("bordeaux-threads"))
("cffi" :version "2021-04-11" :source "quicklisp" :systems
("cffi" "cffi-grovel" "cffi-toolchain"))
("chunga" :version "2020-04-27" :source "quicklisp" :systems ("chunga"))
-("cl+ssl" :version "2021-12-30" :source "quicklisp" :systems ("cl+ssl"))
+("cl+ssl" :version "2022-02-20" :source "quicklisp" :systems ("cl+ssl"))
("cl-annot" :version "2015-06-08" :source "quicklisp" :systems ("cl-annot"))
("cl-base64" :version "2020-10-16" :source "quicklisp" :systems ("cl-base64"))
("cl-change-case" :version "2021-04-11" :source "quicklisp" :systems
("cl-change-case"))
-("cl-fad" :version "2021-01-24" :source "quicklisp" :systems ("cl-fad"))
-("cl-ppcre" :version "2019-05-21" :source "quicklisp" :systems
+("cl-fad" :version "2022-02-20" :source "quicklisp" :systems ("cl-fad"))
+("cl-ppcre" :version "2022-02-20" :source "quicklisp" :systems
("cl-ppcre" "cl-ppcre-unicode"))
-("cl-str" :version "2021-05-31" :source "quicklisp" :systems ("str"))
+("cl-str" :version "2022-02-20" :source "quicklisp" :systems ("str"))
("cl-syntax" :version "2015-04-07" :source "quicklisp" :systems
("cl-syntax" "cl-syntax-annot"))
("cl-unicode" :version "2021-02-28" :source "quicklisp" :systems ("cl-unicode"))
-("closer-mop" :version "2021-12-30" :source "quicklisp" :systems ("closer-mop"))
+("closer-mop" :version "2022-02-20" :source "quicklisp" :systems ("closer-mop"))
("fast-io" :version "2020-09-25" :source "quicklisp" :systems ("fast-io"))
-("flexi-streams" :version "2021-08-07" :source "quicklisp" :systems
+("flexi-streams" :version "2022-02-20" :source "quicklisp" :systems
("flexi-streams"))
("hunchentoot" :version "2020-06-10" :source "quicklisp" :systems
("hunchentoot"))
@@ -61,7 +61,7 @@
("lisp-namespace" :version "2021-10-21" :source "quicklisp" :systems
("lisp-namespace"))
("md5" :version "2021-06-30" :source "quicklisp" :systems ("md5"))
-("named-readtables" :version "2021-12-09" :source "quicklisp" :systems
+("named-readtables" :version "2022-02-20" :source "quicklisp" :systems
("named-readtables"))
("proc-parse" :version "2019-08-13" :source "quicklisp" :systems ("proc-parse"))
("rfc2388" :version "2018-08-31" :source "quicklisp" :systems ("rfc2388"))
diff --git a/lazybones-documentation.lisp b/lazybones-documentation.lisp
index 48e55b2..9e837d0 100644
--- a/lazybones-documentation.lisp
+++ b/lazybones-documentation.lisp
@@ -1,3 +1,19 @@
+;; Copyright (C) 2022 Colin Okay
+
+;; This program is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU Affero General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+
+;; This program 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 Affero General Public License for more details.
+
+;; You should have received a copy of the GNU Affero General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
;;;; lazybones-documentation.lisp -- documenting APP instances
(in-package :lazybones)
diff --git a/lazybones-hunchentoot.lisp b/lazybones-hunchentoot.lisp
index 4e4ca15..24fe5e1 100644
--- a/lazybones-hunchentoot.lisp
+++ b/lazybones-hunchentoot.lisp
@@ -1,3 +1,19 @@
+;; Copyright (C) 2022 Colin Okay
+
+;; This program is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU Affero General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+
+;; This program 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 Affero General Public License for more details.
+
+;; You should have received a copy of the GNU Affero General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
;;;; lazybones-hunchentoot.lisp -- hunchentoot backend for lazybones
(defpackage #:lazybones.backend/hunchentoot
diff --git a/lazybones.lisp b/lazybones.lisp
index e23037f..ec3d032 100644
--- a/lazybones.lisp
+++ b/lazybones.lisp
@@ -1,3 +1,19 @@
+;; Copyright (C) 2022 Colin Okay
+
+;; This program is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU Affero General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+
+;; This program 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 Affero General Public License for more details.
+
+;; You should have received a copy of the GNU Affero General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
;;;; lazybones.lisp
(in-package #:lazybones)
diff --git a/macros.lisp b/macros.lisp
index 3832296..93f1e47 100644
--- a/macros.lisp
+++ b/macros.lisp
@@ -1,3 +1,19 @@
+;; Copyright (C) 2022 Colin Okay
+
+;; This program is free software: you can redistribute it and/or modify
+;; it under the terms of the GNU Affero General Public License as
+;; published by the Free Software Foundation, either version 3 of the
+;; License, or (at your option) any later version.
+
+;; This program 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 Affero General Public License for more details.
+
+;; You should have received a copy of the GNU Affero General Public License
+;; along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+
;;;; macros.lisp --- utility macros