Skip to content

Commit 6e7d97e

Browse files
committed
Comply with REUSE version 3.0 for licensing declaration.
1 parent 85ef216 commit 6e7d97e

26 files changed

+136
-126
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
# SPDX-FileCopyrightText: 2015 Arthur A. Gleckler <[email protected]>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
*~

.reuse/dep5

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2+
Upstream-Name: SRFI 64
3+
Upstream-Contact: Arthur A. Gleckler <[email protected]>
4+
Source: https://srfi.schemers.org/srfi-64/srfi-64.html
5+
6+
# Sample paragraph, commented out:
7+
#
8+
# Files: src/*
9+
# Copyright: $YEAR $NAME <$CONTACT>
10+
# License: ...

LICENSES/MIT.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) <year> <copyright holders>
4+
5+
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:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
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.

README.org

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2005 - 2006 Per Bothner
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
* SRFI 64: A Scheme API for test suites
26

37
** by Per Bothner

contrib/README.org

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
# SPDX-FileCopyrightText: 2020 Taylan Kammer <[email protected]>
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
This directory contains implementations of SRFI 64 provided by people
2-
other than Per Bothner, the author of the SRFI.
6+
other than Per Bothner, the author of the SRFI.

contrib/taylan.kammer/64.sld

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
;;;; SPDX-FileCopyrightText: 2015 Taylan Kammer <[email protected]>
2+
;;;;
3+
;;;; SPDX-License-Identifier: MIT
4+
15
(define-library (srfi 64)
26
(import
37
(srfi 64 test-runner)

contrib/taylan.kammer/64/execution.body.scm

Lines changed: 7 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,10 @@
1-
;; Copyright (c) 2005, 2006, 2007, 2012, 2013 Per Bothner
2-
;; Added "full" support for Chicken, Gauche, Guile and SISC.
3-
;; Alex Shinn, Copyright (c) 2005.
4-
;; Modified for Scheme Spheres by Álvaro Castro-Castilla, Copyright (c) 2012.
5-
;; Support for Guile 2 by Mark H Weaver <[email protected]>, Copyright (c) 2014.
6-
;; Refactored by Taylan Ulrich Bayırlı/Kammer, Copyright (c) 2014, 2015.
7-
;;
8-
;; Permission is hereby granted, free of charge, to any person
9-
;; obtaining a copy of this software and associated documentation
10-
;; files (the "Software"), to deal in the Software without
11-
;; restriction, including without limitation the rights to use, copy,
12-
;; modify, merge, publish, distribute, sublicense, and/or sell copies
13-
;; of the Software, and to permit persons to whom the Software is
14-
;; furnished to do so, subject to the following conditions:
15-
;;
16-
;; The above copyright notice and this permission notice shall be
17-
;; included in all copies or substantial portions of the Software.
18-
;;
19-
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20-
;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21-
;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22-
;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
23-
;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
24-
;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25-
;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26-
;; SOFTWARE.
1+
;;;; SPDX-FileCopyrightText: 2005 - 2013 Per Bothner <[email protected]>
2+
;;;; SPDX-FileCopyrightText: 2005 Alex Shinn
3+
;;;; SPDX-FileCopyrightText: 2012 Álvaro Castro-Castilla
4+
;;;; SPDX-FileCopyrightText: 2014 Mark H Weaver <[email protected]>
5+
;;;; SPDX-FileCopyrightText: 2014 - 2015 Taylan Kammer <[email protected]>
6+
;;;;
7+
;;;; SPDX-License-Identifier: MIT
278

289
;;; Note: to prevent producing massive amounts of code from the macro-expand
2910
;;; phase (which makes compile times suffer and may hit code size limits in some

contrib/taylan.kammer/64/execution.exports.sld

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
;;;; SPDX-FileCopyrightText: 2015 Taylan Kammer <[email protected]>
2+
;;;;
3+
;;;; SPDX-License-Identifier: MIT
4+
15
(export
26
test-begin test-end test-group test-group-with-cleanup
37

contrib/taylan.kammer/64/execution.sld

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
;;;; SPDX-FileCopyrightText: 2015 Taylan Kammer <[email protected]>
2+
;;;;
3+
;;;; SPDX-License-Identifier: MIT
4+
15
(define-library (srfi 64 execution)
26
(import
37
(scheme base)

contrib/taylan.kammer/64/source-info.body.scm

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,6 @@
1-
;; Copyright (c) 2015 Taylan Ulrich Bayırlı/Kammer <[email protected]>
2-
;;
3-
;; Permission is hereby granted, free of charge, to any person
4-
;; obtaining a copy of this software and associated documentation
5-
;; files (the "Software"), to deal in the Software without
6-
;; restriction, including without limitation the rights to use, copy,
7-
;; modify, merge, publish, distribute, sublicense, and/or sell copies
8-
;; of the Software, and to permit persons to whom the Software is
9-
;; furnished to do so, subject to the following conditions:
10-
;;
11-
;; The above copyright notice and this permission notice shall be
12-
;; included in all copies or substantial portions of the Software.
13-
;;
14-
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15-
;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16-
;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17-
;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
18-
;; BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19-
;; ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20-
;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
;; SOFTWARE.
1+
;;;; SPDX-FileCopyrightText: 2015 Taylan Kammer <[email protected]>
2+
;;;;
3+
;;;; SPDX-License-Identifier: MIT
224

235
;;; In some systems, a macro use like (source-info ...), that resides in a
246
;;; syntax-rules macro body, first gets inserted into the place where the

0 commit comments

Comments
 (0)