]> Savannah Git Hosting - gnulib.git/commitdiff
c32to*: Relax license.
authorBruno Haible <bruno@clisp.org>
Thu, 4 May 2023 21:13:01 +0000 (23:13 +0200)
committerBruno Haible <bruno@clisp.org>
Thu, 4 May 2023 21:13:10 +0000 (23:13 +0200)
* modules/c32tolower (License): Change to LGPLv2+.
* modules/c32toupper (License): Likewise.
* lib/c32tolower.c: Update license notice.
* lib/c32toupper.c: Likewise.
* lib/c32to-impl.h: Likewise.

ChangeLog
lib/c32to-impl.h
lib/c32tolower.c
lib/c32toupper.c
modules/c32tolower
modules/c32toupper

index aa6008053df29844262ec26901c21e97844d64a5..1517d331d449235c89308aa03dafd8d7534cb8ef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
 2023-05-04  Bruno Haible  <bruno@clisp.org>
 
+       c32to*: Relax license.
+       * modules/c32tolower (License): Change to LGPLv2+.
+       * modules/c32toupper (License): Likewise.
+       * lib/c32tolower.c: Update license notice.
+       * lib/c32toupper.c: Likewise.
+       * lib/c32to-impl.h: Likewise.
+
        unicase/tolower, unicase/toupper: Relax license.
        * lib/gen-uni-tables.c (output_simple_mapping): Bump copyright year. For
        unicase/tolower.h and unicase/toupper.h, use the LGPLv2+.
index 724691a116d81439bcf57c75136ace38ba567e8b..923825589b684dbc9fe4e6c7e36339b1c539930c 100644 (file)
@@ -1,26 +1,18 @@
 /* Case mapping of a 32-bit wide character.
    Copyright (C) 2020-2023 Free Software Foundation, Inc.
 
-   This file is free software.
-   It is dual-licensed under "the GNU LGPLv3+ or the GNU GPLv2+".
-   You can redistribute it and/or modify it under either
-     - the terms of the GNU Lesser General Public License as published
-       by the Free Software Foundation, either version 3, or (at your
-       option) any later version, or
-     - the terms of the GNU General Public License as published by the
-       Free Software Foundation; either version 2, or (at your option)
-       any later version, or
-     - the same dual license "the GNU LGPLv3+ or the GNU GPLv2+".
+   This file 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 2.1 of the
+   License, or (at your option) any later version.
 
    This file 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
-   Lesser General Public License and the GNU General Public License
-   for more details.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU Lesser General Public License for more details.
 
-   You should have received a copy of the GNU Lesser General Public
-   License and of the GNU General Public License along with this
-   program.  If not, see <https://www.gnu.org/licenses/>.  */
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
 
 /* Written by Bruno Haible <bruno@clisp.org>, 2023.  */
 
index 447016214ea27b7acf8f8926a40ac4e3929c8ff4..8934f6fe6807f35ae784f5fd75aa06c7b14f0eb3 100644 (file)
@@ -1,26 +1,18 @@
 /* Map a 32-bit wide character to lowercase.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
-   This file is free software.
-   It is dual-licensed under "the GNU LGPLv3+ or the GNU GPLv2+".
-   You can redistribute it and/or modify it under either
-     - the terms of the GNU Lesser General Public License as published
-       by the Free Software Foundation, either version 3, or (at your
-       option) any later version, or
-     - the terms of the GNU General Public License as published by the
-       Free Software Foundation; either version 2, or (at your option)
-       any later version, or
-     - the same dual license "the GNU LGPLv3+ or the GNU GPLv2+".
+   This file 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 2.1 of the
+   License, or (at your option) any later version.
 
    This file 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
-   Lesser General Public License and the GNU General Public License
-   for more details.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU Lesser General Public License for more details.
 
-   You should have received a copy of the GNU Lesser General Public
-   License and of the GNU General Public License along with this
-   program.  If not, see <https://www.gnu.org/licenses/>.  */
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
index a3ca5ecf19826a5472266b5ded310b7d3135537f..3fbe5d2ad29ad6aab661d9b58f291df36d727649 100644 (file)
@@ -1,26 +1,18 @@
 /* Map a 32-bit wide character to uppercase.
    Copyright (C) 2023 Free Software Foundation, Inc.
 
-   This file is free software.
-   It is dual-licensed under "the GNU LGPLv3+ or the GNU GPLv2+".
-   You can redistribute it and/or modify it under either
-     - the terms of the GNU Lesser General Public License as published
-       by the Free Software Foundation, either version 3, or (at your
-       option) any later version, or
-     - the terms of the GNU General Public License as published by the
-       Free Software Foundation; either version 2, or (at your option)
-       any later version, or
-     - the same dual license "the GNU LGPLv3+ or the GNU GPLv2+".
+   This file 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 2.1 of the
+   License, or (at your option) any later version.
 
    This file 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
-   Lesser General Public License and the GNU General Public License
-   for more details.
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU Lesser General Public License for more details.
 
-   You should have received a copy of the GNU Lesser General Public
-   License and of the GNU General Public License along with this
-   program.  If not, see <https://www.gnu.org/licenses/>.  */
+   You should have received a copy of the GNU Lesser General Public License
+   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
index b6ed633aec74a170635cd16bc6fc795d17d533b9..601b0134422d77c781c94545ba359b917609355a 100644 (file)
@@ -38,7 +38,7 @@ Link:
 $(LTLIBUNISTRING) when linking with libtool, $(LIBUNISTRING) otherwise
 
 License:
-LGPLv3+ or GPLv2+
+LGPLv2+
 
 Maintainer:
 Bruno Haible
index 364e0118184918585290039e572734041d1c5432..54c79a6b36fd01373d7966df200c224cafea9e9f 100644 (file)
@@ -38,7 +38,7 @@ Link:
 $(LTLIBUNISTRING) when linking with libtool, $(LIBUNISTRING) otherwise
 
 License:
-LGPLv3+ or GPLv2+
+LGPLv2+
 
 Maintainer:
 Bruno Haible