Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package perl-JSON-Any for openSUSE:Factory 
checked in at 2023-09-13 20:44:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-JSON-Any (Old)
 and      /work/SRC/openSUSE:Factory/.perl-JSON-Any.new.1766 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-JSON-Any"

Wed Sep 13 20:44:22 2023 rev:13 rq:1110671 version:1.400.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-JSON-Any/perl-JSON-Any.changes      
2015-06-15 17:50:26.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-JSON-Any.new.1766/perl-JSON-Any.changes    
2023-09-13 20:45:13.591493686 +0200
@@ -1,0 +2,10 @@
+Sun Sep 10 03:06:47 UTC 2023 - Tina Müller <timueller+p...@suse.de>
+
+- updated to 1.40
+   see /usr/share/doc/packages/perl-JSON-Any/Changes
+
+  1.40      2023-09-09 21:59:01Z
+      - fix issues on perl 5.39.1 with 'import' subs
+      - added support for JSON v3, v4, JSON::XS v4
+
+-------------------------------------------------------------------

Old:
----
  JSON-Any-1.39.tar.gz

New:
----
  JSON-Any-1.40.tar.gz

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

Other differences:
------------------
++++++ perl-JSON-Any.spec ++++++
--- /var/tmp/diff_new_pack.INbn41/_old  2023-09-13 20:45:15.459560098 +0200
+++ /var/tmp/diff_new_pack.INbn41/_new  2023-09-13 20:45:15.471560524 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-JSON-Any
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,28 +12,32 @@
 # 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 JSON-Any
 Name:           perl-JSON-Any
-Version:        1.39
+Version:        1.400.0
 Release:        0
-%define cpan_name JSON-Any
+%define cpan_version 1.40
+License:        Artistic-1.0 OR GPL-1.0-or-later
 Summary:        (DEPRECATED) Wrapper Class for the various JSON classes
-License:        Artistic-1.0 or GPL-1.0+
-Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/JSON-Any/
-Source0:        
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+URL:            https://metacpan.org/release/%{cpan_name}
+Source0:        
https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{cpan_version}.tar.gz
 Source1:        cpanspec.yml
 BuildArch:      noarch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(CPAN::Meta::Requirements) >= 2.120620
+BuildRequires:  perl(Module::Metadata)
 BuildRequires:  perl(Test::Fatal)
-BuildRequires:  perl(Test::Requires)
+BuildRequires:  perl(Test::More) >= 0.88
+BuildRequires:  perl(Test::Needs)
 BuildRequires:  perl(Test::Warnings) >= 0.009
 BuildRequires:  perl(Test::Without::Module)
+Provides:       perl(JSON::Any) = 1.400.0
+%define         __perllib_provides /bin/true
 %{perl_requires}
 
 %description
@@ -89,16 +93,16 @@
 
     use JSON::Any qw(CPANEL PP); # same as JSON::MaybeXS
 
-This will check in that order, and will never attempt to load the JSON::XS
-manpage, the JSON.pm/JSON manpage, or the JSON::DWIW manpage. This can also
-be set via the '$ENV{JSON_ANY_ORDER}' environment variable.
-
-the JSON::Syck manpage has been deprecated by its author, but in the
-attempt to still stay relevant as a "Compatibility Layer" JSON::Any still
-supports it. This support however has been made optional starting with
-JSON::Any 1.19. In deference to a bug request starting with JSON 1.20, the
-JSON::Syck manpage and other deprecated modules will still be installed,
-but only as a last resort and will now include a warning.
+This will check in that order, and will never attempt to load JSON::XS,
+JSON.pm/JSON, or JSON::DWIW. This can also be set via the
+'$ENV{JSON_ANY_ORDER}' environment variable.
+
+JSON::Syck has been deprecated by its author, but in the attempt to still
+stay relevant as a "Compatibility Layer" JSON::Any still supports it. This
+support however has been made optional starting with JSON::Any 1.19. In
+deference to a bug request starting with JSON.pm 1.20, JSON::Syck and other
+deprecated modules will still be installed, but only as a last resort and
+will now include a warning.
 
     use JSON::Any qw(Syck XS JSON);
 
@@ -106,9 +110,8 @@
 
     $ENV{JSON_ANY_ORDER} = 'Syck XS JSON';
 
-At install time, JSON::Any will attempt to install the JSON::PP manpage as
-a reasonable fallback if you do not appear have *any* backends installed on
-your system.
+At install time, JSON::Any will attempt to install JSON::PP as a reasonable
+fallback if you do not appear have *any* backends installed on your system.
 
 WARNING: If you call JSON::Any with an empty list
 
@@ -118,14 +121,14 @@
 it couldn't find a package.
 
 %prep
-%setup -q -n %{cpan_name}-%{version}
+%autosetup  -n %{cpan_name}-%{cpan_version}
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor
+%make_build
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -133,6 +136,6 @@
 %perl_gen_filelist
 
 %files -f %{name}.files
-%defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README
+%doc Changes CONTRIBUTING README
+%license LICENCE
 

++++++ JSON-Any-1.39.tar.gz -> JSON-Any-1.40.tar.gz ++++++
++++ 5026 lines of diff (skipped)

Reply via email to