Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package courier-unicode for openSUSE:Factory 
checked in at 2021-03-29 18:21:54
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/courier-unicode (Old)
 and      /work/SRC/openSUSE:Factory/.courier-unicode.new.2401 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "courier-unicode"

Mon Mar 29 18:21:54 2021 rev:8 rq:881713 version:2.2.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/courier-unicode/courier-unicode.changes  
2021-03-20 21:26:52.301239598 +0100
+++ 
/work/SRC/openSUSE:Factory/.courier-unicode.new.2401/courier-unicode.changes    
    2021-03-29 18:21:57.334273176 +0200
@@ -1,0 +2,6 @@
+Sat Mar 27 14:48:41 UTC 2021 - Arjen de Korte <[email protected]>
+
+- update to 2.2.3
+  * Fix compilation error on CentOS 7
+
+-------------------------------------------------------------------

Old:
----
  courier-unicode-2.2.2.tar.bz2
  courier-unicode-2.2.2.tar.bz2.sig

New:
----
  courier-unicode-2.2.3.tar.bz2
  courier-unicode-2.2.3.tar.bz2.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ courier-unicode.spec ++++++
--- /var/tmp/diff_new_pack.m8vPlH/_old  2021-03-29 18:21:57.842273696 +0200
+++ /var/tmp/diff_new_pack.m8vPlH/_new  2021-03-29 18:21:57.846273700 +0200
@@ -20,7 +20,7 @@
 %define libsoname %{libname}7
 
 Name:           courier-unicode
-Version:        2.2.2
+Version:        2.2.3
 Release:        0
 Summary:        Courier Unicode Library
 License:        GPL-3.0-or-later

++++++ courier-unicode-2.2.2.tar.bz2 -> courier-unicode-2.2.3.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/courier-unicode-2.2.2/ChangeLog 
new/courier-unicode-2.2.3/ChangeLog
--- old/courier-unicode-2.2.2/ChangeLog 2021-03-13 02:27:24.000000000 +0100
+++ new/courier-unicode-2.2.3/ChangeLog 2021-03-26 11:58:38.000000000 +0100
@@ -1,3 +1,9 @@
+2.2.3
+
+2021-03-21  Sam Varshavchik  <[email protected]>
+
+       * Fix compilation error on CentOS 7.
+
 2.2.2
 
 2021-03-12  Sam Varshavchik  <[email protected]>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/courier-unicode-2.2.2/biditest2.C 
new/courier-unicode-2.2.3/biditest2.C
--- old/courier-unicode-2.2.2/biditest2.C       2021-03-13 01:36:41.000000000 
+0100
+++ new/courier-unicode-2.2.3/biditest2.C       2021-03-21 14:13:40.000000000 
+0100
@@ -729,20 +729,22 @@
 
 void composition_test()
 {
+       typedef std::tuple<unicode_bidi_level_t,
+                          size_t, size_t, size_t,
+                          size_t> results_t;
+
        static const struct {
                std::u32string str;
                std::vector<unicode_bidi_level_t> levels;
-               std::vector<std::tuple<unicode_bidi_level_t,
-                                      size_t, size_t, size_t,
-                                      size_t>> results;
+               std::vector<results_t> results;
        } tests[] = {
                // Test 1
                {
                        U"a\u0303\u0303b\u0303\u0303c",
                        {0, 0, 0, 0, 0, 0, 0},
                        {
-                               {0, 0, 7, 1, 2},
-                               {0, 0, 7, 4, 2},
+                               results_t{0, 0, 7, 1, 2},
+                               results_t{0, 0, 7, 4, 2},
                        }
                },
                // Test 2
@@ -750,8 +752,8 @@
                        U"\u0303ab\u0303",
                        {0, 0, 0, 0},
                        {
-                               {0, 0, 4, 0, 1},
-                               {0, 0, 4, 3, 1},
+                               results_t{0, 0, 4, 0, 1},
+                               results_t{0, 0, 4, 3, 1},
                        }
                },
                // Test 3
@@ -759,8 +761,8 @@
                        U"a\u0303\u0303b",
                        {0, 0, 1, 1},
                        {
-                               {0, 0, 2, 1, 1},
-                               {1, 2, 2, 2, 1},
+                               results_t{0, 0, 2, 1, 1},
+                               results_t{1, 2, 2, 2, 1},
                        }
                },
                // Test 4
@@ -768,8 +770,8 @@
                        U"\u0303a\u0303a",
                        {0, 0, 0, 0},
                        {
-                               {0, 0, 4, 0, 1},
-                               {0, 0, 4, 2, 1},
+                               results_t{0, 0, 4, 0, 1},
+                               results_t{0, 0, 4, 2, 1},
                        }
                },
        };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/courier-unicode-2.2.2/configure 
new/courier-unicode-2.2.3/configure
--- old/courier-unicode-2.2.2/configure 2021-03-14 17:23:43.000000000 +0100
+++ new/courier-unicode-2.2.3/configure 2021-03-26 11:58:53.000000000 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for courier-unicode 2.2.2.
+# Generated by GNU Autoconf 2.69 for courier-unicode 2.2.3.
 #
 # Report bugs to <[email protected]>.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='courier-unicode'
 PACKAGE_TARNAME='courier-unicode'
-PACKAGE_VERSION='2.2.2'
-PACKAGE_STRING='courier-unicode 2.2.2'
+PACKAGE_VERSION='2.2.3'
+PACKAGE_STRING='courier-unicode 2.2.3'
 PACKAGE_BUGREPORT='[email protected]'
 PACKAGE_URL=''
 
@@ -1335,7 +1335,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures courier-unicode 2.2.2 to adapt to many kinds of 
systems.
+\`configure' configures courier-unicode 2.2.3 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1405,7 +1405,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of courier-unicode 2.2.2:";;
+     short | recursive ) echo "Configuration of courier-unicode 2.2.3:";;
    esac
   cat <<\_ACEOF
 
@@ -1520,7 +1520,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-courier-unicode configure 2.2.2
+courier-unicode configure 2.2.3
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2010,7 +2010,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by courier-unicode $as_me 2.2.2, which was
+It was created by courier-unicode $as_me 2.2.3, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2884,7 +2884,7 @@
 
 # Define the identity of the package.
  PACKAGE='courier-unicode'
- VERSION='2.2.2'
+ VERSION='2.2.3'
 
 
 # Some tools Automake needs.
@@ -18096,7 +18096,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by courier-unicode $as_me 2.2.2, which was
+This file was extended by courier-unicode $as_me 2.2.3, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -18162,7 +18162,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-courier-unicode config.status 2.2.2
+courier-unicode config.status 2.2.3
 configured by $0, generated by GNU Autoconf 2.69,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/courier-unicode-2.2.2/configure.ac 
new/courier-unicode-2.2.3/configure.ac
--- old/courier-unicode-2.2.2/configure.ac      2021-03-13 02:25:43.000000000 
+0100
+++ new/courier-unicode-2.2.3/configure.ac      2021-03-26 11:58:04.000000000 
+0100
@@ -1,6 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
-AC_INIT([courier-unicode], [2.2.2], [[email protected]])
+AC_INIT([courier-unicode], [2.2.3],
+                          [[email protected]])
 
 >confdefs.h  # Kill PACKAGE_ macros
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/courier-unicode-2.2.2/courier-unicode.h 
new/courier-unicode-2.2.3/courier-unicode.h
--- old/courier-unicode-2.2.2/courier-unicode.h 2021-03-14 18:04:57.000000000 
+0100
+++ new/courier-unicode-2.2.3/courier-unicode.h 2021-03-26 11:58:58.000000000 
+0100
@@ -42,7 +42,7 @@
 #endif
 #endif
 
-#define COURIER_UNICODE_VERSION 2002002
+#define COURIER_UNICODE_VERSION 2002003
 
 /*
 ** The system default character set, from the locale.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/courier-unicode-2.2.2/courier-unicode.spec 
new/courier-unicode-2.2.3/courier-unicode.spec
--- old/courier-unicode-2.2.2/courier-unicode.spec      2021-03-14 
18:26:24.000000000 +0100
+++ new/courier-unicode-2.2.3/courier-unicode.spec      2021-03-26 
12:00:18.000000000 +0100
@@ -1,18 +1,18 @@
 Summary: Courier Unicode Library
 %if 0%{?compat:1}
-Name: courier-unicode%(echo 2.2.2 | tr -d '.')
+Name: courier-unicode%(echo 2.2.3 | tr -d '.')
 
 %define __brp_ldconfig %{nil}
 
 %else
 Name: courier-unicode
 %endif
-Version: 2.2.2
+Version: 2.2.3
 Release: 1%{?dist}%{?courier_release}
 License: GPLv3
 Group: System Environment/Libraries
 URL: http://www.courier-mta.org/unicode/
-Source: http://download.sourceforge.net/courier/courier-unicode-2.2.2.tar.bz2
+Source: http://download.sourceforge.net/courier/courier-unicode-2.2.3.tar.bz2
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
 BuildRequires: perl
 BuildRequires: gcc-c++
@@ -45,7 +45,7 @@
 %endif
 
 %prep
-%setup -q -n courier-unicode-2.2.2
+%setup -q -n courier-unicode-2.2.3
 %configure
 %build
 %{__make} -s %{?_smp_mflags}

Reply via email to