Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl-Data-Compare for openSUSE:Factory checked in at 2023-05-04 17:09:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Data-Compare (Old) and /work/SRC/openSUSE:Factory/.perl-Data-Compare.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Data-Compare" Thu May 4 17:09:12 2023 rev:11 rq:1084422 version:1.29 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Data-Compare/perl-Data-Compare.changes 2023-03-17 17:00:57.812643353 +0100 +++ /work/SRC/openSUSE:Factory/.perl-Data-Compare.new.1533/perl-Data-Compare.changes 2023-05-04 17:09:17.647915154 +0200 @@ -1,0 +2,10 @@ +Sat Apr 22 03:06:52 UTC 2023 - Tina Müller <timueller+p...@suse.de> + +- updated to 1.29 + see /usr/share/doc/packages/perl-Data-Compare/CHANGELOG + + 1.29 2023-04-21 + + - Skip taint-mode tests if perl was built without taint support + +------------------------------------------------------------------- Old: ---- Data-Compare-1.28.tar.gz New: ---- Data-Compare-1.29.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Data-Compare.spec ++++++ --- /var/tmp/diff_new_pack.PM4CeR/_old 2023-05-04 17:09:19.131923843 +0200 +++ /var/tmp/diff_new_pack.PM4CeR/_new 2023-05-04 17:09:19.135923866 +0200 @@ -18,7 +18,7 @@ %define cpan_name Data-Compare Name: perl-Data-Compare -Version: 1.28 +Version: 1.29 Release: 0 #Upstream: Artistic-1.0 or GPL-1.0-or-later License: Artistic-1.0 OR GPL-1.0-or-later @@ -85,7 +85,7 @@ %prep %autosetup -n %{cpan_name}-%{version} -find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644 +find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644 %build perl Makefile.PL INSTALLDIRS=vendor ++++++ Data-Compare-1.28.tar.gz -> Data-Compare-1.29.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Data-Compare-1.28/CHANGELOG new/Data-Compare-1.29/CHANGELOG --- old/Data-Compare-1.28/CHANGELOG 2023-03-14 01:40:24.000000000 +0100 +++ new/Data-Compare-1.29/CHANGELOG 2023-04-21 10:07:39.000000000 +0200 @@ -1,3 +1,7 @@ +1.29 2023-04-21 + +- Skip taint-mode tests if perl was built without taint support + 1.28 2023-03-14 - Bug fix: DCANTRELL: undef values in hashes were treated incorrectly, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Data-Compare-1.28/META.json new/Data-Compare-1.29/META.json --- old/Data-Compare-1.28/META.json 2023-03-15 00:35:19.000000000 +0100 +++ new/Data-Compare-1.29/META.json 2023-04-21 10:25:38.000000000 +0200 @@ -51,6 +51,6 @@ "url" : "https://github.com/DrHyde/perl-modules-Data-Compare" } }, - "version" : 1.28, + "version" : 1.29, "x_serialization_backend" : "JSON::PP version 4.02" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Data-Compare-1.28/META.yml new/Data-Compare-1.29/META.yml --- old/Data-Compare-1.28/META.yml 2023-03-15 00:35:19.000000000 +0100 +++ new/Data-Compare-1.29/META.yml 2023-04-21 10:25:38.000000000 +0200 @@ -26,5 +26,5 @@ resources: bugtracker: https://github.com/DrHyde/perl-modules-Data-Compare/issues repository: https://github.com/DrHyde/perl-modules-Data-Compare -version: 1.28 +version: 1.29 x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Data-Compare-1.28/lib/Data/Compare.pm new/Data-Compare-1.29/lib/Data/Compare.pm --- old/Data-Compare-1.28/lib/Data/Compare.pm 2023-03-14 01:40:41.000000000 +0100 +++ new/Data-Compare-1.29/lib/Data/Compare.pm 2023-04-21 10:07:45.000000000 +0200 @@ -16,7 +16,7 @@ @ISA = qw(Exporter); @EXPORT = qw(Compare); -$VERSION = 1.28; +$VERSION = 1.29; $DEBUG = $ENV{PERL_DATA_COMPARE_DEBUG} || 0; my %handler; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Data-Compare-1.28/t/taint.t new/Data-Compare-1.29/t/taint.t --- old/Data-Compare-1.28/t/taint.t 2014-11-21 22:00:53.000000000 +0100 +++ new/Data-Compare-1.29/t/taint.t 2023-04-21 10:06:44.000000000 +0200 @@ -6,6 +6,8 @@ # $^X isn't VMS-friendly. I'm disinclined to add a dependency on # Probe::Perl just for testing this corner-case print "1..0 # skip - can't reliably taint-test on VMS\n"; +} elsif($Config{taint_disabled}) { + print "1..0 # skip - your perl was built without taint support\n"; # } elsif($ENV{PERL5LIB}) { # print "1..0 # skip - can't reliably taint-test with PERL5LIB set\n"; # } else {