Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libxcrypt for openSUSE:Factory 
checked in at 2023-07-27 16:50:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libxcrypt (Old)
 and      /work/SRC/openSUSE:Factory/.libxcrypt.new.32662 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libxcrypt"

Thu Jul 27 16:50:32 2023 rev:21 rq:1099083 version:4.4.36

Changes:
--------
--- /work/SRC/openSUSE:Factory/libxcrypt/libxcrypt.changes      2023-07-06 
18:28:41.427152216 +0200
+++ /work/SRC/openSUSE:Factory/.libxcrypt.new.32662/libxcrypt.changes   
2023-07-27 16:50:56.765860912 +0200
@@ -1,0 +2,6 @@
+Mon Jul 17 10:51:58 UTC 2023 - Andreas Schwab <[email protected]>
+
+- Update to 4.4.36
+  * Fix left over bits failing with Perl v5.38.0
+
+-------------------------------------------------------------------

Old:
----
  libxcrypt-4.4.35.tar.xz
  libxcrypt-4.4.35.tar.xz.asc

New:
----
  libxcrypt-4.4.36.tar.xz
  libxcrypt-4.4.36.tar.xz.asc

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

Other differences:
------------------
++++++ libxcrypt.spec ++++++
--- /var/tmp/diff_new_pack.SnQBdD/_old  2023-07-27 16:50:57.625865772 +0200
+++ /var/tmp/diff_new_pack.SnQBdD/_new  2023-07-27 16:50:57.633865816 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           libxcrypt
-Version:        4.4.35
+Version:        4.4.36
 Release:        0
 Summary:        Extended crypt library for DES, MD5, Blowfish and others
 License:        BSD-2-Clause AND GPL-3.0-or-later AND LGPL-2.1-or-later AND 
BSD-3-Clause AND SUSE-Public-Domain

++++++ libxcrypt-4.4.35.tar.xz -> libxcrypt-4.4.36.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libxcrypt-4.4.35/NEWS new/libxcrypt-4.4.36/NEWS
--- old/libxcrypt-4.4.35/NEWS   2023-06-06 19:17:08.000000000 +0200
+++ new/libxcrypt-4.4.36/NEWS   2023-07-05 19:57:48.000000000 +0200
@@ -3,6 +3,9 @@
 Please send bug reports, questions and suggestions to
 <https://github.com/besser82/libxcrypt/issues>.
 
+Version 4.4.36
+* Fix left over bits failing with Perl v5.38.0 (issue #173).
+
 Version 4.4.35
 * Fix build with Perl v5.38.0 (issue #170).
 * Fix build with MinGW-w(32|64).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libxcrypt-4.4.35/build-aux/scripts/gen-crypt-h 
new/libxcrypt-4.4.36/build-aux/scripts/gen-crypt-h
--- old/libxcrypt-4.4.35/build-aux/scripts/gen-crypt-h  2022-11-01 
12:46:26.000000000 +0100
+++ new/libxcrypt-4.4.36/build-aux/scripts/gen-crypt-h  2023-07-05 
19:57:48.000000000 +0200
@@ -12,7 +12,6 @@
 use warnings FATAL => 'all';
 use utf8;
 use open qw(:std :utf8);
-no  if $] >= 5.018, warnings => 'experimental::smartmatch';
 no  if $] >= 5.022, warnings => 'experimental::re_strict';
 use if $] >= 5.022, re       => 'strict';
 
@@ -37,22 +36,20 @@
     local $_;
     while (<$fh>) {
         chomp;
-        # Yes, 'given $_' is really required here.
-        given ($_) {
-            when ('#define HAVE_SYS_CDEFS_H 1') {
-                $have_sys_cdefs_h = 1;
-            }
-            when ('#define HAVE_SYS_CDEFS_BEGIN_END_DECLS 1') {
-                $have_sys_cdefs_begin_end_decls = 1;
-            }
-            when ('#define HAVE_SYS_CDEFS_THROW 1') {
-                $have_sys_cdefs_throw = 1;
-            }
-            when (/^#define PACKAGE_VERSION "((\d+)\.(\d+)\.\d+)"$/) {
-                $substs{XCRYPT_VERSION_STR}   = $1;
-                $substs{XCRYPT_VERSION_MAJOR} = $2;
-                $substs{XCRYPT_VERSION_MINOR} = $3;
-            }
+
+        if ($_ eq '#define HAVE_SYS_CDEFS_H 1') {
+            $have_sys_cdefs_h = 1;
+        }
+        elsif ($_ eq '#define HAVE_SYS_CDEFS_BEGIN_END_DECLS 1') {
+            $have_sys_cdefs_begin_end_decls = 1;
+        }
+        elsif ($_ eq '#define HAVE_SYS_CDEFS_THROW 1') {
+            $have_sys_cdefs_throw = 1;
+        }
+        elsif (/^#define PACKAGE_VERSION "((\d+)\.(\d+)\.\d+)"$/) {
+            $substs{XCRYPT_VERSION_STR}   = $1;
+            $substs{XCRYPT_VERSION_MAJOR} = $2;
+            $substs{XCRYPT_VERSION_MINOR} = $3;
         }
     }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libxcrypt-4.4.35/configure 
new/libxcrypt-4.4.36/configure
--- old/libxcrypt-4.4.35/configure      2023-06-06 19:17:49.000000000 +0200
+++ new/libxcrypt-4.4.36/configure      2023-07-05 19:58:23.000000000 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.71 for xcrypt 4.4.35.
+# Generated by GNU Autoconf 2.71 for xcrypt 4.4.36.
 #
 # Report bugs to <https://github.com/besser82/libxcrypt/issues>.
 #
@@ -621,8 +621,8 @@
 # Identity of this package.
 PACKAGE_NAME='xcrypt'
 PACKAGE_TARNAME='libxcrypt'
-PACKAGE_VERSION='4.4.35'
-PACKAGE_STRING='xcrypt 4.4.35'
+PACKAGE_VERSION='4.4.36'
+PACKAGE_STRING='xcrypt 4.4.36'
 PACKAGE_BUGREPORT='https://github.com/besser82/libxcrypt/issues'
 PACKAGE_URL='https://github.com/besser82/libxcrypt'
 
@@ -1427,7 +1427,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 xcrypt 4.4.35 to adapt to many kinds of systems.
+\`configure' configures xcrypt 4.4.36 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1498,7 +1498,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of xcrypt 4.4.35:";;
+     short | recursive ) echo "Configuration of xcrypt 4.4.36:";;
    esac
   cat <<\_ACEOF
 
@@ -1678,7 +1678,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-xcrypt configure 4.4.35
+xcrypt configure 4.4.36
 generated by GNU Autoconf 2.71
 
 Copyright (C) 2021 Free Software Foundation, Inc.
@@ -1973,7 +1973,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by xcrypt $as_me 4.4.35, which was
+It was created by xcrypt $as_me 4.4.36, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   $ $0$ac_configure_args_raw
@@ -3269,7 +3269,7 @@
 
 # Define the identity of the package.
  PACKAGE='libxcrypt'
- VERSION='4.4.35'
+ VERSION='4.4.36'
 
 
 printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -17039,7 +17039,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by xcrypt $as_me 4.4.35, which was
+This file was extended by xcrypt $as_me 4.4.36, which was
 generated by GNU Autoconf 2.71.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -17108,7 +17108,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config='$ac_cs_config_escaped'
 ac_cs_version="\\
-xcrypt config.status 4.4.35
+xcrypt config.status 4.4.36
 configured by $0, generated by GNU Autoconf 2.71,
   with options \\"\$ac_cs_config\\"
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libxcrypt-4.4.35/configure.ac 
new/libxcrypt-4.4.36/configure.ac
--- old/libxcrypt-4.4.35/configure.ac   2023-05-31 17:03:53.000000000 +0200
+++ new/libxcrypt-4.4.36/configure.ac   2023-07-05 19:57:48.000000000 +0200
@@ -1,7 +1,7 @@
 # Process this file with autoconf to produce a configure script.
 m4_include([build-aux/m4/zw_automodern.m4])
 AC_INIT([xcrypt],
-        [4.4.35],
+        [4.4.36],
         [https://github.com/besser82/libxcrypt/issues],
         [libxcrypt],
         [https://github.com/besser82/libxcrypt])

Reply via email to