fix license version: GNU LGPLv3 or GPLv2 v_0 v0.14
authorFrantišek Kučera <franta-hg@frantovo.cz>
Tue, 22 Oct 2019 19:45:24 +0200
branchv_0
changeset 42 3442e0d6caec
parent 41 002fd9e23419
child 43 e8889e9b6786
fix license version: GNU LGPLv3 or GPLv2
CMakeLists.txt
include/relpipe/reader/Factory.h
include/relpipe/reader/RelationalReader.h
include/relpipe/reader/RelpipeReaderException.h
include/relpipe/reader/TypeId.h
include/relpipe/reader/handlers/AttributeMetadata.h
include/relpipe/reader/handlers/RelationalReaderBaseHandler.h
include/relpipe/reader/handlers/RelationalReaderStringHandler.h
include/relpipe/reader/handlers/RelationalReaderValueHandler.h
include/relpipe/reader/typedefs.h
src/AttributeMetadataPrivate.h
src/CMakeLists.txt
src/DataTypeReader.h
src/DataTypeReaderBase.h
src/Factory.cpp
src/StreamRelationalReader.h
src/types/BooleanDataTypeReader.h
src/types/IntegerDataTypeReader.h
src/types/StringDataTypeReader.h
--- a/CMakeLists.txt	Tue Jul 30 23:56:30 2019 +0200
+++ b/CMakeLists.txt	Tue Oct 22 19:45:24 2019 +0200
@@ -1,10 +1,12 @@
-# Relational pipes
+# Relational pipes (library)
 # Copyright © 2018 František Kučera (Frantovo.cz, GlobalCode.info)
 #
 # 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.
+# it under the terms of the:
+#  - GNU Lesser General Public License as published by the Free Software Foundation;
+#    version 3 of the License or (at your option)
+#  - GNU General Public License as published by the Free Software Foundation;
+#    version 2 of the License.
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/Factory.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/Factory.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/RelationalReader.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/RelationalReader.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/RelpipeReaderException.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/RelpipeReaderException.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/TypeId.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/TypeId.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/handlers/AttributeMetadata.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/handlers/AttributeMetadata.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/handlers/RelationalReaderBaseHandler.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/handlers/RelationalReaderBaseHandler.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/handlers/RelationalReaderStringHandler.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/handlers/RelationalReaderStringHandler.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/handlers/RelationalReaderValueHandler.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/handlers/RelationalReaderValueHandler.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/include/relpipe/reader/typedefs.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/include/relpipe/reader/typedefs.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/AttributeMetadataPrivate.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/AttributeMetadataPrivate.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/CMakeLists.txt	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/CMakeLists.txt	Tue Oct 22 19:45:24 2019 +0200
@@ -1,10 +1,12 @@
-# Relational pipes
+# Relational pipes (library)
 # Copyright © 2018 František Kučera (Frantovo.cz, GlobalCode.info)
 #
 # 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.
+# it under the terms of the:
+#  - GNU Lesser General Public License as published by the Free Software Foundation;
+#    version 3 of the License or (at your option)
+#  - GNU General Public License as published by the Free Software Foundation;
+#    version 2 of the License.
 #
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/DataTypeReader.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/DataTypeReader.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/DataTypeReaderBase.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/DataTypeReaderBase.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/Factory.cpp	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/Factory.cpp	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/StreamRelationalReader.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/StreamRelationalReader.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/types/BooleanDataTypeReader.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/types/BooleanDataTypeReader.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/types/IntegerDataTypeReader.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/types/IntegerDataTypeReader.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
--- a/src/types/StringDataTypeReader.h	Tue Jul 30 23:56:30 2019 +0200
+++ b/src/types/StringDataTypeReader.h	Tue Oct 22 19:45:24 2019 +0200
@@ -5,10 +5,9 @@
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the:
  *  - GNU Lesser General Public License as published by the Free Software Foundation;
- *    either version 3 of the License, or (at your option) any later version;
- *    or (at your option)
+ *    version 3 of the License or (at your option)
  *  - GNU General Public License as published by the Free Software Foundation;
- *    either version 2 of the License, or (at your option) any later version.
+ *    version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of