r27657 - in /trunk/libhttp-body-perl: Changes META.yml debian/changelog lib/HTTP/Body.pm

bricas-guest at users.alioth.debian.org bricas-guest at users.alioth.debian.org
Tue Dec 2 16:03:18 UTC 2008


Author: bricas-guest
Date: Tue Dec  2 16:03:15 2008
New Revision: 27657

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=27657
Log:
New upstream release.

Modified:
    trunk/libhttp-body-perl/Changes
    trunk/libhttp-body-perl/META.yml
    trunk/libhttp-body-perl/debian/changelog
    trunk/libhttp-body-perl/lib/HTTP/Body.pm

Modified: trunk/libhttp-body-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-body-perl/Changes?rev=27657&op=diff
==============================================================================
--- trunk/libhttp-body-perl/Changes (original)
+++ trunk/libhttp-body-perl/Changes Tue Dec  2 16:03:15 2008
@@ -1,4 +1,7 @@
 This file documents the revision history for Perl extension HTTP::Body.
+
+1.05    2008-12-01 17:15:00
+        - Removed useless eval + require in new().
 
 1.04    2008-06-23 16:00:00
         - Added tmpdir() accessor to specify an alternate directory for temp files.

Modified: trunk/libhttp-body-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-body-perl/META.yml?rev=27657&op=diff
==============================================================================
--- trunk/libhttp-body-perl/META.yml (original)
+++ trunk/libhttp-body-perl/META.yml Tue Dec  2 16:03:15 2008
@@ -1,7 +1,7 @@
 # http://module-build.sourceforge.net/META-spec.html
 #XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
 name:         HTTP-Body
-version:      1.04
+version:      1.05
 version_from: lib/HTTP/Body.pm
 installdirs:  site
 requires:

Modified: trunk/libhttp-body-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-body-perl/debian/changelog?rev=27657&op=diff
==============================================================================
--- trunk/libhttp-body-perl/debian/changelog (original)
+++ trunk/libhttp-body-perl/debian/changelog Tue Dec  2 16:03:15 2008
@@ -1,5 +1,6 @@
-libhttp-body-perl (1.04-2) UNRELEASED; urgency=low
+libhttp-body-perl (1.05-1) unstable; urgency=low
 
+  * New upstream release.
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
     (source stanza).
 

Modified: trunk/libhttp-body-perl/lib/HTTP/Body.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libhttp-body-perl/lib/HTTP/Body.pm?rev=27657&op=diff
==============================================================================
--- trunk/libhttp-body-perl/lib/HTTP/Body.pm (original)
+++ trunk/libhttp-body-perl/lib/HTTP/Body.pm Tue Dec  2 16:03:15 2008
@@ -4,7 +4,7 @@
 
 use Carp       qw[ ];
 
-our $VERSION = '1.04';
+our $VERSION = '1.05';
 
 our $TYPES = {
     'application/octet-stream'          => 'HTTP::Body::OctetStream',
@@ -96,12 +96,6 @@
     }
 
     my $body = $TYPES->{ $type || 'application/octet-stream' };
-
-    eval "require $body";
-
-    if ($@) {
-        die $@;
-    }
 
     my $self = {
         buffer         => '',




More information about the Pkg-perl-cvs-commits mailing list