Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package gettext-runtime for openSUSE:Factory
checked in at 2026-03-24 18:47:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gettext-runtime (Old)
and /work/SRC/openSUSE:Factory/.gettext-runtime.new.8177 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gettext-runtime"
Tue Mar 24 18:47:47 2026 rev:103 rq:1335303 version:1.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime.changes
2025-09-02 17:58:00.401699138 +0200
+++
/work/SRC/openSUSE:Factory/.gettext-runtime.new.8177/gettext-runtime.changes
2026-03-24 18:47:49.151890681 +0100
@@ -1,0 +2,83 @@
+Mon Feb 2 14:39:45 UTC 2026 - Ana Guerrero <[email protected]>
+
+- Update to 1.0:
+ # Improvements for maintainers and distributors:
+ - In a po/ directory, the PO files are now exactly those that
+ the translators submitted or committed in version control,
+ or a translation project's daemon committed on behalf of
+ the translators. They are no longer regularly updated
+ with respect to the POT file in the same directory.
+ - The advantage for maintainers is that the maintainer may commit
+ the PO files in version control, without getting
+ * lots of modified files shown by "git status",
+ * frequent merge conflicts when merging between branches,
+ * a voluminous version control history.
+ - The advantage for distributors is that the role of files in
+ a release tarball are clearer: The PO files are source code,
+ whereas the POT file and the *.gmo files are generated files.
+ - ATTENTION translators! Translators who work directly on a
+ package's source code (without going through a translation
+ project) now need to run "msginit" before starting work on
+ a PO file.
+ - A new program 'po-fetch' is provided, that fetches
+ the translated PO files from a translation project's site
+ on the internet, and updates the LINGUAS file accordingly.
+ - In a po/ directory, a new script 'fetch-po' is now added
+ by 'gettextize'. It provides the standard interface for
+ fetching the translated PO files. It typically either
+ invokes the 'po-fetch' program or does nothing.
+
+ # Improvements for translators:
+ * msginit:
+ - When the PO file already exists, 'msginit' now updates it
+ w.r.t. the POT file, like 'msgmerge' would do. Previously,
+ 'msginit' failed with an error message in this situation.
+ * pretranslation:
+ - Two new programs, 'msgpre' and 'spit', are provided, that
+ implement machine translation through a locally installed
+ Large Language Model (LLM). 'msgpre' applies to an entire
+ PO file, 'spit' to a single message.
+ - The documentation has a new chapter "Pretranslation".
+
+ # Improvements for maintainers:
+ * xgettext:
+ - The refactoring suggestion when a translatable string contains
+ an URL or email address can now be inhibited through a
+ command-line option '--no-check=url' or '--no-check=email',
+ or through a comment in the source code of the form
+ /* xgettext: no-url-check */ or
+ /* xgettext: no-email-check */
+
+ # Programming languages support:
+ * OCaml:
+ - xgettext now supports OCaml.
+ - 'msgfmt -c' now verifies the syntax of translations of OCaml
+ format strings.
+ - A new example 'hello-ocaml' has been added.
+ * Rust:
+ - xgettext now recognizes 'gettextrs::gettext' invocations,
+ like 'gettext' invocations.
+
+ # libgettextpo library:
+ - The function 'po_message_get_format' now supports
+ distinguishing whether a negative format string mark, such as
+ 'no-c-format', is set or not.
+ - The new functions po_message_has_workflow_flag,
+ po_message_set_workflow_flag,
+ po_message_workflow_flags_iterator, po_flag_next,
+ po_flag_iterator_free can be used to manipulate
+ or inspect the workflow flags of a message.
+ - The new functions po_message_has_sticky_flag,
+ po_message_set_sticky_flag, po_message_sticky_flags_iterator,
+ po_flag_next, po_flag_iterator_free can be used to manipulate
+ or inspect the sticky flags of a messsage.
+
+ # Emacs PO mode:
+ - Restore syntax highlighting in Emacs version 30 or newer.
+
+- Refresh patches.
+- Do not build support for Java and C#, there are not consumers.
+- Use a single spec file for gettext-runtime and gettext-runtime-mini,
+ remove script pre_checkin.sh
+
+-------------------------------------------------------------------
Old:
----
gettext-0.26.tar.xz
gettext-0.26.tar.xz.sig
gettext-csharp.changes
gettext-csharp.spec
gettext-java.changes
gettext-java.spec
gettext-runtime-mini.changes
gettext-runtime-mini.spec
pre_checkin.sh
New:
----
gettext-1.0.tar.xz
gettext-1.0.tar.xz.sig
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gettext-runtime.spec ++++++
--- /var/tmp/diff_new_pack.uc899o/_old 2026-03-24 18:47:51.187973221 +0100
+++ /var/tmp/diff_new_pack.uc899o/_new 2026-03-24 18:47:51.191973383 +0100
@@ -1,7 +1,7 @@
#
# spec file for package gettext-runtime
#
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
# Copyright (c) 2025 Andreas Stieger <[email protected]>
#
# All modifications and additions to the file contributed by third parties
@@ -18,10 +18,18 @@
%define pacname gettext
+
+%define flavor @BUILD_FLAVOR@%{nil}
+%if "%{flavor}" == ""
%bcond_with mini
+%define spec_name gettext-runtime
+%else
+%bcond_without mini
+%define spec_name gettext-runtime-mini
+%endif
-Name: gettext-runtime
-Version: 0.26
+Name: %{spec_name}
+Version: 1.0
Release: 0
BuildRequires: automake >= 1.14
BuildRequires: gcc-c++
@@ -73,17 +81,17 @@
Source6: gettext-runtime.keyring
Patch1: gettext-0.19.3-fix-bashisms.patch
Patch2: gettext-0.12.1-gettextize.patch
-Patch4: gettext-po-mode.diff
-Patch5: gettext-initialize_vars.patch
+Patch3: gettext-po-mode.diff
+Patch4: gettext-initialize_vars.patch
# PATCH-FIX-OPENSUSE gettext-dont-test-gnulib.patch -- [email protected]
-Patch6: gettext-dont-test-gnulib.patch
+Patch5: gettext-dont-test-gnulib.patch
# PATCH-FIX-UPSTREAM boo#941629 -- [email protected]
-Patch11: boo941629-unnessary-rpath-on-standard-path.patch
+Patch6: boo941629-unnessary-rpath-on-standard-path.patch
# PATCH-FEATURE bsc#1165138
-Patch14: 0001-msgcat-Add-feature-to-use-the-newest-po-file.patch
-Patch15: 0002-msgcat-Merge-headers-when-use-first.patch
+Patch7: 0001-msgcat-Add-feature-to-use-the-newest-po-file.patch
+Patch8: 0002-msgcat-Merge-headers-when-use-first.patch
# PATCH-FEATURE-FIX-SUSE boo#1227316 -- [email protected]
-Patch16: 0003-Fix-malformed-header-processing.patch
+Patch9: 0003-Fix-malformed-header-processing.patch
%description
This package contains the intl library as well as tools that ease the
@@ -326,12 +334,16 @@
%_bindir/gettextize
%_bindir/autopoint
%_bindir/recode-sr-latin
+%_bindir/po-fetch
+%_bindir/spit
%doc %_mandir/man1/msg[a-eg-u]*.1.gz
%doc %_mandir/man1/msgfilter.1.gz
%doc %_mandir/man1/xgettext.1.gz
%doc %_mandir/man1/gettextize.1.gz
%doc %_mandir/man1/autopoint.1.gz
%doc %_mandir/man1/recode-sr-latin.1.gz
+%doc %_mandir/man1/po-fetch.1.gz
+%doc %_mandir/man1/spit.1.gz
%doc %_infodir/gettext.info*
%doc %_infodir/autosprintf.info*
%_includedir/gettext-po.h
@@ -368,6 +380,8 @@
%doc %_docdir/%name/tutorial*.html
%doc %_docdir/%name/xgettext*.html
%doc %_docdir/%name/recode-sr-latin.1.html
+%doc %_docdir/%name/po-fetch.1.html
+%doc %_docdir/%name/spit.1.html
%if %{without mini}
%files -n libtextstyle0
@@ -376,7 +390,6 @@
%files -n libtextstyle-devel
%dir %_includedir/textstyle
%_includedir/textstyle.h
-%_includedir/textstyle/stdbool.h
%_includedir/textstyle/version.h
%_includedir/textstyle/woe32dll.h
%_libdir/libtextstyle.so
++++++ 0001-msgcat-Add-feature-to-use-the-newest-po-file.patch ++++++
--- /var/tmp/diff_new_pack.uc899o/_old 2026-03-24 18:47:51.283977113 +0100
+++ /var/tmp/diff_new_pack.uc899o/_new 2026-03-24 18:47:51.307978086 +0100
@@ -1,15 +1,16 @@
-From dbf95c6ed2239f4831c06d84cf1eef5890cee1c7 Mon Sep 17 00:00:00 2001
-From: Markéta Calábková <[email protected]>
-Date: Wed, 20 Aug 2025 16:44:22 +0200
-Subject: [PATCH 1/3] msgcat: Add feature to use the newest po file.
+From b634e104d13117186d2f7d68d867273215a9cec6 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Mark=C3=A9ta=20Cal=C3=A1bkov=C3=A1?=
+ <[email protected]>
+Date: Tue, 3 Feb 2026 14:49:59 +0100
+Subject: [PATCH] msgcat: Add feature to use the newest po file.
When concatenating po files, it is often useful to prefer strings from
the newest file regardless their ordering on the command line.
-Updated to 0.26
+Updated to 1.0
---
gettext-tools/src/Makefile.am | 3 +-
- gettext-tools/src/message.c | 9 ++++
+ gettext-tools/src/message.c | 8 +++
gettext-tools/src/message.h | 5 +-
gettext-tools/src/msgcat.c | 10 ++++
gettext-tools/src/msgl-age.c | 96 +++++++++++++++++++++++++++++++++
@@ -18,24 +19,24 @@
gettext-tools/src/msgl-cat.h | 1 +
gettext-tools/src/msgl-header.c | 46 ++++++++++++++++
gettext-tools/src/msgl-header.h | 6 +++
- 10 files changed, 225 insertions(+), 2 deletions(-)
+ 10 files changed, 224 insertions(+), 2 deletions(-)
create mode 100644 gettext-tools/src/msgl-age.c
create mode 100644 gettext-tools/src/msgl-age.h
diff --git a/gettext-tools/src/Makefile.am b/gettext-tools/src/Makefile.am
-index 1b7faf1..2fd7412 100644
+index 1e6ae7f..2892337 100644
--- a/gettext-tools/src/Makefile.am
+++ b/gettext-tools/src/Makefile.am
-@@ -53,7 +53,7 @@ noinst_HEADERS = \
+@@ -62,7 +62,7 @@ noinst_HEADERS = \
write-catalog.h write-po.h write-properties.h write-stringtable.h \
dir-list.h file-list.h read-po-gram.h cldr-plural.h \
cldr-plural-exp.h locating-rules.h its.h search-path.h \
- msgl-charset.h msgl-equal.h msgl-iconv.h msgl-ascii.h msgl-ofn.h msgl-cat.h
\
+ msgl-age.h msgl-charset.h msgl-equal.h msgl-iconv.h msgl-ascii.h msgl-ofn.h
msgl-cat.h \
- msgl-header.h msgl-english.h msgl-check.h msgl-fsearch.h msgfmt.h
msgunfmt.h \
+ msgl-header.h msgl-english.h msgl-check.h msgl-fsearch.h msgl-merge.h \
+ msgfmt.h msgunfmt.h \
plural-count.h plural-eval.h plural-distrib.h \
- read-mo.h write-mo.h \
-@@ -228,6 +228,7 @@ libgettextsrc_la_SOURCES = \
+@@ -241,6 +241,7 @@ libgettextsrc_la_SOURCES = \
read-catalog-special.c \
read-catalog.c read-catalog-file.c \
write-catalog.c write-properties.c write-stringtable.c write-po.c \
@@ -44,10 +45,10 @@
msgl-ofn.c \
msgl-iconv.c \
diff --git a/gettext-tools/src/message.c b/gettext-tools/src/message.c
-index 7a605b3..0dda84a 100644
+index 4b7fc8b..4ff9c0c 100644
--- a/gettext-tools/src/message.c
+++ b/gettext-tools/src/message.c
-@@ -371,6 +371,15 @@ message_list_append (message_list_ty *mlp, message_ty *mp)
+@@ -404,6 +404,14 @@ message_list_append (message_list_ty *mlp, message_ty *mp)
}
@@ -59,12 +60,11 @@
+}
+
+
-+
void
message_list_prepend (message_list_ty *mlp, message_ty *mp)
{
diff --git a/gettext-tools/src/message.h b/gettext-tools/src/message.h
-index 5790295..b456edc 100644
+index b73b0fc..ae0fb0e 100644
--- a/gettext-tools/src/message.h
+++ b/gettext-tools/src/message.h
@@ -24,7 +24,7 @@
@@ -76,7 +76,7 @@
#ifdef __cplusplus
extern "C" {
-@@ -276,6 +276,8 @@ extern void
+@@ -283,6 +283,8 @@ extern void
message_list_free (message_list_ty *mlp, int keep_messages);
extern void
message_list_append (message_list_ty *mlp, message_ty *mp);
@@ -85,7 +85,7 @@
extern void
message_list_prepend (message_list_ty *mlp, message_ty *mp);
extern void
-@@ -358,6 +360,7 @@ struct msgdomain_list_ty
+@@ -365,6 +367,7 @@ struct msgdomain_list_ty
size_t nitems_max;
bool use_hashtable;
const char *encoding; /* canonicalized encoding or NULL if unknown
*/
@@ -94,18 +94,18 @@
extern msgdomain_list_ty *
diff --git a/gettext-tools/src/msgcat.c b/gettext-tools/src/msgcat.c
-index de5b2aa..5a69050 100644
+index 6383e89..b6441e5 100644
--- a/gettext-tools/src/msgcat.c
+++ b/gettext-tools/src/msgcat.c
-@@ -109,6 +109,7 @@ main (int argc, char **argv)
+@@ -94,6 +94,7 @@ main (int argc, char **argv)
more_than = 0;
less_than = INT_MAX;
use_first = false;
+ use_newest = false;
-
- /* Parse command line options. */
- BEGIN_ALLOW_OMITTING_FIELD_INITIALIZERS
-@@ -139,6 +140,7 @@ main (int argc, char **argv)
+ catalog_input_format_ty input_syntax = &input_format_po;
+ catalog_output_format_ty output_syntax = &output_format_po;
+ bool sort_by_msgid = false;
+@@ -130,6 +131,7 @@ main (int argc, char **argv)
{ "to-code", 't', required_argument },
{ "unique", 'u', no_argument },
{ "use-first", CHAR_MAX + 1, no_argument },
@@ -113,19 +113,19 @@
{ "version", 'V', no_argument },
{ "width", 'w', required_argument },
{ "more-than", '>', required_argument },
-@@ -282,6 +284,11 @@ main (int argc, char **argv)
- message_print_style_filepos (filepos_comment_none);
- break;
-
-+ case CHAR_MAX + 10: /* --use-newest */
-+ use_newest = true;
-+ use_first = true;
-+ break;
-+
- default:
- usage (EXIT_FAILURE);
- /* NOTREACHED */
-@@ -433,6 +440,9 @@ Output details:\n"));
+@@ -271,6 +273,11 @@ main (int argc, char **argv)
+ message_print_style_filepos (filepos_comment_none);
+ break;
+
++ case CHAR_MAX + 10: /* --use-newest */
++ use_newest = true;
++ use_first = true;
++ break;
++
+ default:
+ usage (EXIT_FAILURE);
+ /* NOTREACHED */
+@@ -424,6 +431,9 @@ Output details:\n"));
printf (_("\
--use-first use first available translation for each\n\
message, don't merge several translations\n"));
@@ -280,10 +280,10 @@
+
+#endif
diff --git a/gettext-tools/src/msgl-cat.c b/gettext-tools/src/msgl-cat.c
-index a477285..76802b1 100644
+index b81f227..e338b6c 100644
--- a/gettext-tools/src/msgl-cat.c
+++ b/gettext-tools/src/msgl-cat.c
-@@ -36,6 +36,7 @@
+@@ -35,6 +35,7 @@
#include "message.h"
#include "read-catalog-file.h"
#include "po-charset.h"
@@ -291,7 +291,7 @@
#include "msgl-ascii.h"
#include "msgl-ofn.h"
#include "msgl-equal.h"
-@@ -58,6 +59,11 @@ int less_than;
+@@ -57,6 +58,11 @@ int less_than;
If false, merge all available translations into one and fuzzy it. */
bool use_first;
@@ -303,27 +303,27 @@
/* If true, merge like msgcomm.
If false, merge like msgcat and msguniq. */
bool msgcomm_mode = false;
-@@ -124,6 +130,15 @@ catenate_msgdomain_list (string_list_ty *file_list,
- for (n = 0; n < nfiles; n++)
+@@ -117,6 +123,15 @@ catenate_msgdomain_list (string_list_ty *file_list,
+ for (size_t n = 0; n < nfiles; n++)
mdlps[n] = read_catalog_file (files[n], input_syntax);
+ /* --use-newest case -- sort messages by time and then let --use-first
finish the job */
+ if (use_newest)
+ {
-+ for (n = 0; n < nfiles; n++)
++ for (size_t n = 0; n < nfiles; n++)
+ msgdomain_read_ages (mdlps[n]);
+
+ msgdomain_sort_by_ages (mdlps, nfiles);
+ }
+
/* Determine the canonical name of each input file's encoding. */
- canon_charsets = XNMALLOC (nfiles, const char **);
- for (n = 0; n < nfiles; n++)
+ const char ***canon_charsets = XNMALLOC (nfiles, const char **);
+ for (size_t n = 0; n < nfiles; n++)
diff --git a/gettext-tools/src/msgl-cat.h b/gettext-tools/src/msgl-cat.h
-index 098ffb3..25dd117 100644
+index d4b1d19..f43a0c2 100644
--- a/gettext-tools/src/msgl-cat.h
+++ b/gettext-tools/src/msgl-cat.h
-@@ -37,6 +37,7 @@ extern LIBGETTEXTSRC_DLL_VARIABLE int less_than;
+@@ -38,6 +38,7 @@ extern LIBGETTEXTSRC_DLL_VARIABLE int less_than;
/* If true, use the first available translation.
If false, merge all available translations into one and fuzzy it. */
extern LIBGETTEXTSRC_DLL_VARIABLE bool use_first;
@@ -332,10 +332,10 @@
/* If true, merge like msgcomm.
If false, merge like msgcat and msguniq. */
diff --git a/gettext-tools/src/msgl-header.c b/gettext-tools/src/msgl-header.c
-index 0e36375..611c540 100644
+index 304ef2c..352c537 100644
--- a/gettext-tools/src/msgl-header.c
+++ b/gettext-tools/src/msgl-header.c
-@@ -244,3 +244,49 @@ message_list_delete_header_field (message_list_ty *mlp,
+@@ -238,3 +238,49 @@ message_list_delete_header_field (message_list_ty *mlp,
}
}
}
@@ -386,10 +386,10 @@
+ }
+}
diff --git a/gettext-tools/src/msgl-header.h b/gettext-tools/src/msgl-header.h
-index 4ca5314..b441de2 100644
+index a98db95..933295b 100644
--- a/gettext-tools/src/msgl-header.h
+++ b/gettext-tools/src/msgl-header.h
-@@ -48,6 +48,12 @@ extern void
+@@ -49,6 +49,12 @@ extern void
message_list_delete_header_field (message_list_ty *mlp,
const char *field);
@@ -403,6 +403,6 @@
#ifdef __cplusplus
}
--
-2.50.1
+2.52.0
++++++ _multibuild ++++++
--- /var/tmp/diff_new_pack.uc899o/_old 2026-03-24 18:47:51.535987328 +0100
+++ /var/tmp/diff_new_pack.uc899o/_new 2026-03-24 18:47:51.567988626 +0100
@@ -1,6 +1,4 @@
<multibuild>
- <package>gettext-csharp</package>
- <package>gettext-java</package>
<package>gettext-runtime-mini</package>
</multibuild>
++++++ gettext-0.12.1-gettextize.patch ++++++
--- /var/tmp/diff_new_pack.uc899o/_old 2026-03-24 18:47:51.659992356 +0100
+++ /var/tmp/diff_new_pack.uc899o/_new 2026-03-24 18:47:51.679993166 +0100
@@ -1,7 +1,7 @@
-Index: gettext-tools/misc/gettextize.in
+Index: gettext-tools/wizard/gettextize.in
===================================================================
---- a/gettext-tools/misc/gettextize.in.orig 2010-06-06 14:49:57.000000000
+0200
-+++ b/gettext-tools/misc/gettextize.in 2010-12-20 18:47:11.932132562 +0100
+--- a/gettext-tools/wizard/gettextize.in
++++ b/gettext-tools/wizard/gettextize.in
@@ -1262,20 +1262,6 @@ if $doit; then
echo "It is a wrapper around <libintl.h> that implements the configure
--disable-nls"
echo "option."
++++++ gettext-0.26.tar.xz -> gettext-1.0.tar.xz ++++++
/work/SRC/openSUSE:Factory/gettext-runtime/gettext-0.26.tar.xz
/work/SRC/openSUSE:Factory/.gettext-runtime.new.8177/gettext-1.0.tar.xz differ:
char 26, line 1
++++++ gettext-0.26.tar.xz.sig -> gettext-1.0.tar.xz.sig ++++++
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-0.26.tar.xz.sig
2025-08-22 17:46:38.117099667 +0200
+++ /work/SRC/openSUSE:Factory/.gettext-runtime.new.8177/gettext-1.0.tar.xz.sig
2026-03-24 18:47:49.115889222 +0100
@@ -1,7 +1,7 @@
-----BEGIN PGP SIGNATURE-----
-iHUEABYKAB0WIQTg/72XU5f3ejKrduy2MB2eG76sCAUCaHv+8wAKCRC2MB2eG76s
-CG8YAP9Fsv5IBUA+aFwd5/yfQ4JQWYSyhzK9cVVB2l8v6BEjcwEAmzTMF6YKb1ze
-STbpjJ+muQQX5MHSKdAZ+S/g5VyfAwk=
-=UeX6
+iHUEABYKAB0WIQTg/72XU5f3ejKrduy2MB2eG76sCAUCaXqmSwAKCRC2MB2eG76s
+CNQjAQC62YC1Xz6UoFPU58k49G+qtru819yiX4Px4h5FezqCZwD/cvfeD1b1eN3s
+7jyZG4ucLLyd3cKz2b+Gqm2ub4pwUAo=
+=OWOJ
-----END PGP SIGNATURE-----
++++++ gettext-dont-test-gnulib.patch ++++++
--- /var/tmp/diff_new_pack.uc899o/_old 2026-03-24 18:47:51.960004518 +0100
+++ /var/tmp/diff_new_pack.uc899o/_new 2026-03-24 18:47:51.972005004 +0100
@@ -1,25 +1,29 @@
Subject: This is not gnulib, so don't test it
From: Stephan Kulow <[email protected]>
---- gettext-0.20.1.orig/gettext-tools/Makefile.am 2019-06-04
13:12:49.514030196 +0200
-+++ gettext-0.20.1/gettext-tools/Makefile.am 2019-06-04 13:13:09.778072816
+0200
+diff --git a/gettext-tools/Makefile.am b/gettext-tools/Makefile.am
+index e045161c3..2fd5b58cf 100644
+--- a/gettext-tools/Makefile.am
++++ b/gettext-tools/Makefile.am
@@ -19,7 +19,7 @@
AUTOMAKE_OPTIONS = 1.5 gnu
ACLOCAL_AMFLAGS = -I m4 -I ../gettext-runtime/m4 -I ../m4 -I gnulib-m4 -I
libgrep/gnulib-m4 -I libgettextpo/gnulib-m4 -I tests/gnulib-m4
--SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles emacs
misc man m4 tests system-tests gnulib-tests install-tests examples doc
-+SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles emacs
misc man m4 tests system-tests examples install-tests doc
+-SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles wizard
autotools misc emacs man m4 tests system-tests gnulib-tests install-tests
examples doc
++SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles wizard
autotools misc emacs man m4 tests system-tests install-tests examples doc
- EXTRA_DIST = misc/disclaim-translations.txt
+ EXTRA_DIST =
MOSTLYCLEANFILES = core *.stackdump
---- gettext-0.20.1.orig/gettext-tools/Makefile.in 2019-06-04
13:12:49.514030196 +0200
-+++ gettext-0.20.1/gettext-tools/Makefile.in 2019-06-04 13:14:33.546249004
+0200
-@@ -2016,7 +2016,7 @@
+diff --git a/gettext-tools/Makefile.in b/gettext-tools/Makefile.in
+index 147f88d8f..25d12771b 100644
+--- a/gettext-tools/Makefile.in
++++ b/gettext-tools/Makefile.in
+@@ -4014,7 +4014,7 @@ top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AUTOMAKE_OPTIONS = 1.5 gnu
ACLOCAL_AMFLAGS = -I m4 -I ../gettext-runtime/m4 -I ../m4 -I gnulib-m4 -I
libgrep/gnulib-m4 -I libgettextpo/gnulib-m4 -I tests/gnulib-m4
--SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles emacs
misc man m4 tests system-tests gnulib-tests install-tests examples doc
-+SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles emacs
misc man m4 tests system-tests examples install-tests doc
+-SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles wizard
autotools misc emacs man m4 tests system-tests gnulib-tests install-tests
examples doc
++SUBDIRS = gnulib-lib libgrep src libgettextpo po its projects styles wizard
autotools misc emacs man m4 tests system-tests install-tests examples doc
# Files imported from tree-sitter.