From 54df8effd9d9eccac917509590286b5ac5f9cb30 Mon Sep 17 00:00:00 2001
From: Vladimir Sedach <vas@oneofus.la>
Date: Wed, 4 Jul 2018 15:14:48 -0700
Subject: [PATCH] Added SPDX license identifiers. Added copyrights and ISC
 license to tests

---
 future.lisp         |  2 ++
 library.lisp        |  2 ++
 make-future.lisp    |  2 ++
 scheduler.lisp      |  2 ++
 test/benchmark.lisp | 20 +++++++++++++++++++-
 test/test.lisp      | 19 ++++++++++++++++++-
 6 files changed, 45 insertions(+), 2 deletions(-)

diff --git a/future.lisp b/future.lisp
index 9e650e8..07d329f 100644
--- a/future.lisp
+++ b/future.lisp
@@ -3,6 +3,8 @@
 
 ;; This file is part of Eager Future2.
 
+;; SPDX-License-Identifier: LGPL-3.0-or-later
+
 ;; Eager Future2 is free software: you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public License
 ;; as published by the Free Software Foundation, either version 3 of
diff --git a/library.lisp b/library.lisp
index 43b990e..857b451 100644
--- a/library.lisp
+++ b/library.lisp
@@ -2,6 +2,8 @@
 
 ;; This file is part of Eager Future2.
 
+;; SPDX-License-Identifier: LGPL-3.0-or-later
+
 ;; Eager Future2 is free software: you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public License
 ;; as published by the Free Software Foundation, either version 3 of
diff --git a/make-future.lisp b/make-future.lisp
index d60db52..5364a7f 100644
--- a/make-future.lisp
+++ b/make-future.lisp
@@ -2,6 +2,8 @@
 
 ;; This file is part of Eager Future2.
 
+;; SPDX-License-Identifier: LGPL-3.0-or-later
+
 ;; Eager Future2 is free software: you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public License
 ;; as published by the Free Software Foundation, either version 3 of
diff --git a/scheduler.lisp b/scheduler.lisp
index 2f03846..fec54e9 100644
--- a/scheduler.lisp
+++ b/scheduler.lisp
@@ -2,6 +2,8 @@
 
 ;; This file is part of Eager Future2.
 
+;; SPDX-License-Identifier: LGPL-3.0-or-later
+
 ;; Eager Future2 is free software: you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public License
 ;; as published by the Free Software Foundation, either version 3 of
diff --git a/test/benchmark.lisp b/test/benchmark.lisp
index 3b0ba09..0bd89db 100644
--- a/test/benchmark.lisp
+++ b/test/benchmark.lisp
@@ -1,4 +1,22 @@
-;;; The contents of this file are released into the public domain.
+;; Copyright 1993 Marc Feeley <feeley@iro.umontreal.ca>
+;; Copyright 2011 Vladimir Sedach <vas@oneofus.la>
+
+;; SPDX-License-Identifier: ISC
+
+;; Permission to use, copy, modify, and/or distribute this software
+;; for any purpose with or without fee is hereby granted, provided
+;; that the above copyright notice and this permission notice appear
+;; in all copies.
+
+;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+;; WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+;; WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
+;; AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
+;; CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+;; OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+;; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+;; CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
 
 ;;; Benchmarks from Appendix A of Marc Feeley's PhD dissertation:
 ;;; Marc Feeley. An Efficient and General Implementation of Futures on
diff --git a/test/test.lisp b/test/test.lisp
index b85688f..b26ef6a 100644
--- a/test/test.lisp
+++ b/test/test.lisp
@@ -1,4 +1,21 @@
-;;; The contents of this file are released into the public domain.
+;; Copyright 2010, 2011 Vladimir Sedach <vas@oneofus.la>
+;; Copyright 2011 Samuel Edwin Ward <seward@cytochro.me>
+
+;; SPDX-License-Identifier: ISC
+
+;; Permission to use, copy, modify, and/or distribute this software
+;; for any purpose with or without fee is hereby granted, provided
+;; that the above copyright notice and this permission notice appear
+;; in all copies.
+
+;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+;; WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+;; WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
+;; AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
+;; CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
+;; OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+;; NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+;; CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
 (in-package #:test.eager-future2)
 
-- 
GitLab