Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package perl-Statistics-CaseResampling for 
openSUSE:Factory checked in at 2025-05-26 18:36:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Statistics-CaseResampling (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Statistics-CaseResampling.new.2732 
(New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Statistics-CaseResampling"

Mon May 26 18:36:02 2025 rev:2 rq:1279830 version:0.160.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-Statistics-CaseResampling/perl-Statistics-CaseResampling.changes
    2018-09-24 13:11:25.109901464 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Statistics-CaseResampling.new.2732/perl-Statistics-CaseResampling.changes
  2025-05-26 18:37:46.961084891 +0200
@@ -1,0 +2,10 @@
+Tue May 20 05:36:17 UTC 2025 - Tina Müller <timueller+p...@suse.de>
+
+- updated to 0.160.0 (0.16)
+   see /usr/share/doc/packages/perl-Statistics-CaseResampling/Changes
+
+  0.16  Mon May 19 12:37:00 2025
+    - Fix XS bug that made the build break under modern (stricter)
+      ExtUtils::ParseXS. (Thanks Dave!)
+
+-------------------------------------------------------------------

Old:
----
  Statistics-CaseResampling-0.15.tar.gz

New:
----
  Statistics-CaseResampling-0.16.tar.gz

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

Other differences:
------------------
++++++ perl-Statistics-CaseResampling.spec ++++++
--- /var/tmp/diff_new_pack.WIUBCU/_old  2025-05-26 18:37:47.553109744 +0200
+++ /var/tmp/diff_new_pack.WIUBCU/_new  2025-05-26 18:37:47.557109912 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Statistics-CaseResampling
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2025 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,22 +12,24 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
+%define cpan_name Statistics-CaseResampling
 Name:           perl-Statistics-CaseResampling
-Version:        0.15
+Version:        0.160.0
 Release:        0
-%define cpan_name Statistics-CaseResampling
+# 0.16 -> normalize -> 0.160.0
+%define cpan_version 0.16
+License:        Artistic-1.0 OR GPL-1.0-or-later
 Summary:        Efficient resampling and calculation of medians with 
confidence intervals
-License:        GPL-1.0-or-later OR Artistic-1.0
-Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/Statistics-CaseResampling/
-Source0:        
https://cpan.metacpan.org/authors/id/S/SM/SMUELLER/%{cpan_name}-%{version}.tar.gz
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
+URL:            https://metacpan.org/release/%{cpan_name}
+Source0:        
https://cpan.metacpan.org/authors/id/S/SM/SMUELLER/%{cpan_name}-%{cpan_version}.tar.gz
 BuildRequires:  perl
 BuildRequires:  perl-macros
+Provides:       perl(Statistics::CaseResampling) = %{version}
+%undefine       __perllib_provides
 %{perl_requires}
 
 %description
@@ -45,14 +47,14 @@
 implementation that requires 'O(n*log(n))'.
 
 %prep
-%setup -q -n %{cpan_name}-%{version}
+%autosetup  -n %{cpan_name}-%{cpan_version} -p1
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+%make_build
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -60,6 +62,5 @@
 %perl_gen_filelist
 
 %files -f %{name}.files
-%defattr(-,root,root,755)
 %doc Changes RdGen.xs.inc README
 

++++++ Statistics-CaseResampling-0.15.tar.gz -> 
Statistics-CaseResampling-0.16.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Statistics-CaseResampling-0.15/CaseResampling.xs 
new/Statistics-CaseResampling-0.16/CaseResampling.xs
--- old/Statistics-CaseResampling-0.15/CaseResampling.xs        2013-05-13 
21:47:37.000000000 +0200
+++ new/Statistics-CaseResampling-0.16/CaseResampling.xs        2025-05-19 
13:34:43.000000000 +0200
@@ -322,7 +322,7 @@
 
 
 void
-median_simple_confidence_limits(sample, confidence...)
+median_simple_confidence_limits(sample, confidence, ...)
     AV* sample
     double confidence
   PREINIT:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Statistics-CaseResampling-0.15/Changes 
new/Statistics-CaseResampling-0.16/Changes
--- old/Statistics-CaseResampling-0.15/Changes  2013-05-14 18:41:42.000000000 
+0200
+++ new/Statistics-CaseResampling-0.16/Changes  2025-05-19 13:38:25.000000000 
+0200
@@ -1,5 +1,9 @@
 Revision history for Perl extension Statistics::CaseResampling.
 
+0.16  Mon May 19 12:37:00 2025
+  - Fix XS bug that made the build break under modern (stricter)
+    ExtUtils::ParseXS. (Thanks Dave!)
+
 0.15  Tue May 14 18:38:00 2013
   - Do not override compiler optimization level in Makefile.PL (P Pisar)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Statistics-CaseResampling-0.15/MANIFEST 
new/Statistics-CaseResampling-0.16/MANIFEST
--- old/Statistics-CaseResampling-0.15/MANIFEST 2013-05-14 18:42:05.000000000 
+0200
+++ new/Statistics-CaseResampling-0.16/MANIFEST 2025-05-19 13:39:33.000000000 
+0200
@@ -15,4 +15,5 @@
 t/01all.t
 t/02stats.t
 typemap
-META.yml                                 Module meta-data (added by MakeMaker)
+META.yml                                 Module YAML meta-data (added by 
MakeMaker)
+META.json                                Module JSON meta-data (added by 
MakeMaker)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Statistics-CaseResampling-0.15/META.json 
new/Statistics-CaseResampling-0.16/META.json
--- old/Statistics-CaseResampling-0.15/META.json        1970-01-01 
01:00:00.000000000 +0100
+++ new/Statistics-CaseResampling-0.16/META.json        2025-05-19 
13:39:33.000000000 +0200
@@ -0,0 +1,42 @@
+{
+   "abstract" : "Efficient resampling and calculation of medians with 
confidence intervals",
+   "author" : [
+      "Steffen Mueller <smuel...@cpan.org>"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter 
version 2.150010",
+   "license" : [
+      "unknown"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
+      "version" : 2
+   },
+   "name" : "Statistics-CaseResampling",
+   "no_index" : {
+      "directory" : [
+         "t",
+         "inc"
+      ]
+   },
+   "prereqs" : {
+      "build" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "configure" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "List::Util" : "0"
+         }
+      }
+   },
+   "release_status" : "stable",
+   "version" : "0.16",
+   "x_serialization_backend" : "JSON::PP version 4.16"
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Statistics-CaseResampling-0.15/META.yml 
new/Statistics-CaseResampling-0.16/META.yml
--- old/Statistics-CaseResampling-0.15/META.yml 2013-05-14 18:42:05.000000000 
+0200
+++ new/Statistics-CaseResampling-0.16/META.yml 2025-05-19 13:39:33.000000000 
+0200
@@ -1,22 +1,23 @@
---- #YAML:1.0
-name:               Statistics-CaseResampling
-version:            0.15
-abstract:           Efficient resampling and calculation of medians with 
confidence intervals
+---
+abstract: 'Efficient resampling and calculation of medians with confidence 
intervals'
 author:
-    - Steffen Mueller <smuel...@cpan.org>
-license:            unknown
-distribution_type:  module
-configure_requires:
-    ExtUtils::MakeMaker:  0
+  - 'Steffen Mueller <smuel...@cpan.org>'
 build_requires:
-    ExtUtils::MakeMaker:  0
-requires:
-    List::Util:  0
-no_index:
-    directory:
-        - t
-        - inc
-generated_by:       ExtUtils::MakeMaker version 6.57_05
+  ExtUtils::MakeMaker: '0'
+configure_requires:
+  ExtUtils::MakeMaker: '0'
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter version 
2.150010'
+license: unknown
 meta-spec:
-    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
-    version:  1.4
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: '1.4'
+name: Statistics-CaseResampling
+no_index:
+  directory:
+    - t
+    - inc
+requires:
+  List::Util: '0'
+version: '0.16'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Statistics-CaseResampling-0.15/MYMETA.json 
new/Statistics-CaseResampling-0.16/MYMETA.json
--- old/Statistics-CaseResampling-0.15/MYMETA.json      2013-04-12 
07:28:24.000000000 +0200
+++ new/Statistics-CaseResampling-0.16/MYMETA.json      2025-05-19 
13:39:28.000000000 +0200
@@ -4,13 +4,13 @@
       "Steffen Mueller <smuel...@cpan.org>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter 
version 2.120921",
+   "generated_by" : "ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter 
version 2.150010",
    "license" : [
       "unknown"
    ],
    "meta-spec" : {
       "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec";,
-      "version" : "2"
+      "version" : 2
    },
    "name" : "Statistics-CaseResampling",
    "no_index" : {
@@ -37,5 +37,6 @@
       }
    },
    "release_status" : "stable",
-   "version" : "0.13"
+   "version" : "0.16",
+   "x_serialization_backend" : "JSON::PP version 4.16"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Statistics-CaseResampling-0.15/MYMETA.yml 
new/Statistics-CaseResampling-0.16/MYMETA.yml
--- old/Statistics-CaseResampling-0.15/MYMETA.yml       2013-05-14 
18:41:59.000000000 +0200
+++ new/Statistics-CaseResampling-0.16/MYMETA.yml       2025-05-19 
13:39:28.000000000 +0200
@@ -3,21 +3,21 @@
 author:
   - 'Steffen Mueller <smuel...@cpan.org>'
 build_requires:
-  ExtUtils::MakeMaker: 0
+  ExtUtils::MakeMaker: '0'
 configure_requires:
-  ExtUtils::MakeMaker: 0
-distribution_type: module
+  ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 6.57_05'
+generated_by: 'ExtUtils::MakeMaker version 7.70, CPAN::Meta::Converter version 
2.150010'
 license: unknown
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
-  version: 1.4
+  version: '1.4'
 name: Statistics-CaseResampling
 no_index:
   directory:
     - t
     - inc
 requires:
-  List::Util: 0
-version: 0.15
+  List::Util: '0'
+version: '0.16'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/Statistics-CaseResampling-0.15/lib/Statistics/CaseResampling.pm 
new/Statistics-CaseResampling-0.16/lib/Statistics/CaseResampling.pm
--- old/Statistics-CaseResampling-0.15/lib/Statistics/CaseResampling.pm 
2013-05-14 18:41:47.000000000 +0200
+++ new/Statistics-CaseResampling-0.16/lib/Statistics/CaseResampling.pm 
2025-05-19 13:38:49.000000000 +0200
@@ -5,7 +5,7 @@
 
 require Exporter;
 
-our $VERSION = '0.15';
+our $VERSION = '0.16';
 
 our @ISA = qw(Exporter);
 our @EXPORT_OK = qw(
@@ -315,7 +315,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2010, 2011, 2012, 2013 by Steffen Mueller
+Copyright (C) 2010, 2011, 2012, 2013, 2025 by Steffen Mueller
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.8.0 or,

Reply via email to