Hello community,

here is the log from the commit of package perl-AnyEvent-HTTP for 
openSUSE:Factory checked in at 2012-05-25 16:17:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-AnyEvent-HTTP (Old)
 and      /work/SRC/openSUSE:Factory/.perl-AnyEvent-HTTP.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-AnyEvent-HTTP", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-AnyEvent-HTTP/perl-AnyEvent-HTTP.changes    
2011-09-23 12:35:56.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-AnyEvent-HTTP.new/perl-AnyEvent-HTTP.changes   
    2012-05-25 16:17:31.000000000 +0200
@@ -1,0 +2,7 @@
+Fri May 25 03:26:07 UTC 2012 - [email protected]
+
+- updated to 2.14
+    - Time::Local::timegm croaks on out-of-range values. Don't let
+       this disturb AnyEvent::HTTP (reported by: tell me, I forgot...).
+
+-------------------------------------------------------------------

Old:
----
  AnyEvent-HTTP-2.13.tar.gz

New:
----
  AnyEvent-HTTP-2.14.tar.gz

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

Other differences:
------------------
++++++ perl-AnyEvent-HTTP.spec ++++++
--- /var/tmp/diff_new_pack.WAQwIC/_old  2012-05-25 16:17:33.000000000 +0200
+++ /var/tmp/diff_new_pack.WAQwIC/_new  2012-05-25 16:17:33.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-AnyEvent-HTTP
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 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
@@ -16,27 +16,26 @@
 #
 
 
-
 Name:           perl-AnyEvent-HTTP
-Version:        2.13
-Release:        1
-License:        GPL-1.0+ or Artistic-1.0
+Version:        2.14
+Release:        0
 %define cpan_name AnyEvent-HTTP
 Summary:        Simple but non-blocking HTTP/HTTPS client
-Url:            http://search.cpan.org/dist/AnyEvent-HTTP/
+License:        GPL-1.0+ or Artistic-1.0
 Group:          Development/Libraries/Perl
+Url:            http://search.cpan.org/dist/AnyEvent-HTTP/
 Source:         
http://www.cpan.org/authors/id/M/ML/MLEHMANN/%{cpan_name}-%{version}.tar.gz
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(AnyEvent) >= 5.33
-# Included in AnyEvent
+BuildRequires:  perl(common::sense) >= 3.3
 #BuildRequires:  perl(AnyEvent::Handle)
+#BuildRequires: perl(AnyEvent::HTTP)
 #BuildRequires:  perl(AnyEvent::Impl::Perl)
 #BuildRequires:  perl(AnyEvent::Socket)
 #BuildRequires:  perl(AnyEvent::Util)
-BuildRequires:  perl(common::sense) >= 3.3
 Requires:       perl(AnyEvent) >= 5.33
 Requires:       perl(common::sense) >= 3.3
 %{perl_requires}
@@ -75,9 +74,6 @@
 %perl_process_packlist
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf %{buildroot}
-
 %files -f %{name}.files
 %defattr(-,root,root,755)
 %doc Changes COPYING README

++++++ AnyEvent-HTTP-2.13.tar.gz -> AnyEvent-HTTP-2.14.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.13/Changes 
new/AnyEvent-HTTP-2.14/Changes
--- old/AnyEvent-HTTP-2.13/Changes      2011-07-27 18:11:45.000000000 +0200
+++ new/AnyEvent-HTTP-2.14/Changes      2012-04-22 14:58:14.000000000 +0200
@@ -5,6 +5,10 @@
 TODO: set_proxy hook
 TODO: use proxy hook
 
+2.14 Sun Apr 22 14:57:51 CEST 2012
+       - Time::Local::timegm croaks on out-of-range values. Don't let
+          this disturb AnyEvent::HTTP (reported by: tell me, I forgot...).
+
 2.13 Wed Jul 27 17:53:58 CEST 2011
        - garbled chunked responses caused AnyEvent::HTTP to malfunction
           (patch by Dmitri Melikyan).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.13/HTTP.pm 
new/AnyEvent-HTTP-2.14/HTTP.pm
--- old/AnyEvent-HTTP-2.13/HTTP.pm      2011-07-27 18:11:15.000000000 +0200
+++ new/AnyEvent-HTTP-2.14/HTTP.pm      2012-04-22 14:58:18.000000000 +0200
@@ -48,7 +48,7 @@
 
 use base Exporter::;
 
-our $VERSION = '2.13';
+our $VERSION = '2.14';
 
 our @EXPORT = qw(http_get http_post http_head http_request);
 
@@ -1255,7 +1255,7 @@
 
 =item $AnyEvent::HTTP::TIMEOUT
 
-The default timeout for conenction operations (default: C<300>).
+The default timeout for connection operations (default: C<300>).
 
 =item $AnyEvent::HTTP::USERAGENT
 
@@ -1330,7 +1330,7 @@
    for (0..11) {
       if ($m eq $month[$_]) {
          require Time::Local;
-         return Time::Local::timegm ($S, $M, $H, $d, $_, $y);
+         return eval { Time::Local::timegm ($S, $M, $H, $d, $_, $y) };
       }
    }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.13/META.json 
new/AnyEvent-HTTP-2.14/META.json
--- old/AnyEvent-HTTP-2.13/META.json    2011-07-27 18:11:47.000000000 +0200
+++ new/AnyEvent-HTTP-2.14/META.json    2012-04-22 14:58:26.000000000 +0200
@@ -4,7 +4,7 @@
       "unknown"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter 
version 2.110930001",
+   "generated_by" : "ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter 
version 2.112150",
    "license" : [
       "unknown"
    ],
@@ -38,5 +38,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "2.13"
+   "version" : "2.14"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.13/META.yml 
new/AnyEvent-HTTP-2.14/META.yml
--- old/AnyEvent-HTTP-2.13/META.yml     2011-07-27 18:11:47.000000000 +0200
+++ new/AnyEvent-HTTP-2.14/META.yml     2012-04-22 14:58:26.000000000 +0200
@@ -7,7 +7,7 @@
 configure_requires:
   ExtUtils::MakeMaker: 0
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 6.58, CPAN::Meta::Converter version 
2.110930001'
+generated_by: 'ExtUtils::MakeMaker version 6.62, CPAN::Meta::Converter version 
2.112150'
 license: unknown
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -20,4 +20,4 @@
 requires:
   AnyEvent: 5.33
   common::sense: 3.3
-version: 2.13
+version: 2.14
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/AnyEvent-HTTP-2.13/README 
new/AnyEvent-HTTP-2.14/README
--- old/AnyEvent-HTTP-2.13/README       2011-07-27 18:11:47.000000000 +0200
+++ new/AnyEvent-HTTP-2.14/README       2012-04-22 14:58:27.000000000 +0200
@@ -430,7 +430,7 @@
         The default value for the "recurse" request parameter (default: 10).
 
     $AnyEvent::HTTP::TIMEOUT
-        The default timeout for conenction operations (default: 300).
+        The default timeout for connection operations (default: 300).
 
     $AnyEvent::HTTP::USERAGENT
         The default value for the "User-Agent" header (the default is

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to