summaryrefslogtreecommitdiff
path: root/ccwl
diff options
context:
space:
mode:
authorArun Isaac2021-04-16 23:22:39 +0530
committerArun Isaac2021-04-16 23:58:11 +0530
commit5ff5000d757f7b877127ecfc8d421e2382cea05f (patch)
tree2a2f588c5c5db4972bb8077212d56b58d8e16c82 /ccwl
parent34b020eecc80157677d18350f8e7cc1f115c330a (diff)
downloadccwl-5ff5000d757f7b877127ecfc8d421e2382cea05f.tar.gz
ccwl-5ff5000d757f7b877127ecfc8d421e2382cea05f.tar.lz
ccwl-5ff5000d757f7b877127ecfc8d421e2382cea05f.zip
Add copyright and commentary sections to files.
* ccwl/ccwl.scm, ccwl/utils.scm, ccwl/yaml.scm: Add copyright and commentary sections.
Diffstat (limited to 'ccwl')
-rw-r--r--ccwl/ccwl.scm27
-rw-r--r--ccwl/utils.scm24
-rw-r--r--ccwl/yaml.scm30
3 files changed, 74 insertions, 7 deletions
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm
index 9492812..aa417fd 100644
--- a/ccwl/ccwl.scm
+++ b/ccwl/ccwl.scm
@@ -1,7 +1,26 @@
-;;
-;; CWL generator
-;;
-;; This file implements a generator to generate CWL files.
+;;; ccwl --- Concise Common Workflow Language
+;;; Copyright © 2021 Arun I <arunisaac@systemreboot.net>
+;;;
+;;; This file is part of ccwl.
+;;;
+;;; ccwl is free software: you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; ccwl 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
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with ccwl. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; This is the main module that presents the public interface to ccwl.
+
+;;; Code:
(define-module (ccwl ccwl)
#:use-module (srfi srfi-1)
diff --git a/ccwl/utils.scm b/ccwl/utils.scm
index 912fd16..f4a0659 100644
--- a/ccwl/utils.scm
+++ b/ccwl/utils.scm
@@ -1,3 +1,27 @@
+;;; ccwl --- Concise Common Workflow Language
+;;; Copyright © 2021 Arun I <arunisaac@systemreboot.net>
+;;;
+;;; This file is part of ccwl.
+;;;
+;;; ccwl is free software: you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; ccwl 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
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with ccwl. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; A few useful utilities
+
+;;; Code:
+
(define-module (ccwl utils)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26)
diff --git a/ccwl/yaml.scm b/ccwl/yaml.scm
index ed761de..abf1c6e 100644
--- a/ccwl/yaml.scm
+++ b/ccwl/yaml.scm
@@ -1,7 +1,31 @@
+;;; ccwl --- Concise Common Workflow Language
+;;; Copyright © 2021 Arun I <arunisaac@systemreboot.net>
+;;;
+;;; This file is part of ccwl.
+;;;
+;;; ccwl is free software: you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation, either version 3 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; ccwl 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
+;;; General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with ccwl. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; This file implements a function scm->yaml to convert a scm tree to
+;; YAML. The inverse function yaml->scm is not implemented.
;;
-;; scm->yaml
-;;
-;; This file implements a library to convert a scm tree to yaml.
+;; If you are interested in writing a proper and complete YAML library
+;; with both a scm->yaml and a yaml->scm, please feel free (under the
+;; terms of the license mentioned earlier) to steal this code.
+
+;;; Code:
(define-module (ccwl yaml)
#:use-module (srfi srfi-26)