Hello community,
here is the log from the commit of package perl-common-sense for
openSUSE:Factory checked in at 2020-04-07 10:32:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-common-sense (Old)
and /work/SRC/openSUSE:Factory/.perl-common-sense.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-common-sense"
Tue Apr 7 10:32:02 2020 rev:23 rq:791865 version:3.75
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-common-sense/perl-common-sense.changes
2015-07-05 18:02:38.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-common-sense.new.3248/perl-common-sense.changes
2020-04-07 10:32:49.866616605 +0200
@@ -1,0 +2,15 @@
+Fri Apr 3 03:10:19 UTC 2020 - <[email protected]>
+
+- updated to 3.75
+ see /usr/share/doc/packages/perl-common-sense/Changes
+
+ 3.75 Thu Apr 2 09:53:01 CEST 2020
+ - make build (more) reproducible.
+ - removed "portable" from the warnngs list, as 32 bit perls (as
+ opposed to 32 bit platforms) are practically extinct and it
+ warns about a weird subset of operations, i.e. 64 bit hex() is
+ not ok, 64 bit addition is fine, makes no sense. Moreso, other
+ than hex/oct etc. harassment, there is nothing in this category
+ that could be otherwise useful.
+
+-------------------------------------------------------------------
Old:
----
common-sense-3.74.tar.gz
New:
----
common-sense-3.75.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-common-sense.spec ++++++
--- /var/tmp/diff_new_pack.cArJfP/_old 2020-04-07 10:32:50.314617189 +0200
+++ /var/tmp/diff_new_pack.cArJfP/_new 2020-04-07 10:32:50.318617195 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-common-sense
#
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,20 +12,20 @@
# 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/
#
Name: perl-common-sense
-Version: 3.74
+Version: 3.75
Release: 0
-#Upstream: CHECK(GPL-1.0+ or Artistic-1.0)
+#Upstream: CHECK(Artistic-1.0 or GPL-1.0-or-later)
%define cpan_name common-sense
-Summary: Save a Tree and a Kitten, Use Common::Sense!
-License: GPL-1.0+ or Artistic-1.0
+Summary: Save a tree AND a kitten, use common::sense!
+License: GPL-1.0-or-later OR Artistic-1.0
Group: Development/Libraries/Perl
-Url: http://search.cpan.org/dist/common-sense/
-Source0:
http://www.cpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{version}.tar.gz
+Url: https://metacpan.org/release/%{cpan_name}
+Source0:
https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
# MANUAL
#BuildArch: noarch
@@ -58,16 +58,16 @@
* _uninitialised_
- 'undef' is a well-defined feature of perl, and enabling warnings for
- using it rarely catches any bugs, but considerably limits you in what you
- can do, so uninitialised warnings are disabled.
+'undef' is a well-defined feature of perl, and enabling warnings for using
+it rarely catches any bugs, but considerably limits you in what you can do,
+so uninitialised warnings are disabled.
* _malloc_
- Freeing something twice on the C level is a serious bug, usually causing
- memory corruption. It often leads to side effects much later in the
- program and there are no advantages to not reporting this, so malloc
- warnings are fatal by default.
+Freeing something twice on the C level is a serious bug, usually causing
+memory corruption. It often leads to side effects much later in the program
+and there are no advantages to not reporting this, so malloc warnings are
+fatal by default.
Unfortunately, there is no fine-grained warning control in perl, so often
whole groups of useful warnings had to be excluded because of a single
@@ -81,14 +81,14 @@
%prep
%setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path
"*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
-%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
-%{__make} %{?_smp_mflags}
+perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
+make %{?_smp_mflags}
%check
-%{__make} test
+make test
%install
%perl_make_install
@@ -97,6 +97,7 @@
%files -f %{name}.files
%defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
%changelog
++++++ common-sense-3.74.tar.gz -> common-sense-3.75.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/common-sense-3.74/Changes
new/common-sense-3.75/Changes
--- old/common-sense-3.74/Changes 2015-06-29 14:39:31.000000000 +0200
+++ new/common-sense-3.75/Changes 2020-04-02 09:53:06.000000000 +0200
@@ -1,5 +1,14 @@
Revision history for perl pragma common::sense.
+3.75 Thu Apr 2 09:53:01 CEST 2020
+ - make build (more) reproducible.
+ - removed "portable" from the warnngs list, as 32 bit perls (as
+ opposed to 32 bit platforms) are practically extinct and it
+ warns about a weird subset of operations, i.e. 64 bit hex() is
+ not ok, 64 bit addition is fine, makes no sense. Moreso, other
+ than hex/oct etc. harassment, there is nothing in this category
+ that could be otherwise useful.
+
3.74 Mon Jun 29 14:39:26 CEST 2015
- the generated README file was empty.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/common-sense-3.74/META.json
new/common-sense-3.75/META.json
--- old/common-sense-3.74/META.json 2015-06-29 14:40:14.000000000 +0200
+++ new/common-sense-3.75/META.json 2020-04-02 09:53:33.000000000 +0200
@@ -4,7 +4,7 @@
"unknown"
],
"dynamic_config" : 1,
- "generated_by" : "ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter
version 2.150001",
+ "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter
version 2.150001",
"license" : [
"unknown"
],
@@ -29,11 +29,8 @@
"requires" : {
"ExtUtils::MakeMaker" : "0"
}
- },
- "runtime" : {
- "requires" : {}
}
},
"release_status" : "stable",
- "version" : 3.74
+ "version" : 3.75
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/common-sense-3.74/META.yml
new/common-sense-3.75/META.yml
--- old/common-sense-3.74/META.yml 2015-06-29 14:40:14.000000000 +0200
+++ new/common-sense-3.75/META.yml 2020-04-02 09:53:33.000000000 +0200
@@ -7,7 +7,7 @@
configure_requires:
ExtUtils::MakeMaker: '0'
dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.0401, CPAN::Meta::Converter
version 2.150001'
+generated_by: 'ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version
2.150001'
license: unknown
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -17,5 +17,4 @@
directory:
- t
- inc
-requires: {}
-version: 3.74
+version: 3.75
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/common-sense-3.74/README new/common-sense-3.75/README
--- old/common-sense-3.74/README 2015-06-29 14:40:14.000000000 +0200
+++ new/common-sense-3.75/README 2020-04-02 09:53:33.000000000 +0200
@@ -13,9 +13,8 @@
# no feature qw(array_base);
# no warnings;
# use warnings qw(FATAL closed threads internal debugging pack
- # portable prototype inplace io pipe unpack malloc
- # glob digit printf layer reserved taint closure
- # semicolon);
+ # prototype inplace io pipe unpack malloc glob
+ # digit printf layer reserved taint closure semicolon);
# no warnings qw(exec newline unopened);
DESCRIPTION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/common-sense-3.74/sense.pm.PL
new/common-sense-3.75/sense.pm.PL
--- old/common-sense-3.74/sense.pm.PL 2015-06-29 14:39:42.000000000 +0200
+++ new/common-sense-3.75/sense.pm.PL 2020-04-02 09:53:17.000000000 +0200
@@ -1,6 +1,6 @@
#! perl-000
-our $VERSION = 3.74;
+our $VERSION = 3.75;
open STDOUT, ">$ARGV[0]~"
or die "$ARGV[0]~: $!";
@@ -26,7 +26,7 @@
}
no warnings;
-use warnings qw(FATAL closed threads internal debugging pack malloc portable
prototype
+use warnings qw(FATAL closed threads internal debugging pack malloc prototype
inplace io pipe unpack glob digit printf
layer reserved taint closure semicolon);
no warnings qw(exec newline unopened);
@@ -45,7 +45,7 @@
print " # use strict, use utf8; use feature;\n";
printf " \$^H |= 0x%x;\n", $H;
- if (my @features = grep /^feature_/, keys %H) {
+ if (my @features = grep /^feature_/, sort keys %H) {
print " \@^H{qw(@features)} = (1) x ", (scalar @features), ";\n";
}
} elsif (/^VERSION/) {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/common-sense-3.74/sense.pod
new/common-sense-3.75/sense.pod
--- old/common-sense-3.74/sense.pod 2014-05-31 22:38:25.000000000 +0200
+++ new/common-sense-3.75/sense.pod 2020-04-02 09:50:45.000000000 +0200
@@ -15,9 +15,8 @@
# no feature qw(array_base);
# no warnings;
# use warnings qw(FATAL closed threads internal debugging pack
- # portable prototype inplace io pipe unpack malloc
- # glob digit printf layer reserved taint closure
- # semicolon);
+ # prototype inplace io pipe unpack malloc glob
+ # digit printf layer reserved taint closure semicolon);
# no warnings qw(exec newline unopened);
=head1 DESCRIPTION