From: Collin Funk Date: Thu, 29 Feb 2024 00:35:36 +0000 (-0800) Subject: gnulib-tool.py: Follow gnulib-tool changes, part 32. X-Git-Tag: v1.0~359 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=5c6f6acd689f41b0e560a2f7aa41e395e21798c6;p=gnulib.git gnulib-tool.py: Follow gnulib-tool changes, part 32. Follow gnulib-tool change 2018-10-22 Bruno Haible 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. --- diff --git a/ChangeLog b/ChangeLog index 02d22de00f..398d1d5cda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2024-02-28 Collin Funk + + gnulib-tool.py: Follow gnulib-tool changes, part 32. + Follow gnulib-tool change + 2018-10-22 Bruno Haible + 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 gnulib-tool.py: Emit year range on file copyright notices. diff --git a/gnulib-tool.py.TODO b/gnulib-tool.py.TODO index 5f4a134edf..905793e0c7 100644 --- a/gnulib-tool.py.TODO +++ b/gnulib-tool.py.TODO @@ -729,16 +729,6 @@ Date: Tue Oct 23 00:06:46 2018 +0200 -------------------------------------------------------------------------------- -commit 98993f9d1b2ed03007be9dbcdc6bd9fe2d49777b -Author: Bruno Haible -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 Date: Mon Sep 3 21:19:16 2018 +0200 diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py index bc0b153304..a7fd806d4f 100644 --- a/pygnulib/GLTestDir.py +++ b/pygnulib/GLTestDir.py @@ -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.