]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Follow gnulib-tool changes, part 36.
authorCollin Funk <collin.funk1@gmail.com>
Thu, 29 Feb 2024 23:31:17 +0000 (15:31 -0800)
committerBruno Haible <bruno@clisp.org>
Fri, 1 Mar 2024 11:40:28 +0000 (12:40 +0100)
Follow gnulib-tool change
2017-03-14  Mathieu Lirzin  <mthl@gnu.org>
gnulib-tool: don't automatically distribute files from top/

* pygnulib/GLModuleSystem.py
(GLModule.getAutomakeSnippet_Unconditional): Don't distribute files from
top/ automatically.

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

index f4c78b86662712121ac92d82e890ea1cbce189e7..9536c174f83ce6c1e17cdcf292f50d1a223a2ae4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2024-02-29  Collin Funk  <collin.funk1@gmail.com>
+
+       gnulib-tool.py: Follow gnulib-tool changes, part 36.
+       Follow gnulib-tool change
+       2017-03-14  Mathieu Lirzin  <mthl@gnu.org>
+       gnulib-tool: don't automatically distribute files from top/
+       * pygnulib/GLModuleSystem.py
+       (GLModule.getAutomakeSnippet_Unconditional): Don't distribute files from
+       top/ automatically.
+
 2024-02-29  Bruno Haible  <bruno@clisp.org>
 
        xalloc: Don't use identifier 'nonnull'.
index d942119be0b28f8db89f34c409c052d85dafd6d8..3fe32282a78704aee28be3b04578df5bd6e1edcf 100644 (file)
@@ -793,20 +793,6 @@ Date:   Sat May 20 13:24:37 2017 +0200
 
 --------------------------------------------------------------------------------
 
-commit f30205c5d59bab2c035165158e7d5d65b07b8363
-Author: Mathieu Lirzin <mthl@gnu.org>
-Date:   Tue Mar 14 12:19:40 2017 +0100
-
-    gnulib-tool: don't automatically distribute files from top/
-
-    * gnulib-tool (func_get_automake_snippet_unconditional): To be able to
-    not distribute top/README-release by default, don't distribute files
-    from top/ unconditionally.
-    * modules/gnumakefile (Makefile.am): Distribute top/GNUmakefile.
-    * modules/maintainer-makefile (Makefile.am): Distribute top/maint.mk.
-
---------------------------------------------------------------------------------
-
 commit 9bdf6c8a0cdeb13c12e4b65dee9538c5468dbe1d
 Author: Bruno Haible <bruno@clisp.org>
 Date:   Sun Aug 19 14:06:50 2012 +0200
index 675d33de322bab42364d63092bbdc57208f50872..3672474fa10a6ae345927b4858b6582b16002dd8 100644 (file)
@@ -616,15 +616,6 @@ class GLModule(object):
                     buildaux_files = joinpath('$(top_srcdir)', auxdir, buildaux_files)
                     result += 'EXTRA_DIST += %s' % buildaux_files
                     result += '\n\n'
-                # Synthesize an EXTRA_DIST augmentation also for the files from top/.
-                top_files = filter_filelist(constants.NL, all_files,
-                                            'top/', '', 'top/', '').split(constants.NL)
-                top_files = sorted(set(top_files))
-                if top_files != ['']:
-                    top_files = ''.join(top_files)
-                    top_files = joinpath('$(top_srcdir)', top_files)
-                    result += 'EXTRA_DIST += %s' % top_files
-                    result += '\n\n'
             result = constants.nlconvert(result)
             self.cache['makefile-unconditional'] = result
         return self.cache['makefile-unconditional']