]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Follow gnulib-tool changes, part 32.
authorCollin Funk <collin.funk1@gmail.com>
Thu, 29 Feb 2024 00:35:36 +0000 (16:35 -0800)
committerBruno Haible <bruno@clisp.org>
Thu, 29 Feb 2024 01:03:09 +0000 (02:03 +0100)
Follow gnulib-tool change
2018-10-22  Bruno Haible  <bruno@clisp.org>
Fix failure of 'gnulib-tool --create-testdir' with all modules.

* pygnulib/GLTestDir.py (GLTestDir.execute): Exclude the 'timevar'
module from --create-testdir with all modules. Update comment.

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

index 02d22de00f207174007162692e5b6a23193a9bb9..398d1d5cda93b0a72df9935408df2d94468212e2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2024-02-28  Collin Funk  <collin.funk1@gmail.com>
+
+       gnulib-tool.py: Follow gnulib-tool changes, part 32.
+       Follow gnulib-tool change
+       2018-10-22  Bruno Haible  <bruno@clisp.org>
+       Fix failure of 'gnulib-tool --create-testdir' with all modules.
+       * pygnulib/GLTestDir.py (GLTestDir.execute): Exclude the 'timevar'
+       module from --create-testdir with all modules. Update comment.
+
 2024-02-28  Collin Funk  <collin.funk1@gmail.com>
 
        gnulib-tool.py: Emit year range on file copyright notices.
index 5f4a134edf73d8e3a9536e0d1feaa2fbc633a5ff..905793e0c7fab4ddbfb04b8e9c26e95d3775bde2 100644 (file)
@@ -729,16 +729,6 @@ Date:   Tue Oct 23 00:06:46 2018 +0200
 
 --------------------------------------------------------------------------------
 
-commit 98993f9d1b2ed03007be9dbcdc6bd9fe2d49777b
-Author: Bruno Haible <bruno@clisp.org>
-Date:   Mon Oct 22 20:32:41 2018 +0200
-
-    Fix failure of 'gnulib-tool --create-testdir' with all modules.
-
-    * gnulib-tool (func_create_testdir): Exclude 'timevar' module.
-
---------------------------------------------------------------------------------
-
 commit 8b1d4a63e34f3893036d82f39c5680e845de5ddf
 Author: Bruno Haible <bruno@clisp.org>
 Date:   Mon Sep 3 21:19:16 2018 +0200
index bc0b1533047212c4e21cac1a562ac6291106acae..a7fd806d4f72974bfdeab04d73256af9531fe912 100644 (file)
@@ -159,14 +159,15 @@ class GLTestDir(object):
         if len(specified_modules) == 0:
             # All modules together.
             # Except config-h, which breaks all modules which use HAVE_CONFIG_H.
-            # Except non-recursive-gnulib-prefix-hack, which represents a
-            # nonstandard way of using Automake.
-            # Except mountlist, which aborts the configuration on mingw.
-            # Except lib-ignore, which leads to link errors when Sun C++ is used.
+            # Except non-recursive-gnulib-prefix-hack, which represents a nonstandard
+            # way of using Automake.
+            # Except timevar, which lacks the required file timevar.def.
+            # Except mountlist, which aborts the configuration on mingw. FIXME.
+            # Except lib-ignore, which leads to link errors when Sun C++ is used. FIXME.
             specified_modules = self.modulesystem.list()
             specified_modules = [module
                                  for module in specified_modules
-                                 if module not in ['config-h', 'non-recursive-gnulib-prefix-hack',
+                                 if module not in ['config-h', 'non-recursive-gnulib-prefix-hack', 'timevar',
                                                    'mountlist', 'lib-ignore']]
 
         # Canonicalize the list of specified modules.