Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lttoolbox for openSUSE:Factory checked in at 2022-11-01 13:43:39 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lttoolbox (Old) and /work/SRC/openSUSE:Factory/.lttoolbox.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lttoolbox" Tue Nov 1 13:43:39 2022 rev:5 rq:1032659 version:3.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/lttoolbox/lttoolbox.changes 2022-10-29 20:17:48.982437513 +0200 +++ /work/SRC/openSUSE:Factory/.lttoolbox.new.2275/lttoolbox.changes 2022-11-01 13:43:48.440291591 +0100 @@ -1,0 +2,6 @@ +Tue Nov 1 09:02:40 UTC 2022 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 3.7.1 + * Write directly to output stream; Don't hexify single char16_t. + +------------------------------------------------------------------- Old: ---- v3.7.0.tar.gz New: ---- v3.7.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lttoolbox.spec ++++++ --- /var/tmp/diff_new_pack.HFotC8/_old 2022-11-01 13:43:48.980294464 +0100 +++ /var/tmp/diff_new_pack.HFotC8/_new 2022-11-01 13:43:48.984294485 +0100 @@ -19,7 +19,7 @@ Name: lttoolbox %define lname liblttoolbox3 Summary: Toolbox for lexical processing and morphological analysis -Version: 3.7.0 +Version: 3.7.1 Release: 0 License: GPL-2.0-or-later Group: Productivity/Scientific/Other ++++++ v3.7.0.tar.gz -> v3.7.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lttoolbox-3.7.0/configure.ac new/lttoolbox-3.7.1/configure.ac --- old/lttoolbox-3.7.0/configure.ac 2022-10-14 15:19:27.000000000 +0200 +++ new/lttoolbox-3.7.1/configure.ac 2022-11-01 09:36:47.000000000 +0100 @@ -2,7 +2,7 @@ m4_define([PKG_VERSION_MAJOR], [3]) m4_define([PKG_VERSION_MINOR], [7]) -m4_define([PKG_VERSION_PATCH], [0]) +m4_define([PKG_VERSION_PATCH], [1]) # Bump if the ABI (not API) changed in a backwards-incompatible manner m4_define([PKG_VERSION_ABI], [3]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lttoolbox-3.7.0/lttoolbox/ustring.h new/lttoolbox-3.7.1/lttoolbox/ustring.h --- old/lttoolbox-3.7.0/lttoolbox/ustring.h 2022-10-14 15:19:27.000000000 +0200 +++ new/lttoolbox-3.7.1/lttoolbox/ustring.h 2022-11-01 09:36:47.000000000 +0100 @@ -41,16 +41,14 @@ inline std::ostream& operator<<(std::ostream& ostr, char16_t c) { - ostr << std::hex << static_cast<uint16_t>(c); + utf8::utf16to8(&c, &c+1, std::ostream_iterator<char>(ostr)); return ostr; } inline std::ostream& operator<<(std::ostream& ostr, UStringView str) { - std::string res; - utf8::utf16to8(str.begin(), str.end(), std::back_inserter(res)); - ostr << res; + utf8::utf16to8(str.begin(), str.end(), std::ostream_iterator<char>(ostr)); return ostr; }