From 5b59dfd4b86ca165c34815c45dbed6eb45928038 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 10 Mar 2013 22:27:21 +0100 Subject: [PATCH] *: License under GPL v3+. --- archive.sh | 15 +++++++++++++++ lib.m4 | 15 +++++++++++++++ lib.sh | 15 +++++++++++++++ setup.sh | 15 +++++++++++++++ tests/lib.sh.test | 15 +++++++++++++++ tests/run.sh | 15 +++++++++++++++ 6 files changed, 90 insertions(+) diff --git a/archive.sh b/archive.sh index 4a6d785..985cc51 100755 --- a/archive.sh +++ b/archive.sh @@ -5,6 +5,21 @@ # # Usage: ./archive.sh +# Copyright (C) 2010-2013 Simon Ruderich +# +# This program 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. +# +# This program 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 this program. If not, see . + git_clone() { git clone "$1" "$2" > /dev/null diff --git a/lib.m4 b/lib.m4 index 0d65268..2f008e4 100644 --- a/lib.m4 +++ b/lib.m4 @@ -5,6 +5,21 @@ dnl IF(OS, debian) dnl ... dnl FI dnl +dnl Copyright (C) 2009-2013 Simon Ruderich +dnl +dnl This program is free software: you can redistribute it and/or modify +dnl it under the terms of the GNU General Public License as published by +dnl the Free Software Foundation, either version 3 of the License, or +dnl (at your option) any later version. +dnl +dnl This program is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +dnl GNU General Public License for more details. +dnl +dnl You should have received a copy of the GNU General Public License +dnl along with this program. If not, see . +dnl dnl define(`IF', `ifelse(`$1', `$2',dnl')dnl define(`FI', `)dnl')dnl diff --git a/lib.sh b/lib.sh index 206f995..95c2fdf 100644 --- a/lib.sh +++ b/lib.sh @@ -2,6 +2,21 @@ # # Their setup.sh script sources this file. +# Copyright (C) 2009-2013 Simon Ruderich +# +# This program 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. +# +# This program 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 this program. If not, see . + # csh gives the error "Unknown colorls variable `su'." when used with newer # options supported by Zsh or GNU ls. diff --git a/setup.sh b/setup.sh index dfef305..d982e56 100755 --- a/setup.sh +++ b/setup.sh @@ -3,6 +3,21 @@ # Runs setup.sh in all configuration directories. Must be run in the main # configuration directory. +# Copyright (C) 2009-2013 Simon Ruderich +# +# This program 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. +# +# This program 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 this program. If not, see . + for path in `find . -name setup.sh -type f`; do # Skip this directory to prevent an infinite loop. diff --git a/tests/lib.sh.test b/tests/lib.sh.test index 3568c47..5db26dc 100644 --- a/tests/lib.sh.test +++ b/tests/lib.sh.test @@ -1,5 +1,20 @@ # Tests for lib.sh. +# Copyright (C) 2009-2013 Simon Ruderich +# +# This program 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. +# +# This program 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 this program. If not, see . + . ../lib.sh diff --git a/tests/run.sh b/tests/run.sh index 65dad84..a49ee1a 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -2,6 +2,21 @@ # Runs all tests in this directory. +# Copyright (C) 2009-2013 Simon Ruderich +# +# This program 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. +# +# This program 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 this program. If not, see . + # Get all test files. for file in *.test; do -- 2.43.2