From 1af431eb98a5b3b9fc941c91bd0dc2c3102e489f Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Wed, 26 Jun 2024 15:33:36 +0800 Subject: [PATCH 1/3] Set copyright and authors for SRFI 8 and 78 --- AUTHORS | 6 ++++++ srfi/srfi-78-test.scm | 18 ++++++++++++++++++ srfi/srfi-78.scm | 2 +- srfi/srfi-8-test.scm | 17 +++++++++++++++-- srfi/srfi-8.scm | 17 +++++++++++++++-- 5 files changed, 55 insertions(+), 5 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 00000000..4ff2d065 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,6 @@ +# Names should be added to this file like so: +# Name or Organization + +Liii Network Inc. + +沈达 diff --git a/srfi/srfi-78-test.scm b/srfi/srfi-78-test.scm index 08f81616..bac70d8c 100644 --- a/srfi/srfi-78-test.scm +++ b/srfi/srfi-78-test.scm @@ -1,6 +1,24 @@ + + (autoload 'srfi-78 "srfi-78.scm") (require 'srfi-78) +; +; Copyright (C) 2024 The S7 SRFI Authors +; +; Licensed under the Apache License, Version 2.0 (the "License"); +; you may not use this file except in compliance with the License. +; You may obtain a copy of the License at +; +; http://www.apache.org/licenses/LICENSE-2.0 +; +; Unless required by applicable law or agreed to in writing, software +; distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +; WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +; License for the specific language governing permissions and limitations +; under the License. +; + (display "----------\n") (display "check mode: report\n") diff --git a/srfi/srfi-78.scm b/srfi/srfi-78.scm index 048d319a..7ba9ced6 100644 --- a/srfi/srfi-78.scm +++ b/srfi/srfi-78.scm @@ -34,7 +34,7 @@ ; ; Naming convention "check:" is used only internally. ; -; Copyright (c) 2024 Da @ Liii Network Inc. +; Copyright (c) 2024 The S7 SRFI Authors ; Follow the same License as the original one (provide 'srfi-78) diff --git a/srfi/srfi-8-test.scm b/srfi/srfi-8-test.scm index 772d3738..4fc5727d 100644 --- a/srfi/srfi-8-test.scm +++ b/srfi/srfi-8-test.scm @@ -1,5 +1,18 @@ -;;; Copyright (c) 2024 Da @ Liii Network Inc -;;; All rights reverved. +; +; Copyright (C) 2024 The S7 SRFI Authors +; +; Licensed under the Apache License, Version 2.0 (the "License"); +; you may not use this file except in compliance with the License. +; You may obtain a copy of the License at +; +; http://www.apache.org/licenses/LICENSE-2.0 +; +; Unless required by applicable law or agreed to in writing, software +; distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +; WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +; License for the specific language governing permissions and limitations +; under the License. +; (autoload 'check "srfi-78.scm") (autoload 'receive "srfi-8.scm") diff --git a/srfi/srfi-8.scm b/srfi/srfi-8.scm index 84cdb90f..951c1154 100644 --- a/srfi/srfi-8.scm +++ b/srfi/srfi-8.scm @@ -1,5 +1,18 @@ -;;; Copyright (c) 2024 Da @ Liii Network Inc -;;; All rights reverved. +; +; Copyright (C) 2024 The S7 SRFI Authors +; +; Licensed under the Apache License, Version 2.0 (the "License"); +; you may not use this file except in compliance with the License. +; You may obtain a copy of the License at +; +; http://www.apache.org/licenses/LICENSE-2.0 +; +; Unless required by applicable law or agreed to in writing, software +; distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +; WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +; License for the specific language governing permissions and limitations +; under the License. +; (provide 'srfi-8) (provide 'receive) -- Gitee From 111fea963dab156e0775bf8a66e6a3f04f986df1 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Wed, 26 Jun 2024 15:36:01 +0800 Subject: [PATCH 2/3] wi --- srfi/srfi-78-test.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/srfi/srfi-78-test.scm b/srfi/srfi-78-test.scm index bac70d8c..bb2dfd9a 100644 --- a/srfi/srfi-78-test.scm +++ b/srfi/srfi-78-test.scm @@ -1,8 +1,3 @@ - - -(autoload 'srfi-78 "srfi-78.scm") -(require 'srfi-78) - ; ; Copyright (C) 2024 The S7 SRFI Authors ; @@ -19,6 +14,9 @@ ; under the License. ; +(autoload 'srfi-78 "srfi-78.scm") +(require 'srfi-78) + (display "----------\n") (display "check mode: report\n") -- Gitee From 7c4bccd14a476568bdf8fe36ad5c6fc493be3811 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Wed, 26 Jun 2024 15:38:07 +0800 Subject: [PATCH 3/3] wip --- AUTHORS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AUTHORS b/AUTHORS index 4ff2d065..dd707a43 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,6 @@ +# The original authors of the SRFI reference IMPL are kept in indivisual files +# This AUTHORS file is for S7 SRFI authors. +# # Names should be added to this file like so: # Name or Organization -- Gitee