Hello community, here is the log from the commit of package texinfo for openSUSE:Factory checked in at 2018-12-19 13:29:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/texinfo (Old) and /work/SRC/openSUSE:Factory/.texinfo.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "texinfo" Wed Dec 19 13:29:14 2018 rev:54 rq:657161 version:6.5 Changes: -------- --- /work/SRC/openSUSE:Factory/texinfo/texinfo.changes 2018-12-10 12:21:33.314932985 +0100 +++ /work/SRC/openSUSE:Factory/.texinfo.new.28833/texinfo.changes 2018-12-19 13:29:24.068932489 +0100 @@ -1,0 +2,9 @@ +Tue Dec 11 11:49:21 UTC 2018 - Dominique Leuenberger <[email protected]> + +- Update perl-5.28-fixes.patch: Update locale handling for Perl 5.28. + Perl 5.28 introduced thread-safe locales, where setlocale() + only affects the locale of the current thread. External code + like mbrtowc(3) isn't aware of this thread specific locale, + so we need to explicitly modify the global one instead. + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ texinfo.spec ++++++ --- /var/tmp/diff_new_pack.Ev7jbq/_old 2018-12-19 13:29:24.752931596 +0100 +++ /var/tmp/diff_new_pack.Ev7jbq/_new 2018-12-19 13:29:24.752931596 +0100 @@ -24,7 +24,7 @@ Summary: Tools for creating documentation from texinfo sources License: GPL-3.0-or-later Group: Productivity/Publishing/Texinfo -Url: https://www.gnu.org/software/texinfo/ +URL: https://www.gnu.org/software/texinfo/ Source0: https://ftp.gnu.org/pub/gnu/texinfo/texinfo-%{version}.tar.xz Source1: https://ftp.gnu.org/pub/gnu/texinfo/texinfo-%{version}.tar.xz.sig Source2: %{name}.keyring ++++++ perl-5.28-fixes.patch ++++++ --- /var/tmp/diff_new_pack.Ev7jbq/_old 2018-12-19 13:29:24.780931560 +0100 +++ /var/tmp/diff_new_pack.Ev7jbq/_new 2018-12-19 13:29:24.780931560 +0100 @@ -9,10 +9,10 @@ tp/Texinfo/Parser.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -diff --git a/tp/Texinfo/Parser.pm b/tp/Texinfo/Parser.pm -index dc32ca2..c577aa9 100644 ---- a/tp/Texinfo/Parser.pm -+++ b/tp/Texinfo/Parser.pm +Index: texinfo-6.5/tp/Texinfo/Parser.pm +=================================================================== +--- texinfo-6.5.orig/tp/Texinfo/Parser.pm ++++ texinfo-6.5/tp/Texinfo/Parser.pm @@ -5478,11 +5478,11 @@ sub _parse_special_misc_command($$$$) } } elsif ($command eq 'clickstyle') { @@ -27,6 +27,30 @@ $has_comment = 1 if (defined($4)); } else { $self->line_error (sprintf($self->__( --- -2.17.0 - +Index: texinfo-6.5/tp/Texinfo/Convert/XSParagraph/xspara.c +=================================================================== +--- texinfo-6.5.orig/tp/Texinfo/Convert/XSParagraph/xspara.c ++++ texinfo-6.5/tp/Texinfo/Convert/XSParagraph/xspara.c +@@ -248,6 +248,11 @@ xspara_init (void) + + dTHX; + ++#if PERL_VERSION > 27 || (PERL_VERSION == 27 && PERL_SUBVERSION > 8) ++ /* needed due to thread-safe locale handling in newer perls */ ++ switch_to_global_locale(); ++#endif ++ + if (setlocale (LC_CTYPE, "en_US.UTF-8") + || setlocale (LC_CTYPE, "en_US.utf8")) + goto success; +@@ -320,6 +325,10 @@ failure: + { + success: ; + free (utf8_locale); ++#if PERL_VERSION > 27 || (PERL_VERSION == 27 && PERL_SUBVERSION > 8) ++ /* needed due to thread-safe locale handling in newer perls */ ++ sync_locale(); ++#endif + /* + fprintf (stderr, "tried to set LC_CTYPE to UTF-8.\n"); + fprintf (stderr, "character encoding is: %s\n",
