]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Follow gnulib-tool changes, part 30.
authorCollin Funk <collin.funk1@gmail.com>
Tue, 27 Feb 2024 05:46:30 +0000 (21:46 -0800)
committerBruno Haible <bruno@clisp.org>
Tue, 27 Feb 2024 10:32:55 +0000 (11:32 +0100)
Follow gnulib-tool change
2021-05-30  Bruno Haible  <bruno@clisp.org>
Write 'LGPLv3+ or GPLv2+' instead of 'LGPLv3+ or GPLv2'.

* pygnulib/GLImport.py (GLImport.prepare): Change.
* pygnulib/GLTestDir.py (GLTestDir.execute): Likewise.

ChangeLog
gnulib-tool.py.TODO
pygnulib/GLImport.py
pygnulib/GLTestDir.py

index 50ed84269a14c6056397cf9247de988ce338e7b2..ba1456b5841bd547e358309dc394c929e0058b33 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2024-02-27  Collin Funk  <collin.funk1@gmail.com>
+
+       gnulib-tool.py: Follow gnulib-tool changes, part 30.
+       Follow gnulib-tool change
+       2021-05-30  Bruno Haible  <bruno@clisp.org>
+       Write 'LGPLv3+ or GPLv2+' instead of 'LGPLv3+ or GPLv2'.
+       * pygnulib/GLImport.py (GLImport.prepare): Change.
+       * pygnulib/GLTestDir.py (GLTestDir.execute): Likewise.
+
 2024-02-27  Collin Funk  <collin.funk1@gmail.com>
 
        gnulib-tool.py: Follow gnulib-tool changes, part 29.
index 7be0e243e775d948cdeb71c623f875cd42f5695d..5f4a134edf73d8e3a9536e0d1feaa2fbc633a5ff 100644 (file)
@@ -581,17 +581,6 @@ Date:   Thu Jun 10 21:26:53 2021 +0200
 
 --------------------------------------------------------------------------------
 
-commit 6d1cba373a8387aa2131e9dc3e94954c5669ca52
-Author: Bruno Haible <bruno@clisp.org>
-Date:   Sun May 30 14:37:06 2021 +0200
-
-    Write 'LGPLv3+ or GPLv2+' instead of 'LGPLv3+ or GPLv2'.
-
-    * modules/* (License): Change.
-    * gnulib-tool (func_import, func_create_testdir): Likewise.
-
---------------------------------------------------------------------------------
-
 commit 4b071c115309079528db7b60e8d2ffb22b129088
 Author: Paul Eggert <eggert@cs.ucla.edu>
 Date:   Mon Apr 26 23:31:29 2021 -0700
index c69a33deb7e70cec902e730ead649a924d0e8d48..7f332ec760db82d4c704e62204cf60f549fd28e2 100644 (file)
@@ -858,8 +858,8 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix
         compatibilities['all'] = ['GPLv2+ build tool', 'GPLed build tool',
                                   'public domain', 'unlimited',
                                   'unmodifiable license text']
-        compatibilities['3']        = ['LGPLv2+', 'LGPLv3+ or GPLv2', 'LGPLv3+', 'LGPL']
-        compatibilities['3orGPLv2'] = ['LGPLv2+', 'LGPLv3+ or GPLv2']
+        compatibilities['3']        = ['LGPLv2+', 'LGPLv3+ or GPLv2+', 'LGPLv3+', 'LGPL']
+        compatibilities['3orGPLv2'] = ['LGPLv2+', 'LGPLv3+ or GPLv2+']
         compatibilities['2']        = ['LGPLv2+']
         if lgpl:
             for module in main_modules:
index 3bb99c59ccbbf9ae0ef82151d48c9f3ca7031d27..bc0b1533047212c4e21cac1a562ac6291106acae 100644 (file)
@@ -204,16 +204,16 @@ class GLTestDir(object):
                                        'public domain', 'unlimited', 'unmodifiable license text']:
                         incompatible = False
                         if requested_licence == 'GPLv3+' or requested_licence == 'GPL':
-                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2', 'LGPLv3+', 'LGPL', 'GPLv2+', 'GPLv3+', 'GPL']:
+                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2+', 'LGPLv3+', 'LGPL', 'GPLv2+', 'GPLv3+', 'GPL']:
                                 incompatible = True
                         elif requested_licence == 'GPLv2+':
-                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2', 'GPLv2+']:
+                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2+', 'GPLv2+']:
                                 incompatible = True
                         elif requested_licence == 'LGPLv3+' or requested_licence == 'LGPL':
-                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2', 'LGPLv3+', 'LGPL']:
+                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2+', 'LGPLv3+', 'LGPL']:
                                 incompatible = True
-                        elif requested_licence == 'LGPLv3+ or GPLv2':
-                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2']:
+                        elif requested_licence == 'LGPLv3+ or GPLv2+':
+                            if license not in ['LGPLv2+', 'LGPLv3+ or GPLv2+']:
                                 incompatible = True
                         elif requested_licence == 'LGPLv2+':
                             if license not in ['LGPLv2+']: