Hello community,
here is the log from the commit of package perl-String-Format for
openSUSE:Factory checked in at 2013-06-07 07:06:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-String-Format (Old)
and /work/SRC/openSUSE:Factory/.perl-String-Format.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-String-Format"
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-String-Format/perl-String-Format.changes
2011-11-21 12:46:07.000000000 +0100
+++
/work/SRC/openSUSE:Factory/.perl-String-Format.new/perl-String-Format.changes
2013-06-07 07:06:27.000000000 +0200
@@ -1,0 +2,6 @@
+Tue Jun 4 18:28:26 UTC 2013 - [email protected]
+
+- updated to 1.17
+ * changed license
+
+-------------------------------------------------------------------
Old:
----
String-Format-1.16.tar.gz
New:
----
String-Format-1.17.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-String-Format.spec ++++++
--- /var/tmp/diff_new_pack.mRgWdT/_old 2013-06-07 07:06:28.000000000 +0200
+++ /var/tmp/diff_new_pack.mRgWdT/_new 2013-06-07 07:06:28.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-String-Format
#
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -15,36 +15,30 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
-# norootforbuild
-
Name: perl-String-Format
+Version: 1.17
+Release: 0
%define cpan_name String-Format
-Summary: Sprintf-like string formatting capabilities with arbitrary
format definitions
-Version: 1.16
-Release: 2
+Summary: Sprintf-like string formatting capabilities
License: GPL-2.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/String-Format/
-#Source:
http://www.cpan.org/modules/by-module/String/String-Format-%{version}.tar.gz
-Source: %{cpan_name}-%{version}.tar.gz
+Source:
http://www.cpan.org/authors/id/D/DA/DARREN/%{cpan_name}-%{version}.tar.gz
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
BuildRequires: perl
BuildRequires: perl-macros
-BuildRequires: perl(Test::More)
+#BuildRequires: perl(String::Format)
+%{perl_requires}
%description
String::Format lets you define arbitrary printf-like format sequences to be
expanded. This module would be most useful in configuration files and
reporting tools, where the results of a query need to be formatted in a
particular way. It was inspired by mutt's index_format and related
-directives
-(see <URL:http://www.mutt.org/doc/manual/manual-6.html#index_format>).
-
-Authors:
- Darren Chamberlain <[email protected]>
+directives (see
+<URL:http://www.mutt.org/doc/manual/manual-6.html#index_format>).
%prep
%setup -q -n %{cpan_name}-%{version}
@@ -58,18 +52,11 @@
%install
%perl_make_install
-# do not perl_process_packlist (noarch)
-# remove .packlist file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_vendorarch
-# remove perllocal.pod file
-%{__rm} -rf $RPM_BUILD_ROOT%perl_archlib
+%perl_process_packlist
%perl_gen_filelist
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
%files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
%doc Changes COPYING README
%changelog
++++++ String-Format-1.16.tar.gz -> String-Format-1.17.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.16/Format.pm
new/String-Format-1.17/Format.pm
--- old/String-Format-1.16/Format.pm 2009-05-18 00:23:07.000000000 +0200
+++ new/String-Format-1.17/Format.pm 2012-12-05 17:50:49.000000000 +0100
@@ -14,8 +14,8 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-# USA
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+# 02110-1301 USA.
# -------------------------------------------------------------------
use strict;
@@ -23,7 +23,7 @@
use Exporter;
use base qw(Exporter);
-$VERSION = '1.16';
+$VERSION = '1.17';
@EXPORT = qw(stringf);
sub _replace {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.16/META.yml
new/String-Format-1.17/META.yml
--- old/String-Format-1.16/META.yml 2009-05-18 00:23:30.000000000 +0200
+++ new/String-Format-1.17/META.yml 2012-12-05 17:51:10.000000000 +0100
@@ -1,19 +1,21 @@
--- #YAML:1.0
name: String-Format
-version: 1.16
+version: 1.17
abstract: ~
author: []
license: unknown
distribution_type: module
configure_requires:
ExtUtils::MakeMaker: 0
+build_requires:
+ ExtUtils::MakeMaker: 0
requires:
Test::More: 0
no_index:
directory:
- t
- inc
-generated_by: ExtUtils::MakeMaker version 6.48
+generated_by: ExtUtils::MakeMaker version 6.56
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/String-Format-1.16/README
new/String-Format-1.17/README
--- old/String-Format-1.16/README 2009-05-18 00:15:51.000000000 +0200
+++ new/String-Format-1.17/README 2012-12-05 17:48:50.000000000 +0100
@@ -119,6 +119,11 @@
my $reformed = reformat($format_string);
+LICENSE
+ "String::Format" is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by the
+ Free Software Foundation; version 2.
+
AUTHOR
darren chamberlain <[email protected]>
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]