diff options
-rw-r--r-- | ccwl/ccwl.scm | 27 | ||||
-rw-r--r-- | ccwl/utils.scm | 24 | ||||
-rw-r--r-- | ccwl/yaml.scm | 30 |
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) |