Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package perl-Log-Log4perl for 
openSUSE:Factory checked in at 2022-11-09 12:55:59
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Log-Log4perl (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Log-Log4perl.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Log-Log4perl"

Wed Nov  9 12:55:59 2022 rev:38 rq:1034337 version:1.57

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Log-Log4perl/perl-Log-Log4perl.changes      
2022-09-10 20:16:45.692747237 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Log-Log4perl.new.1597/perl-Log-Log4perl.changes
    2022-11-09 12:56:04.691888825 +0100
@@ -1,0 +2,9 @@
+Sat Oct 22 03:06:29 UTC 2022 - Tina M??ller <[email protected]>
+
+- updated to 1.57
+   see /usr/share/doc/packages/perl-Log-Log4perl/Changes
+
+  1.57 2022-10-21
+  - fix tests so work on Perl 5.37.3 - thanks @tonycoz
+
+-------------------------------------------------------------------

Old:
----
  Log-Log4perl-1.56.tar.gz

New:
----
  Log-Log4perl-1.57.tar.gz

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

Other differences:
------------------
++++++ perl-Log-Log4perl.spec ++++++
--- /var/tmp/diff_new_pack.Rr3jwK/_old  2022-11-09 12:56:05.187891621 +0100
+++ /var/tmp/diff_new_pack.Rr3jwK/_new  2022-11-09 12:56:05.191891643 +0100
@@ -18,7 +18,7 @@
 
 %define cpan_name Log-Log4perl
 Name:           perl-Log-Log4perl
-Version:        1.56
+Version:        1.57
 Release:        0
 License:        Artistic-1.0 OR GPL-1.0-or-later
 Summary:        Log4j implementation for Perl

++++++ Log-Log4perl-1.56.tar.gz -> Log-Log4perl-1.57.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Log4perl-1.56/Changes 
new/Log-Log4perl-1.57/Changes
--- old/Log-Log4perl-1.56/Changes       2022-09-02 19:48:09.000000000 +0200
+++ new/Log-Log4perl-1.57/Changes       2022-10-21 18:45:18.000000000 +0200
@@ -1,3 +1,6 @@
+1.57 2022-10-21
+- fix tests so work on Perl 5.37.3 - thanks @tonycoz
+
 1.56 2022-09-02
 - fix repo metadata - thanks @mschilli for report
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Log4perl-1.56/META.json 
new/Log-Log4perl-1.57/META.json
--- old/Log-Log4perl-1.56/META.json     2022-09-02 19:48:53.000000000 +0200
+++ new/Log-Log4perl-1.57/META.json     2022-10-21 18:46:40.000000000 +0200
@@ -63,6 +63,6 @@
       },
       "x_MailingList" : "mailto:[email protected]";
    },
-   "version" : "1.56",
+   "version" : "1.57",
    "x_serialization_backend" : "JSON::PP version 4.04"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Log4perl-1.56/META.yml 
new/Log-Log4perl-1.57/META.yml
--- old/Log-Log4perl-1.56/META.yml      2022-09-02 19:48:53.000000000 +0200
+++ new/Log-Log4perl-1.57/META.yml      2022-10-21 18:46:40.000000000 +0200
@@ -34,5 +34,5 @@
   MailingList: mailto:[email protected]
   bugtracker: https://github.com/mschilli/log4perl/issues
   repository: https://github.com/mschilli/log4perl
-version: '1.56'
+version: '1.57'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Log4perl-1.56/lib/Log/Log4perl.pm 
new/Log-Log4perl-1.57/lib/Log/Log4perl.pm
--- old/Log-Log4perl-1.56/lib/Log/Log4perl.pm   2022-09-02 19:47:53.000000000 
+0200
+++ new/Log-Log4perl-1.57/lib/Log/Log4perl.pm   2022-10-21 18:43:59.000000000 
+0200
@@ -16,7 +16,7 @@
 use Log::Log4perl::Config;
 use Log::Log4perl::Appender;
 
-our $VERSION = '1.56';
+our $VERSION = '1.57';
 
    # set this to '1' if you're using a wrapper
    # around Log::Log4perl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Log4perl-1.56/t/020Easy.t 
new/Log-Log4perl-1.57/t/020Easy.t
--- old/Log-Log4perl-1.56/t/020Easy.t   2022-06-02 01:03:22.000000000 +0200
+++ new/Log-Log4perl-1.57/t/020Easy.t   2022-10-21 18:43:32.000000000 +0200
@@ -43,7 +43,7 @@
 open STDERR, ">$TMP_FILE";
 select STDERR; $| = 1; #needed on win32
 open IN, "<$TMP_FILE" or die "Cannot open $TMP_FILE";
-sub readstderr { return join("", <IN>); }
+sub readstderr { IN->clearerr(); return join("", <IN>); }
 
 ############################################################
 # Typical easy setup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Log-Log4perl-1.56/t/051Extra.t 
new/Log-Log4perl-1.57/t/051Extra.t
--- old/Log-Log4perl-1.56/t/051Extra.t  2022-06-02 01:03:22.000000000 +0200
+++ new/Log-Log4perl-1.57/t/051Extra.t  2022-10-21 18:43:32.000000000 +0200
@@ -48,7 +48,7 @@
 open STDERR, ">$TMP_FILE";
 select STDERR; $| = 1; #needed on win32
 open IN, "<$TMP_FILE" or die "Cannot open $TMP_FILE"; binmode IN, ":utf8";
-sub readstderr { return join("", <IN>); }
+sub readstderr { IN->clearerr(); return join("", <IN>); }
 
 END   { unlink $TMP_FILE;
         close IN;

Reply via email to