diff --git a/gash/pattern.scm b/gash/pattern.scm index 4f9126b..eb8dff5 100644 --- a/gash/pattern.scm +++ b/gash/pattern.scm @@ -1,3 +1,21 @@ +;;; Gash -- Guile As SHell +;;; Copyright © 2018 Timothy Sample +;;; +;;; This file is part of Gash. +;;; +;;; Gash 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. +;;; +;;; Gash 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 Gash. If not, see . + (define-module (gash pattern) #:use-module (ice-9 match) #:use-module (ice-9 receive) diff --git a/gash/shell.scm b/gash/shell.scm index ef16161..0621a37 100644 --- a/gash/shell.scm +++ b/gash/shell.scm @@ -1,3 +1,21 @@ +;;; Gash -- Guile As SHell +;;; Copyright © 2018, 2019 Timothy Sample +;;; +;;; This file is part of Gash. +;;; +;;; Gash 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. +;;; +;;; Gash 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 Gash. If not, see . + (define-module (gash shell) #:use-module (gash built-ins) #:use-module (gash compat textual-ports) diff --git a/tests/bootstrap/bash-without-bash.scm b/tests/bootstrap/bash-without-bash.scm index fac7723..c6e4154 100644 --- a/tests/bootstrap/bash-without-bash.scm +++ b/tests/bootstrap/bash-without-bash.scm @@ -1,3 +1,21 @@ +;;; Gash -- Guile As SHell +;;; Copyright © 2018 Timothy Sample +;;; +;;; This file is part of Gash. +;;; +;;; Gash 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. +;;; +;;; Gash 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 Gash. If not, see . + (use-modules ((gnu packages bash) #:select (bash-minimal)) (gnu packages bootstrap) (guix build-system) diff --git a/tests/spec/oil.scm b/tests/spec/oil.scm index 1f07436..b54cd9f 100644 --- a/tests/spec/oil.scm +++ b/tests/spec/oil.scm @@ -1,3 +1,21 @@ +;;; Gash -- Guile As SHell +;;; Copyright © 2018 Timothy Sample +;;; +;;; This file is part of Gash. +;;; +;;; Gash 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. +;;; +;;; Gash 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 Gash. If not, see . + (use-modules (gnu packages bash) (gnu packages python) (gnu packages time) diff --git a/tests/unit/config.scm.in b/tests/unit/config.scm.in index 3f22a73..7292cb0 100644 --- a/tests/unit/config.scm.in +++ b/tests/unit/config.scm.in @@ -1,3 +1,21 @@ +;;; Gash -- Guile As SHell +;;; Copyright © 2018 Timothy Sample +;;; +;;; This file is part of Gash. +;;; +;;; Gash 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. +;;; +;;; Gash 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 Gash. If not, see . + (define-module (tests unit config) #:export (*guile-path*))