Hello community,
here is the log from the commit of package perl-String-Format for
openSUSE:Factory checked in at 2018-03-14 19:39:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-String-Format (Old)
and /work/SRC/openSUSE:Factory/.perl-String-Format.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-String-Format"
Wed Mar 14 19:39:45 2018 rev:14 rq:586331 version:1.18
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-String-Format/perl-String-Format.changes
2013-06-07 07:06:27.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.perl-String-Format.new/perl-String-Format.changes
2018-03-14 19:40:04.654986190 +0100
@@ -1,0 +2,19 @@
+Mon Mar 5 06:59:26 UTC 2018 - [email protected]
+
+- updated to 1.18
+ see /usr/share/doc/packages/perl-String-Format/Changes
+
+ # Version 1.18 March 04, 2018
+ # ----------------------------------------------------------------------
+
+ * stable version with the changes in 1.17_50
+
+ # ----------------------------------------------------------------------
+ # Version 1.17_50 March 03, 2018
+ # ----------------------------------------------------------------------
+
+ * escape { and } (fix for RT #124147)
+
+ # ----------------------------------------------------------------------
+
+-------------------------------------------------------------------
Old:
----
String-Format-1.17.tar.gz
New:
----
String-Format-1.18.tar.gz
cpanspec.yml
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-String-Format.spec ++++++
--- /var/tmp/diff_new_pack.Hp8VXi/_old 2018-03-14 19:40:06.282928364 +0100
+++ /var/tmp/diff_new_pack.Hp8VXi/_new 2018-03-14 19:40:06.286928222 +0100
@@ -1,7 +1,7 @@
#
# spec file for package perl-String-Format
#
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -17,19 +17,19 @@
Name: perl-String-Format
-Version: 1.17
+Version: 1.18
Release: 0
%define cpan_name String-Format
-Summary: Sprintf-like string formatting capabilities
-License: GPL-2.0
+Summary: Sprintf-Like String Formatting Capabilities With
+License: GPL-2.0-only
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/String-Format/
-Source:
http://www.cpan.org/authors/id/D/DA/DARREN/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/S/SR/SREZIC/%{cpan_name}-%{version}.tar.gz
+Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
-#BuildRequires: perl(String::Format)
%{perl_requires}
%description
@@ -57,6 +57,7 @@
%files -f %{name}.files
%defattr(-,root,root,755)
-%doc Changes COPYING README
+%doc Changes README
+%license COPYING
%changelog
++++++ String-Format-1.17.tar.gz -> String-Format-1.18.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.17/Changes
new/String-Format-1.18/Changes
--- old/String-Format-1.17/Changes 2012-12-05 17:48:50.000000000 +0100
+++ new/String-Format-1.18/Changes 2018-03-04 10:10:19.000000000 +0100
@@ -3,6 +3,18 @@
# ======================================================================
# ----------------------------------------------------------------------
+# Version 1.18 March 04, 2018
+# ----------------------------------------------------------------------
+
+* stable version with the changes in 1.17_50
+
+# ----------------------------------------------------------------------
+# Version 1.17_50 March 03, 2018
+# ----------------------------------------------------------------------
+
+* escape { and } (fix for RT #124147)
+
+# ----------------------------------------------------------------------
# Version 1.14 December 22, 2005
# ----------------------------------------------------------------------
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.17/Format.pm
new/String-Format-1.18/Format.pm
--- old/String-Format-1.17/Format.pm 2012-12-05 17:50:49.000000000 +0100
+++ new/String-Format-1.18/Format.pm 2018-03-04 10:11:43.000000000 +0100
@@ -23,7 +23,7 @@
use Exporter;
use base qw(Exporter);
-$VERSION = '1.17';
+$VERSION = '1.18';
@EXPORT = qw(stringf);
sub _replace {
@@ -72,7 +72,7 @@
(-)? # left-align, rather than right
(\d*)? # (optional) minimum field width
(?:\.(\d*))? # (optional) maximum field width
- ({.*?})? # (optional) stuff inside
+ (\{.*?\})? # (optional) stuff inside
(\S) # actual format character
)/x;
sub stringf {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.17/MANIFEST
new/String-Format-1.18/MANIFEST
--- old/String-Format-1.17/MANIFEST 2012-12-05 17:51:10.000000000 +0100
+++ new/String-Format-1.18/MANIFEST 2018-03-04 10:12:46.000000000 +0100
@@ -11,4 +11,5 @@
t/04subrefs.t
t/05stringfactory.t
t/06slash-n.t
-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/String-Format-1.17/MANIFEST.SKIP
new/String-Format-1.18/MANIFEST.SKIP
--- old/String-Format-1.17/MANIFEST.SKIP 2012-12-05 17:48:50.000000000
+0100
+++ new/String-Format-1.18/MANIFEST.SKIP 2018-03-03 16:07:28.000000000
+0100
@@ -5,3 +5,7 @@
^pm_to_blib$
^blib/
\.git
+\.travis\.yml
+appveyor\.yml
+MYMETA\.yml
+MYMETA\.json
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.17/META.json
new/String-Format-1.18/META.json
--- old/String-Format-1.17/META.json 1970-01-01 01:00:00.000000000 +0100
+++ new/String-Format-1.18/META.json 2018-03-04 10:12:46.000000000 +0100
@@ -0,0 +1,47 @@
+{
+ "abstract" : "unknown",
+ "author" : [
+ "Slaven Rezic <[email protected]>",
+ "darren chamberlain <[email protected]>"
+ ],
+ "dynamic_config" : 1,
+ "generated_by" : "ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter
version 2.120630",
+ "license" : [
+ "unknown"
+ ],
+ "meta-spec" : {
+ "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+ "version" : "2"
+ },
+ "name" : "String-Format",
+ "no_index" : {
+ "directory" : [
+ "t",
+ "inc"
+ ]
+ },
+ "prereqs" : {
+ "build" : {
+ "requires" : {
+ "ExtUtils::MakeMaker" : "0"
+ }
+ },
+ "configure" : {
+ "requires" : {
+ "ExtUtils::MakeMaker" : "0"
+ }
+ },
+ "runtime" : {
+ "requires" : {
+ "Test::More" : "0"
+ }
+ }
+ },
+ "release_status" : "stable",
+ "resources" : {
+ "repository" : {
+ "url" : "git://github.com/dlc/string--format.git"
+ }
+ },
+ "version" : "1.18"
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.17/META.yml
new/String-Format-1.18/META.yml
--- old/String-Format-1.17/META.yml 2012-12-05 17:51:10.000000000 +0100
+++ new/String-Format-1.18/META.yml 2018-03-04 10:12:46.000000000 +0100
@@ -1,21 +1,25 @@
---- #YAML:1.0
-name: String-Format
-version: 1.17
-abstract: ~
-author: []
-license: unknown
-distribution_type: module
-configure_requires:
- ExtUtils::MakeMaker: 0
+---
+abstract: unknown
+author:
+ - 'Slaven Rezic <[email protected]>'
+ - 'darren chamberlain <[email protected]>'
build_requires:
- ExtUtils::MakeMaker: 0
-requires:
- Test::More: 0
-no_index:
- directory:
- - t
- - inc
-generated_by: ExtUtils::MakeMaker version 6.56
+ ExtUtils::MakeMaker: 0
+configure_requires:
+ ExtUtils::MakeMaker: 0
+dynamic_config: 1
+generated_by: 'ExtUtils::MakeMaker version 6.6302, CPAN::Meta::Converter
version 2.120630'
+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: String-Format
+no_index:
+ directory:
+ - t
+ - inc
+requires:
+ Test::More: 0
+resources:
+ repository: git://github.com/dlc/string--format.git
+version: 1.18
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.17/Makefile.PL
new/String-Format-1.18/Makefile.PL
--- old/String-Format-1.17/Makefile.PL 2012-12-05 17:48:50.000000000 +0100
+++ new/String-Format-1.18/Makefile.PL 2018-03-03 16:09:00.000000000 +0100
@@ -5,6 +5,18 @@
'FILES' => '$(DISTVNAME).tar$(SUFFIX)'
);
+my $eumm_recent_enough = $ExtUtils::MakeMaker::VERSION >= 6.54;
+
+if (!$eumm_recent_enough) {
+ *MY::dist_core = sub {
+ <<'EOF';
+dist :
+ $(NOECHO) $(ECHO) "Sorry, use a newer EUMM!"
+
+EOF
+ };
+}
+
WriteMakefile(
'NAME' => 'String::Format',
'VERSION_FROM' => 'Format.pm',
@@ -12,4 +24,14 @@
'PREREQ_PM' => {
'Test::More' => 0.00,
},
+ AUTHOR => ['Slaven Rezic <[email protected]>', 'darren chamberlain
<[email protected]>'],
+
+ ($eumm_recent_enough
+ ? (META_MERGE => {
+ resources => {
+ repository => 'git://github.com/dlc/string--format.git',
+ } }
+ )
+ : ()
+ ),
);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.17/t/01load.t
new/String-Format-1.18/t/01load.t
--- old/String-Format-1.17/t/01load.t 2012-12-05 17:48:50.000000000 +0100
+++ new/String-Format-1.18/t/01load.t 2018-03-03 15:53:45.000000000 +0100
@@ -6,6 +6,9 @@
# ======================================================================
use strict;
-use Test::More tests => 1;
+use Test::More tests => 2;
+my @warnings;
+$SIG{__WARN__} = sub { push @warnings, @_ };
use_ok('String::Format');
+is_deeply \@warnings, [], 'No warnings';
++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
license: GPL-2.0-only
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module