Hello community,

here is the log from the commit of package perl-POSIX-strftime-Compiler for 
openSUSE:Factory checked in at 2015-02-08 11:42:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-POSIX-strftime-Compiler (Old)
 and      /work/SRC/openSUSE:Factory/.perl-POSIX-strftime-Compiler.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-POSIX-strftime-Compiler"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-POSIX-strftime-Compiler/perl-POSIX-strftime-Compiler.changes
        2014-09-08 21:30:21.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-POSIX-strftime-Compiler.new/perl-POSIX-strftime-Compiler.changes
   2015-02-08 11:42:40.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Feb  6 13:12:59 UTC 2015 - co...@suse.com
+
+- updated to 0.41
+  - fixed synopsis
+
+-------------------------------------------------------------------

Old:
----
  POSIX-strftime-Compiler-0.40.tar.gz

New:
----
  POSIX-strftime-Compiler-0.41.tar.gz

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

Other differences:
------------------
++++++ perl-POSIX-strftime-Compiler.spec ++++++
--- /var/tmp/diff_new_pack.OOWNt3/_old  2015-02-08 11:42:41.000000000 +0100
+++ /var/tmp/diff_new_pack.OOWNt3/_new  2015-02-08 11:42:41.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-POSIX-strftime-Compiler
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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,7 +17,7 @@
 
 
 Name:           perl-POSIX-strftime-Compiler
-Version:        0.40
+Version:        0.41
 Release:        0
 %define cpan_name POSIX-strftime-Compiler
 Summary:        GNU C library compatible strftime for loggers and servers
@@ -29,8 +29,6 @@
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(CPAN::Meta)
-BuildRequires:  perl(CPAN::Meta::Prereqs)
 BuildRequires:  perl(Module::Build) >= 0.38
 BuildRequires:  perl(Test::More) >= 0.98
 %{perl_requires}

++++++ POSIX-strftime-Compiler-0.40.tar.gz -> 
POSIX-strftime-Compiler-0.41.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/POSIX-strftime-Compiler-0.40/Build.PL 
new/POSIX-strftime-Compiler-0.41/Build.PL
--- old/POSIX-strftime-Compiler-0.40/Build.PL   2014-08-21 03:25:57.000000000 
+0200
+++ new/POSIX-strftime-Compiler-0.41/Build.PL   2015-01-05 04:26:31.000000000 
+0100
@@ -12,8 +12,6 @@
 use Module::Build;
 use File::Basename;
 use File::Spec;
-use CPAN::Meta;
-use CPAN::Meta::Prereqs;
 
 my %args = (
     license              => 'perl',
@@ -53,20 +51,15 @@
 )->new(%args);
 $builder->create_build_script();
 
-my $mbmeta = CPAN::Meta->load_file('MYMETA.json');
-my $meta = CPAN::Meta->load_file('META.json');
-my $prereqs_hash = CPAN::Meta::Prereqs->new(
-    $meta->prereqs
-)->with_merged_prereqs(
-    CPAN::Meta::Prereqs->new($mbmeta->prereqs)
-)->as_string_hash;
-my $mymeta = CPAN::Meta->new(
-    {
-        %{$meta->as_struct},
-        prereqs => $prereqs_hash
-    }
-);
-print "Merging cpanfile prereqs to MYMETA.yml\n";
-$mymeta->save('MYMETA.yml', { version => 1.4 });
-print "Merging cpanfile prereqs to MYMETA.json\n";
-$mymeta->save('MYMETA.json', { version => 2 });
+use File::Copy;
+
+print "cp META.json MYMETA.json\n";
+copy("META.json","MYMETA.json") or die "Copy failed(META.json): $!";
+
+if (-f 'META.yml') {
+    print "cp META.yml MYMETA.yml\n";
+    copy("META.yml","MYMETA.yml") or die "Copy failed(META.yml): $!";
+} else {
+    print "There is no META.yml... You may install this module from the 
repository...\n";
+}
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/POSIX-strftime-Compiler-0.40/Changes 
new/POSIX-strftime-Compiler-0.41/Changes
--- old/POSIX-strftime-Compiler-0.40/Changes    2014-08-21 03:25:57.000000000 
+0200
+++ new/POSIX-strftime-Compiler-0.41/Changes    2015-01-05 04:26:31.000000000 
+0100
@@ -1,5 +1,9 @@
 Revision history for Perl extension POSIX-strftime-Compiler
 
+0.41 2015-01-05T03:25:28Z
+
+   - fixed synopsis
+
 0.40 2014-08-21T01:25:32Z
 
    - fix test. accept ACST as Australia/Darwin's timezone
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/POSIX-strftime-Compiler-0.40/META.json 
new/POSIX-strftime-Compiler-0.41/META.json
--- old/POSIX-strftime-Compiler-0.40/META.json  2014-08-21 03:25:57.000000000 
+0200
+++ new/POSIX-strftime-Compiler-0.41/META.json  2015-01-05 04:26:31.000000000 
+0100
@@ -4,7 +4,7 @@
       "Masahiro Nagano <kazeb...@gmail.com>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Minilla/v1.1.0",
+   "generated_by" : "Minilla/v2.2.1",
    "license" : [
       "perl_5"
    ],
@@ -28,8 +28,6 @@
    "prereqs" : {
       "configure" : {
          "requires" : {
-            "CPAN::Meta" : "0",
-            "CPAN::Meta::Prereqs" : "0",
             "Module::Build" : "0.38"
          }
       },
@@ -63,7 +61,7 @@
    "provides" : {
       "POSIX::strftime::Compiler" : {
          "file" : "lib/POSIX/strftime/Compiler.pm",
-         "version" : "0.40"
+         "version" : "0.41"
       }
    },
    "release_status" : "stable",
@@ -77,7 +75,7 @@
          "web" : "https://github.com/kazeburo/POSIX-strftime-Compiler";
       }
    },
-   "version" : "0.40",
+   "version" : "0.41",
    "x_contributors" : [
       "Piotr Roszatycki <piotr.roszaty...@gmail.com>"
    ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/POSIX-strftime-Compiler-0.40/META.yml 
new/POSIX-strftime-Compiler-0.41/META.yml
--- old/POSIX-strftime-Compiler-0.40/META.yml   2014-08-21 03:25:57.000000000 
+0200
+++ new/POSIX-strftime-Compiler-0.41/META.yml   2015-01-05 04:26:31.000000000 
+0100
@@ -5,11 +5,9 @@
 build_requires:
   Test::More: '0.98'
 configure_requires:
-  CPAN::Meta: '0'
-  CPAN::Meta::Prereqs: '0'
   Module::Build: '0.38'
 dynamic_config: 0
-generated_by: 'Minilla/v1.1.0, CPAN::Meta::Converter version 2.141170'
+generated_by: 'Minilla/v2.2.1, CPAN::Meta::Converter version 2.141170'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -28,7 +26,7 @@
 provides:
   POSIX::strftime::Compiler:
     file: lib/POSIX/strftime/Compiler.pm
-    version: '0.40'
+    version: '0.41'
 requires:
   Carp: '0'
   Exporter: '0'
@@ -39,6 +37,6 @@
   bugtracker: https://github.com/kazeburo/POSIX-strftime-Compiler/issues
   homepage: https://github.com/kazeburo/POSIX-strftime-Compiler
   repository: git://github.com/kazeburo/POSIX-strftime-Compiler.git
-version: '0.40'
+version: '0.41'
 x_contributors:
   - 'Piotr Roszatycki <piotr.roszaty...@gmail.com>'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/POSIX-strftime-Compiler-0.40/README.md 
new/POSIX-strftime-Compiler-0.41/README.md
--- old/POSIX-strftime-Compiler-0.40/README.md  2014-08-21 03:25:57.000000000 
+0200
+++ new/POSIX-strftime-Compiler-0.41/README.md  2015-01-05 04:26:31.000000000 
+0100
@@ -1,4 +1,4 @@
-[![Build 
Status](https://travis-ci.org/kazeburo/POSIX-strftime-Compiler.png?branch=master)](https://travis-ci.org/kazeburo/POSIX-strftime-Compiler)
+[![Build 
Status](https://travis-ci.org/kazeburo/POSIX-strftime-Compiler.svg?branch=master)](https://travis-ci.org/kazeburo/POSIX-strftime-Compiler)
 # NAME
 
 POSIX::strftime::Compiler - GNU C library compatible strftime for loggers and 
servers
@@ -9,6 +9,7 @@
 
     say strftime('%a, %d %b %Y %T %z',localtime):
     
+    my $fmt = '%a, %d %b %Y %T %z';
     my $psc = POSIX::strftime::Compiler->new($fmt);
     say $psc->to_string(localtime);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/POSIX-strftime-Compiler-0.40/lib/POSIX/strftime/Compiler.pm 
new/POSIX-strftime-Compiler-0.41/lib/POSIX/strftime/Compiler.pm
--- old/POSIX-strftime-Compiler-0.40/lib/POSIX/strftime/Compiler.pm     
2014-08-21 03:25:57.000000000 +0200
+++ new/POSIX-strftime-Compiler-0.41/lib/POSIX/strftime/Compiler.pm     
2015-01-05 04:26:31.000000000 +0100
@@ -8,7 +8,7 @@
 use POSIX qw//;
 use base qw/Exporter/;
 
-our $VERSION = "0.40";
+our $VERSION = "0.41";
 our @EXPORT_OK = qw/strftime/;
 
 use constant {
@@ -391,6 +391,7 @@
 
     say strftime('%a, %d %b %Y %T %z',localtime):
     
+    my $fmt = '%a, %d %b %Y %T %z';
     my $psc = POSIX::strftime::Compiler->new($fmt);
     say $psc->to_string(localtime);
 

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to