public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/libbash:master commit in: /, src/builtins/tests/, src/core/, bashast/gunit/, src/, bashast/, test/, ...
@ 2011-03-26 12:34 Petteri Räty
  0 siblings, 0 replies; 2+ messages in thread
From: Petteri Räty @ 2011-03-26 12:34 UTC (permalink / raw
  To: gentoo-commits

commit:     a7fead521d21625dd0b378c18d4739b0ce5c5f55
Author:     Mu Qiao <qiaomuf <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 21 06:59:08 2011 +0000
Commit:     Petteri Räty <betelgeuse <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 12:30:27 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/libbash.git;a=commit;h=a7fead52

Fix copyright format, add missing copyright

Use the format according to
http://www.gnu.org/licenses/gpl-howto.html, unify indentation.

---
 Makefile.am                          |    3 ++-
 README                               |    3 ++-
 bashast/bashast.g                    |   28 ++++++++++++++--------------
 bashast/bashwalker.g                 |   18 ++++++++++++++++++
 bashast/features_script/features.sh  |    3 ++-
 bashast/gunit/arith_main.gunit       |   27 ++++++++++++++-------------
 bashast/gunit/array.gunit            |   18 ++++++++++++++++++
 bashast/gunit/assoc_array.gunit      |   18 ++++++++++++++++++
 bashast/gunit/brace.gunit            |   18 ++++++++++++++++++
 bashast/gunit/command_sub.gunit      |   18 ++++++++++++++++++
 bashast/gunit/comment.gunit          |   18 ++++++++++++++++++
 bashast/gunit/compound.gunit         |   18 ++++++++++++++++++
 bashast/gunit/cond_main.gunit        |   27 ++++++++++++++-------------
 bashast/gunit/continued_lines.gunit  |   18 ++++++++++++++++++
 bashast/gunit/expansions.gunit       |   18 ++++++++++++++++++
 bashast/gunit/fname.gunit            |   18 ++++++++++++++++++
 bashast/gunit/function.gunit         |   18 ++++++++++++++++++
 bashast/gunit/list.gunit             |   18 ++++++++++++++++++
 bashast/gunit/param_main.gunit       |   27 ++++++++++++++-------------
 bashast/gunit/pipeline.gunit         |   18 ++++++++++++++++++
 bashast/gunit/proc_sub.gunit         |   18 ++++++++++++++++++
 bashast/gunit/redir.gunit            |   28 ++++++++++++++--------------
 bashast/gunit/runtests.sh            |    3 ++-
 bashast/gunit/simp_command.gunit     |   18 ++++++++++++++++++
 bashast/gunit/simp_prog.gunit        |   18 ++++++++++++++++++
 configure.ac                         |    3 ++-
 src/builtins/boolean_builtins.h      |    3 ++-
 src/builtins/echo_builtin.cpp        |    3 ++-
 src/builtins/echo_builtin.h          |    5 +++--
 src/builtins/tests/boolean_tests.cpp |   23 ++++++++++++-----------
 src/builtins/tests/echo_tests.cpp    |   23 ++++++++++++-----------
 src/core/interpreter.cpp             |    3 ++-
 src/core/interpreter.h               |    3 ++-
 src/core/interpreter_exception.h     |    3 ++-
 src/core/symbols.hpp                 |    3 ++-
 src/core/tests/interpreter_test.cpp  |   23 ++++++++++++-----------
 src/core/tests/symbols_test.cpp      |   23 ++++++++++++-----------
 src/cppbash_builtin.cpp              |    5 +++--
 src/cppbash_builtin.h                |    5 +++--
 test/post_check.cpp                  |   23 ++++++++++++-----------
 test/run_tests.cpp                   |    5 +++--
 test/walker_test.cpp                 |   23 ++++++++++++-----------
 42 files changed, 464 insertions(+), 152 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 4d66b8a..9491679 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,8 @@
 #the Free Software Foundation, either version 2 of the License, or
 #(at your option) any later version.
 #
-#libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+#libbash 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.
 #

diff --git a/README b/README
index 1eeb7be..563cf12 100644
--- a/README
+++ b/README
@@ -8,7 +8,8 @@
 #the Free Software Foundation, either version 2 of the License, or
 #(at your option) any later version.
 #
-#libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+#libbash 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.
 #

diff --git a/bashast/bashast.g b/bashast/bashast.g
index 430e5cb..05d76aa 100644
--- a/bashast/bashast.g
+++ b/bashast/bashast.g
@@ -1,21 +1,21 @@
-/**
-Copyright 2010 Nathan Eloe
+/*
+   Copyright 2010 Nathan Eloe
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-**/
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 grammar bashast;
 options
 {

diff --git a/bashast/bashwalker.g b/bashast/bashwalker.g
index 7fd550b..e8e60e5 100644
--- a/bashast/bashwalker.g
+++ b/bashast/bashwalker.g
@@ -1,3 +1,21 @@
+/*
+   Copyright 2011 Mu Qiao
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 tree grammar bashwalker;
 
 options

diff --git a/bashast/features_script/features.sh b/bashast/features_script/features.sh
index e59a9f4..e41fad1 100644
--- a/bashast/features_script/features.sh
+++ b/bashast/features_script/features.sh
@@ -11,7 +11,8 @@
 #the Free Software Foundation, either version 2 of the License, or
 #(at your option) any later version.
 #
-#libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+#libbash 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.
 #

diff --git a/bashast/gunit/arith_main.gunit b/bashast/gunit/arith_main.gunit
index e509c73..7253fad 100644
--- a/bashast/gunit/arith_main.gunit
+++ b/bashast/gunit/arith_main.gunit
@@ -1,20 +1,21 @@
-/**
-Copyright 2010 Nathan Eloe
+/*
+   Copyright 2010 Nathan Eloe
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-**/
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 //for this set of unittests, we'll start from the

diff --git a/bashast/gunit/array.gunit b/bashast/gunit/array.gunit
index 8307e4e..b4b9bac 100644
--- a/bashast/gunit/array.gunit
+++ b/bashast/gunit/array.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 var_def:

diff --git a/bashast/gunit/assoc_array.gunit b/bashast/gunit/assoc_array.gunit
index e6b5b99..9e0782d 100644
--- a/bashast/gunit/assoc_array.gunit
+++ b/bashast/gunit/assoc_array.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 var_def:

diff --git a/bashast/gunit/brace.gunit b/bashast/gunit/brace.gunit
index 6136ae6..d76b14a 100644
--- a/bashast/gunit/brace.gunit
+++ b/bashast/gunit/brace.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 brace:

diff --git a/bashast/gunit/command_sub.gunit b/bashast/gunit/command_sub.gunit
index 4f56cc7..a80a677 100644
--- a/bashast/gunit/command_sub.gunit
+++ b/bashast/gunit/command_sub.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 command_sub:

diff --git a/bashast/gunit/comment.gunit b/bashast/gunit/comment.gunit
index 98234b2..db3006c 100644
--- a/bashast/gunit/comment.gunit
+++ b/bashast/gunit/comment.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 start:

diff --git a/bashast/gunit/compound.gunit b/bashast/gunit/compound.gunit
index ffd919d..e3a6ef4 100644
--- a/bashast/gunit/compound.gunit
+++ b/bashast/gunit/compound.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 cond_comparison:

diff --git a/bashast/gunit/cond_main.gunit b/bashast/gunit/cond_main.gunit
index 79fb226..23e671d 100644
--- a/bashast/gunit/cond_main.gunit
+++ b/bashast/gunit/cond_main.gunit
@@ -1,20 +1,21 @@
-/**
-Copyright 2010 Nathan Eloe
+/*
+   Copyright 2010 Nathan Eloe
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-**/
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 cond_expr:

diff --git a/bashast/gunit/continued_lines.gunit b/bashast/gunit/continued_lines.gunit
index 3a5746c..0ced36d 100644
--- a/bashast/gunit/continued_lines.gunit
+++ b/bashast/gunit/continued_lines.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 start:

diff --git a/bashast/gunit/expansions.gunit b/bashast/gunit/expansions.gunit
index f78283f..3ee6846 100644
--- a/bashast/gunit/expansions.gunit
+++ b/bashast/gunit/expansions.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 list:

diff --git a/bashast/gunit/fname.gunit b/bashast/gunit/fname.gunit
index eac2571..3284b5d 100644
--- a/bashast/gunit/fname.gunit
+++ b/bashast/gunit/fname.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 fname:

diff --git a/bashast/gunit/function.gunit b/bashast/gunit/function.gunit
index 2799fa2..8315e06 100644
--- a/bashast/gunit/function.gunit
+++ b/bashast/gunit/function.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 function:

diff --git a/bashast/gunit/list.gunit b/bashast/gunit/list.gunit
index aff5196..87015af 100644
--- a/bashast/gunit/list.gunit
+++ b/bashast/gunit/list.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 list:

diff --git a/bashast/gunit/param_main.gunit b/bashast/gunit/param_main.gunit
index 99092c7..a62320d 100644
--- a/bashast/gunit/param_main.gunit
+++ b/bashast/gunit/param_main.gunit
@@ -1,20 +1,21 @@
-/**
-Copyright 2010 Nathan Eloe
+/*
+   Copyright 2010 Nathan Eloe
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-**/
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 var_ref:

diff --git a/bashast/gunit/pipeline.gunit b/bashast/gunit/pipeline.gunit
index ac41d33..99b8d22 100644
--- a/bashast/gunit/pipeline.gunit
+++ b/bashast/gunit/pipeline.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 pipeline:

diff --git a/bashast/gunit/proc_sub.gunit b/bashast/gunit/proc_sub.gunit
index aa7e6cc..5c3fd63 100644
--- a/bashast/gunit/proc_sub.gunit
+++ b/bashast/gunit/proc_sub.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 proc_sub:

diff --git a/bashast/gunit/redir.gunit b/bashast/gunit/redir.gunit
index dd0a86b..20596d3 100644
--- a/bashast/gunit/redir.gunit
+++ b/bashast/gunit/redir.gunit
@@ -1,21 +1,21 @@
-/**
-Copyright 2010 Nathan Eloe
+/*
+   Copyright 2010 Nathan Eloe
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-**/
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 redirect:

diff --git a/bashast/gunit/runtests.sh b/bashast/gunit/runtests.sh
index 7af4592..00eed26 100755
--- a/bashast/gunit/runtests.sh
+++ b/bashast/gunit/runtests.sh
@@ -9,7 +9,8 @@
 #the Free Software Foundation, either version 2 of the License, or
 #(at your option) any later version.
 #
-#libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+#libbash 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.
 #

diff --git a/bashast/gunit/simp_command.gunit b/bashast/gunit/simp_command.gunit
index 3384893..2f133de 100644
--- a/bashast/gunit/simp_command.gunit
+++ b/bashast/gunit/simp_command.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 simple_command:

diff --git a/bashast/gunit/simp_prog.gunit b/bashast/gunit/simp_prog.gunit
index 95a1370..57c2d44 100644
--- a/bashast/gunit/simp_prog.gunit
+++ b/bashast/gunit/simp_prog.gunit
@@ -1,3 +1,21 @@
+/*
+   Copyright 2010 Nathan Eloe
+
+   This file is part of libbash.
+
+   libbash 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 2 of the License, or
+   (at your option) any later version.
+
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+*/
 gunit bashast;
 
 start:

diff --git a/configure.ac b/configure.ac
index 5dd5b0b..2643fba 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8,7 +8,8 @@ dnl it under the terms of the GNU General Public License as published by
 dnl the Free Software Foundation, either version 2 of the License, or
 dnl (at your option) any later version.
 dnl
-dnl libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl libbash 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

diff --git a/src/builtins/boolean_builtins.h b/src/builtins/boolean_builtins.h
index b7afa12..cc16b25 100644
--- a/src/builtins/boolean_builtins.h
+++ b/src/builtins/boolean_builtins.h
@@ -8,7 +8,8 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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.
 

diff --git a/src/builtins/echo_builtin.cpp b/src/builtins/echo_builtin.cpp
index 4f498bf..10fbf5b 100644
--- a/src/builtins/echo_builtin.cpp
+++ b/src/builtins/echo_builtin.cpp
@@ -8,7 +8,8 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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.
 

diff --git a/src/builtins/echo_builtin.h b/src/builtins/echo_builtin.h
index 0f55fa9..7677406 100644
--- a/src/builtins/echo_builtin.h
+++ b/src/builtins/echo_builtin.h
@@ -8,13 +8,14 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-   */
+*/
 ///
 /// \file echo_builtin.h
 /// \author Nathan Eloe

diff --git a/src/builtins/tests/boolean_tests.cpp b/src/builtins/tests/boolean_tests.cpp
index ff65a9b..54a85b7 100644
--- a/src/builtins/tests/boolean_tests.cpp
+++ b/src/builtins/tests/boolean_tests.cpp
@@ -1,19 +1,20 @@
 /*
-Copyright 2010 Petteri Räty
+   Copyright 2010 Petteri Räty
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
 */
 ///
 /// \file echo_tests.cpp

diff --git a/src/builtins/tests/echo_tests.cpp b/src/builtins/tests/echo_tests.cpp
index 4826c2f..cb5187e 100644
--- a/src/builtins/tests/echo_tests.cpp
+++ b/src/builtins/tests/echo_tests.cpp
@@ -1,19 +1,20 @@
 /*
-Copyright 2010 Nathan Eloe
+   Copyright 2010 Nathan Eloe
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
 */
 ///
 /// \file echo_tests.cpp

diff --git a/src/core/interpreter.cpp b/src/core/interpreter.cpp
index 470b53d..9c6a689 100644
--- a/src/core/interpreter.cpp
+++ b/src/core/interpreter.cpp
@@ -8,7 +8,8 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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.
 

diff --git a/src/core/interpreter.h b/src/core/interpreter.h
index 6ef0eee..5a34a98 100644
--- a/src/core/interpreter.h
+++ b/src/core/interpreter.h
@@ -8,7 +8,8 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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.
 

diff --git a/src/core/interpreter_exception.h b/src/core/interpreter_exception.h
index 40f3d90..3e333d2 100644
--- a/src/core/interpreter_exception.h
+++ b/src/core/interpreter_exception.h
@@ -8,7 +8,8 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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.
 

diff --git a/src/core/symbols.hpp b/src/core/symbols.hpp
index c613cbf..3de80b3 100644
--- a/src/core/symbols.hpp
+++ b/src/core/symbols.hpp
@@ -8,7 +8,8 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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.
 

diff --git a/src/core/tests/interpreter_test.cpp b/src/core/tests/interpreter_test.cpp
index 6100f5c..9e29c83 100644
--- a/src/core/tests/interpreter_test.cpp
+++ b/src/core/tests/interpreter_test.cpp
@@ -1,19 +1,20 @@
 /*
-Copyright 2011 Mu Qiao
+   Copyright 2011 Mu Qiao
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
 */
 ///
 /// \file interpreter_test.cpp

diff --git a/src/core/tests/symbols_test.cpp b/src/core/tests/symbols_test.cpp
index aaaf66d..4cc20bf 100644
--- a/src/core/tests/symbols_test.cpp
+++ b/src/core/tests/symbols_test.cpp
@@ -1,19 +1,20 @@
 /*
-Copyright 2011 Mu Qiao
+   Copyright 2011 Mu Qiao
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
 */
 ///
 /// \file symbols_test.cpp

diff --git a/src/cppbash_builtin.cpp b/src/cppbash_builtin.cpp
index a486bd6..34f4882 100644
--- a/src/cppbash_builtin.cpp
+++ b/src/cppbash_builtin.cpp
@@ -8,13 +8,14 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-   */
+*/
 ///
 /// \file cppbash_builtin.cpp
 /// \author Nathan Eloe

diff --git a/src/cppbash_builtin.h b/src/cppbash_builtin.h
index 180034d..eb4494b 100644
--- a/src/cppbash_builtin.h
+++ b/src/cppbash_builtin.h
@@ -8,13 +8,14 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-   */
+*/
 ///
 /// \file cppbash_builtin.h
 /// \author Nathan Eloe

diff --git a/test/post_check.cpp b/test/post_check.cpp
index 922e972..ba99fa0 100644
--- a/test/post_check.cpp
+++ b/test/post_check.cpp
@@ -1,19 +1,20 @@
 /*
-Copyright 2011 Mu Qiao
+   Copyright 2011 Mu Qiao
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
 */
 ///
 /// \file post_check.cpp

diff --git a/test/run_tests.cpp b/test/run_tests.cpp
index ba5a429..c1a98aa 100644
--- a/test/run_tests.cpp
+++ b/test/run_tests.cpp
@@ -8,13 +8,14 @@
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.
 
-   libbash is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty of
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
-   */
+*/
 ///
 /// \file run_tests.cpp
 /// \brief runs unit tests for post_check

diff --git a/test/walker_test.cpp b/test/walker_test.cpp
index d0ed10d..f1c6864 100644
--- a/test/walker_test.cpp
+++ b/test/walker_test.cpp
@@ -1,19 +1,20 @@
 /*
-Copyright 2011 Mu Qiao
+   Copyright 2011 Mu Qiao
 
-This file is part of libbash.
+   This file is part of libbash.
 
-libbash 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 2 of the License, or
-(at your option) any later version.
+   libbash 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 2 of the License, or
+   (at your option) any later version.
 
-libbash 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.
+   libbash 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 libbash.  If not, see <http://www.gnu.org/licenses/>.
+   You should have received a copy of the GNU General Public License
+   along with libbash.  If not, see <http://www.gnu.org/licenses/>.
 */
 ///
 /// \file lib_test.cpp



^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [gentoo-commits] proj/libbash:master commit in: /, src/builtins/tests/, src/core/, bashast/gunit/, src/, bashast/, test/, ...
@ 2011-03-26 19:08 Petteri Räty
  0 siblings, 0 replies; 2+ messages in thread
From: Petteri Räty @ 2011-03-26 19:08 UTC (permalink / raw
  To: gentoo-commits

commit:     46a0f6844435c86d63bb8c07892b74a1253212b0
Author:     Petteri Räty <petsku <AT> petteriraty <DOT> eu>
AuthorDate: Sat Mar 26 12:39:24 2011 +0000
Commit:     Petteri Räty <betelgeuse <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 12:39:24 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/libbash.git;a=commit;h=46a0f684

Refer to git log for copyright information

Having to manually keep the year and names updated in each source file
is prone to not remembering to keep it up to date. The same information
can be found from git so just refer people to that. In most places it's
not a requirement to explicitly state such things.

---
 Makefile.am                          |    2 +-
 README                               |    2 +-
 bashast/bashast.g                    |    2 +-
 bashast/bashwalker.g                 |    2 +-
 bashast/features_script/features.sh  |    2 +-
 bashast/gunit/arith_main.gunit       |    2 +-
 bashast/gunit/array.gunit            |    2 +-
 bashast/gunit/assoc_array.gunit      |    2 +-
 bashast/gunit/brace.gunit            |    2 +-
 bashast/gunit/command_sub.gunit      |    2 +-
 bashast/gunit/comment.gunit          |    2 +-
 bashast/gunit/compound.gunit         |    2 +-
 bashast/gunit/cond_main.gunit        |    2 +-
 bashast/gunit/continued_lines.gunit  |    2 +-
 bashast/gunit/expansions.gunit       |    2 +-
 bashast/gunit/fname.gunit            |    2 +-
 bashast/gunit/function.gunit         |    2 +-
 bashast/gunit/list.gunit             |    2 +-
 bashast/gunit/param_main.gunit       |    2 +-
 bashast/gunit/pipeline.gunit         |    2 +-
 bashast/gunit/proc_sub.gunit         |    2 +-
 bashast/gunit/redir.gunit            |    2 +-
 bashast/gunit/runtests.sh            |    2 +-
 bashast/gunit/simp_command.gunit     |    2 +-
 bashast/gunit/simp_prog.gunit        |    2 +-
 configure.ac                         |    2 +-
 src/builtins/boolean_builtins.h      |    2 +-
 src/builtins/echo_builtin.cpp        |    2 +-
 src/builtins/echo_builtin.h          |    2 +-
 src/builtins/tests/boolean_tests.cpp |    2 +-
 src/builtins/tests/echo_tests.cpp    |    2 +-
 src/core/interpreter.cpp             |    2 +-
 src/core/interpreter.h               |    2 +-
 src/core/interpreter_exception.h     |    2 +-
 src/core/symbols.hpp                 |    2 +-
 src/core/tests/interpreter_test.cpp  |    2 +-
 src/core/tests/symbols_test.cpp      |    2 +-
 src/cppbash_builtin.cpp              |    2 +-
 src/cppbash_builtin.h                |    2 +-
 test/post_check.cpp                  |    2 +-
 test/run_tests.cpp                   |    2 +-
 test/walker_test.cpp                 |    2 +-
 42 files changed, 42 insertions(+), 42 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 9491679..e424b35 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
 ###############################################
-#Copyright 2010 Nathan Eloe
+#Please use git log for copyright holder and year information
 #
 #This file is part of libbash.
 #

diff --git a/README b/README
index 563cf12..8e00feb 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
 #############################################
-#Copyright 2010 Nathan Eloe
+#Please use git log for copyright holder and year information
 #
 #This file is part of libbash.
 #

diff --git a/bashast/bashast.g b/bashast/bashast.g
index 05d76aa..d16ba5c 100644
--- a/bashast/bashast.g
+++ b/bashast/bashast.g
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/bashwalker.g b/bashast/bashwalker.g
index e8e60e5..d91e739 100644
--- a/bashast/bashwalker.g
+++ b/bashast/bashwalker.g
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/features_script/features.sh b/bashast/features_script/features.sh
index e41fad1..7efa24c 100644
--- a/bashast/features_script/features.sh
+++ b/bashast/features_script/features.sh
@@ -2,7 +2,7 @@
 # A "featureful" script that demonstrates all the functionality of the parser
 
 #############################################
-#Copyright 2010 Nathan Eloe
+#Please use git log for copyright holder and year information
 #
 #This file is part of libbash.
 #

diff --git a/bashast/gunit/arith_main.gunit b/bashast/gunit/arith_main.gunit
index 7253fad..0c39c9c 100644
--- a/bashast/gunit/arith_main.gunit
+++ b/bashast/gunit/arith_main.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/array.gunit b/bashast/gunit/array.gunit
index b4b9bac..105c333 100644
--- a/bashast/gunit/array.gunit
+++ b/bashast/gunit/array.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/assoc_array.gunit b/bashast/gunit/assoc_array.gunit
index 9e0782d..53f5386 100644
--- a/bashast/gunit/assoc_array.gunit
+++ b/bashast/gunit/assoc_array.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/brace.gunit b/bashast/gunit/brace.gunit
index d76b14a..a5a5620 100644
--- a/bashast/gunit/brace.gunit
+++ b/bashast/gunit/brace.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/command_sub.gunit b/bashast/gunit/command_sub.gunit
index a80a677..1bf481a 100644
--- a/bashast/gunit/command_sub.gunit
+++ b/bashast/gunit/command_sub.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/comment.gunit b/bashast/gunit/comment.gunit
index db3006c..cf955a4 100644
--- a/bashast/gunit/comment.gunit
+++ b/bashast/gunit/comment.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/compound.gunit b/bashast/gunit/compound.gunit
index e3a6ef4..2e0c795 100644
--- a/bashast/gunit/compound.gunit
+++ b/bashast/gunit/compound.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/cond_main.gunit b/bashast/gunit/cond_main.gunit
index 23e671d..91eb883 100644
--- a/bashast/gunit/cond_main.gunit
+++ b/bashast/gunit/cond_main.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/continued_lines.gunit b/bashast/gunit/continued_lines.gunit
index 0ced36d..debbe1f 100644
--- a/bashast/gunit/continued_lines.gunit
+++ b/bashast/gunit/continued_lines.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/expansions.gunit b/bashast/gunit/expansions.gunit
index 3ee6846..d58e4b6 100644
--- a/bashast/gunit/expansions.gunit
+++ b/bashast/gunit/expansions.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/fname.gunit b/bashast/gunit/fname.gunit
index 3284b5d..4596f23 100644
--- a/bashast/gunit/fname.gunit
+++ b/bashast/gunit/fname.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/function.gunit b/bashast/gunit/function.gunit
index 8315e06..1ee5206 100644
--- a/bashast/gunit/function.gunit
+++ b/bashast/gunit/function.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/list.gunit b/bashast/gunit/list.gunit
index 87015af..04b3243 100644
--- a/bashast/gunit/list.gunit
+++ b/bashast/gunit/list.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/param_main.gunit b/bashast/gunit/param_main.gunit
index a62320d..769f19f 100644
--- a/bashast/gunit/param_main.gunit
+++ b/bashast/gunit/param_main.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/pipeline.gunit b/bashast/gunit/pipeline.gunit
index 99b8d22..f0eb428 100644
--- a/bashast/gunit/pipeline.gunit
+++ b/bashast/gunit/pipeline.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/proc_sub.gunit b/bashast/gunit/proc_sub.gunit
index 5c3fd63..9e34911 100644
--- a/bashast/gunit/proc_sub.gunit
+++ b/bashast/gunit/proc_sub.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/redir.gunit b/bashast/gunit/redir.gunit
index 20596d3..d1506d6 100644
--- a/bashast/gunit/redir.gunit
+++ b/bashast/gunit/redir.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/runtests.sh b/bashast/gunit/runtests.sh
index 00eed26..ee8fe99 100755
--- a/bashast/gunit/runtests.sh
+++ b/bashast/gunit/runtests.sh
@@ -1,6 +1,6 @@
 #!/bin/bash
 #############################################
-#Copyright 2010 Petteri Räty
+#Please use git log for copyright holder and year information
 #
 #This file is part of libbash.
 #

diff --git a/bashast/gunit/simp_command.gunit b/bashast/gunit/simp_command.gunit
index 2f133de..6f2c2a8 100644
--- a/bashast/gunit/simp_command.gunit
+++ b/bashast/gunit/simp_command.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/bashast/gunit/simp_prog.gunit b/bashast/gunit/simp_prog.gunit
index 57c2d44..50940f9 100644
--- a/bashast/gunit/simp_prog.gunit
+++ b/bashast/gunit/simp_prog.gunit
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/configure.ac b/configure.ac
index 2643fba..b2ecf23 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 dnl ############################################
-dnl Copyright 2010 Nathan Eloe
+dnl Please use git log for copyright holder and year information
 dnl
 dnl This file is part of libbash.
 dnl

diff --git a/src/builtins/boolean_builtins.h b/src/builtins/boolean_builtins.h
index cc16b25..68e360d 100644
--- a/src/builtins/boolean_builtins.h
+++ b/src/builtins/boolean_builtins.h
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Petteri Räty
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/builtins/echo_builtin.cpp b/src/builtins/echo_builtin.cpp
index 10fbf5b..af57b79 100644
--- a/src/builtins/echo_builtin.cpp
+++ b/src/builtins/echo_builtin.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/builtins/echo_builtin.h b/src/builtins/echo_builtin.h
index 7677406..ac4b077 100644
--- a/src/builtins/echo_builtin.h
+++ b/src/builtins/echo_builtin.h
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/builtins/tests/boolean_tests.cpp b/src/builtins/tests/boolean_tests.cpp
index 54a85b7..5ba3d34 100644
--- a/src/builtins/tests/boolean_tests.cpp
+++ b/src/builtins/tests/boolean_tests.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Petteri Räty
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/builtins/tests/echo_tests.cpp b/src/builtins/tests/echo_tests.cpp
index cb5187e..2a606d4 100644
--- a/src/builtins/tests/echo_tests.cpp
+++ b/src/builtins/tests/echo_tests.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/core/interpreter.cpp b/src/core/interpreter.cpp
index 9c6a689..0086216 100644
--- a/src/core/interpreter.cpp
+++ b/src/core/interpreter.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/core/interpreter.h b/src/core/interpreter.h
index 5a34a98..b494b6a 100644
--- a/src/core/interpreter.h
+++ b/src/core/interpreter.h
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/core/interpreter_exception.h b/src/core/interpreter_exception.h
index 3e333d2..785c6c3 100644
--- a/src/core/interpreter_exception.h
+++ b/src/core/interpreter_exception.h
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/core/symbols.hpp b/src/core/symbols.hpp
index 3de80b3..dce6e33 100644
--- a/src/core/symbols.hpp
+++ b/src/core/symbols.hpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/core/tests/interpreter_test.cpp b/src/core/tests/interpreter_test.cpp
index 9e29c83..0dbeedc 100644
--- a/src/core/tests/interpreter_test.cpp
+++ b/src/core/tests/interpreter_test.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/core/tests/symbols_test.cpp b/src/core/tests/symbols_test.cpp
index 4cc20bf..891e9cb 100644
--- a/src/core/tests/symbols_test.cpp
+++ b/src/core/tests/symbols_test.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/cppbash_builtin.cpp b/src/cppbash_builtin.cpp
index 34f4882..8778173 100644
--- a/src/cppbash_builtin.cpp
+++ b/src/cppbash_builtin.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/src/cppbash_builtin.h b/src/cppbash_builtin.h
index eb4494b..814358d 100644
--- a/src/cppbash_builtin.h
+++ b/src/cppbash_builtin.h
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Nathan Eloe
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/test/post_check.cpp b/test/post_check.cpp
index ba99fa0..098b0f8 100644
--- a/test/post_check.cpp
+++ b/test/post_check.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/test/run_tests.cpp b/test/run_tests.cpp
index c1a98aa..1681a81 100644
--- a/test/run_tests.cpp
+++ b/test/run_tests.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2010 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 

diff --git a/test/walker_test.cpp b/test/walker_test.cpp
index f1c6864..9df0d88 100644
--- a/test/walker_test.cpp
+++ b/test/walker_test.cpp
@@ -1,5 +1,5 @@
 /*
-   Copyright 2011 Mu Qiao
+   Please use git log for copyright holder and year information
 
    This file is part of libbash.
 



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-03-26 19:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-26 12:34 [gentoo-commits] proj/libbash:master commit in: /, src/builtins/tests/, src/core/, bashast/gunit/, src/, bashast/, test/, Petteri Räty
  -- strict thread matches above, loose matches on Subject: below --
2011-03-26 19:08 Petteri Räty

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox