r36973 - in /branches/upstream/libcgi-simple-perl/current: Build.PL Changes META.yml Makefile.PL README SIGNATURE lib/CGI/Simple.pm lib/CGI/Simple/Cookie.pm lib/CGI/Simple/Standard.pm lib/CGI/Simple/Util.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun May 31 16:10:11 UTC 2009


Author: gregoa
Date: Sun May 31 16:10:04 2009
New Revision: 36973

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=36973
Log:
[svn-upgrade] Integrating new upstream version, libcgi-simple-perl (1.112)

Modified:
    branches/upstream/libcgi-simple-perl/current/Build.PL
    branches/upstream/libcgi-simple-perl/current/Changes
    branches/upstream/libcgi-simple-perl/current/META.yml
    branches/upstream/libcgi-simple-perl/current/Makefile.PL
    branches/upstream/libcgi-simple-perl/current/README
    branches/upstream/libcgi-simple-perl/current/SIGNATURE
    branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple.pm
    branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Cookie.pm
    branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Standard.pm
    branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Util.pm

Modified: branches/upstream/libcgi-simple-perl/current/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/Build.PL?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/Build.PL (original)
+++ branches/upstream/libcgi-simple-perl/current/Build.PL Sun May 31 16:10:04 2009
@@ -1,8 +1,8 @@
 use strict;
-use Module::Build;
+use warnings;
 
 use lib 'inc';
-
+use Module::Build;
 use MyBuilder;
 
 my $builder = MyBuilder->new(
@@ -11,8 +11,11 @@
   license           => 'perl',
   dist_author       => 'Andy Armstrong <andy at hexten.net>',
   dist_version_from => 'lib/CGI/Simple.pm',
-  requires          => { 'Test::More' => 0, },
-  add_to_cleanup    => ['CGI-Simple-*'],
+  requires          => {
+    'Test::More' => 0,
+    'IO::Scalar' => 0
+  },
+  add_to_cleanup => ['CGI-Simple-*'],
 );
 
 $builder->create_build_script();

Modified: branches/upstream/libcgi-simple-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/Changes?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/Changes (original)
+++ branches/upstream/libcgi-simple-perl/current/Changes Sun May 31 16:10:04 2009
@@ -172,3 +172,5 @@
       - Implemented Michael Nachbaur fixes for multipart form data
         handling.
 
+1.112   2009-05-31
+      - (thanks bingos) added missing IO::Scalar dependency.

Modified: branches/upstream/libcgi-simple-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/META.yml?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/META.yml (original)
+++ branches/upstream/libcgi-simple-perl/current/META.yml Sun May 31 16:10:04 2009
@@ -1,6 +1,6 @@
 ---
 name: CGI-Simple
-version: 1.111
+version: 1.112
 author:
   - 'Andy Armstrong <andy at hexten.net>'
 abstract: A Simple totally OO CGI interface that is CGI.pm compliant
@@ -10,20 +10,21 @@
   license: http://dev.perl.org/licenses/
   repository: git://github.com/AndyA/CGI--Simple.git
 requires:
+  IO::Scalar: 0
   Test::More: 0
 provides:
   CGI::Simple:
     file: lib/CGI/Simple.pm
-    version: 1.111
+    version: 1.112
   CGI::Simple::Cookie:
     file: lib/CGI/Simple/Cookie.pm
-    version: 1.111
+    version: 1.112
   CGI::Simple::Standard:
     file: lib/CGI/Simple/Standard.pm
-    version: 1.111
+    version: 1.112
   CGI::Simple::Util:
     file: lib/CGI/Simple/Util.pm
-    version: 1.111
+    version: 1.112
 generated_by: Module::Build version 0.33
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html

Modified: branches/upstream/libcgi-simple-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/Makefile.PL?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/Makefile.PL (original)
+++ branches/upstream/libcgi-simple-perl/current/Makefile.PL Sun May 31 16:10:04 2009
@@ -9,9 +9,12 @@
   VERSION_FROM  => 'lib/CGI/Simple.pm',
   ABSTRACT_FROM => 'lib/CGI/Simple.pm',
   PL_FILES      => {},
-  PREREQ_PM     => { 'Test::More' => 0, },
-  dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-  clean => { FILES => 'CGI-Simple-*' },
+  PREREQ_PM     => {
+    'Test::More' => 0,
+    'IO::Scalar' => 0
+  },
+  dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+  clean => { FILES    => 'CGI-Simple-*' },
 );
 
 sub license {

Modified: branches/upstream/libcgi-simple-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/README?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/README (original)
+++ branches/upstream/libcgi-simple-perl/current/README Sun May 31 16:10:04 2009
@@ -1,4 +1,4 @@
-CGI-Simple version 1.111
+CGI-Simple version 1.112
 
 INSTALLATION
 

Modified: branches/upstream/libcgi-simple-perl/current/SIGNATURE
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/SIGNATURE?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/SIGNATURE (original)
+++ branches/upstream/libcgi-simple-perl/current/SIGNATURE Sun May 31 16:10:04 2009
@@ -14,17 +14,17 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 fc4b33de31e24bb7c44a98431665173c3289a18f Build.PL
-SHA1 b435cfd2c23edcb30b8ed4046e1ea474165c3992 Changes
+SHA1 e045be9cdb8db55f717cf79e924203e1414225f6 Build.PL
+SHA1 9d607c4a3231ade798a32e66e5886508d2222a92 Changes
 SHA1 63309d39b5c5374b4666faca712d3a092e1595f7 MANIFEST
-SHA1 e194764b6f9f875898e301cd90e868b1a1625d24 META.yml
-SHA1 a319c0eeaf2d35f87387cca92b851564bcb128d6 Makefile.PL
-SHA1 098b8588638698bdafe40bb84003f4949052d711 README
+SHA1 3ae8f3084974ca1037b3d9e99363b1b85501174c META.yml
+SHA1 95715f0bf53b6848943258a57e2ba3b06054b7b0 Makefile.PL
+SHA1 763fd78441823a3bdcfc8784b0b5f531ce4105b6 README
 SHA1 8c97bbeb63b586ee9c722313c2ad7858e32ff52c inc/MyBuilder.pm
-SHA1 59a6ea4fb22dde6e0adaab85c8ac150ac2828573 lib/CGI/Simple.pm
-SHA1 7fac2de382840bf97bfdd013fd843c5991b0f281 lib/CGI/Simple/Cookie.pm
-SHA1 c373d9070c569f90aea54c1ad1e80d108c8018f9 lib/CGI/Simple/Standard.pm
-SHA1 57797e264412af0d165e921a2ab693e437306100 lib/CGI/Simple/Util.pm
+SHA1 f9f26dd48c0032c280ef97df32ed0364596a7568 lib/CGI/Simple.pm
+SHA1 029734f02cbe279d921eaeed991c6b05005b58d4 lib/CGI/Simple/Cookie.pm
+SHA1 a98e3938824d2b802b1d5f9cec7f4312ccf31de2 lib/CGI/Simple/Standard.pm
+SHA1 3e5c2304828d4f155bd7b5f9f6d2e864f41b38f6 lib/CGI/Simple/Util.pm
 SHA1 029a0c2274884058f99bc339fd5bb073348c2b77 t/000.load.t
 SHA1 b02cd8953e5da31678711b93f4f8ebc2939e453a t/020.cookie.t
 SHA1 ca2ff8ba2f9a5f68c75e8d9527af38b042067148 t/030.function.t
@@ -44,7 +44,7 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.9 (Darwin)
 
-iEYEARECAAYFAkoe0UwACgkQwoknRJZQnCEoFQCdGeexog7wtmgD4pHK4U/XMQIi
-JeYAn2J6xfYAFuWg58zQIWd9URxfWR2X
-=qImp
+iEYEARECAAYFAkoiXzkACgkQwoknRJZQnCFOowCghr6L7snVjnxH/wBOHdNUTzgl
+0iIAoIqlQLnYszm64ka9qxI5UIXTO6E/
+=lVHC
 -----END PGP SIGNATURE-----

Modified: branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple.pm?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple.pm (original)
+++ branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple.pm Sun May 31 16:10:04 2009
@@ -13,7 +13,7 @@
  $NPH $DEBUG $NO_NULL $FATAL *in
 );
 
-$VERSION = "1.111";
+$VERSION = "1.112";
 
 # you can hard code the global variable settings here if you want.
 # warning - do not delete the unless defined $VAR part unless you
@@ -1450,7 +1450,7 @@
 
 =head1 VERSION
 
-This document describes CGI::Simple version 1.111.
+This document describes CGI::Simple version 1.112.
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Cookie.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Cookie.pm?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Cookie.pm (original)
+++ branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Cookie.pm Sun May 31 16:10:04 2009
@@ -12,7 +12,7 @@
 
 use strict;
 use vars '$VERSION';
-$VERSION = '1.111';
+$VERSION = '1.112';
 use CGI::Simple::Util qw(rearrange unescape escape);
 use overload '""' => \&as_string, 'cmp' => \&compare, 'fallback' => 1;
 

Modified: branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Standard.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Standard.pm?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Standard.pm (original)
+++ branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Standard.pm Sun May 31 16:10:04 2009
@@ -7,7 +7,7 @@
  $NO_UNDEF_PARAMS $USE_PARAM_SEMICOLONS $HEADERS_ONCE
  $NPH $DEBUG $NO_NULL $FATAL *in %EXPORT_TAGS $AUTOLOAD );
 
-$VERSION = "1.111";
+$VERSION = "1.112";
 
 %EXPORT_TAGS = (
   ':html'     => [qw(:misc)],

Modified: branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Util.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Util.pm?rev=36973&op=diff
==============================================================================
--- branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Util.pm (original)
+++ branches/upstream/libcgi-simple-perl/current/lib/CGI/Simple/Util.pm Sun May 31 16:10:04 2009
@@ -1,7 +1,7 @@
 package CGI::Simple::Util;
 use strict;
 use vars qw( $VERSION @EXPORT_OK @ISA $UTIL );
-$VERSION = '1.111';
+$VERSION = '1.112';
 require Exporter;
 @ISA       = qw( Exporter );
 @EXPORT_OK = qw(




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