r24095 - in /branches/upstream/libcgi-application-perl/current: Changes META.yml Makefile.PL lib/CGI/Application.pm

rmayorga-guest at users.alioth.debian.org rmayorga-guest at users.alioth.debian.org
Mon Aug 11 05:17:27 UTC 2008


Author: rmayorga-guest
Date: Mon Aug 11 05:17:22 2008
New Revision: 24095

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

Modified:
    branches/upstream/libcgi-application-perl/current/Changes
    branches/upstream/libcgi-application-perl/current/META.yml
    branches/upstream/libcgi-application-perl/current/Makefile.PL
    branches/upstream/libcgi-application-perl/current/lib/CGI/Application.pm

Modified: branches/upstream/libcgi-application-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-application-perl/current/Changes?rev=24095&op=diff
==============================================================================
--- branches/upstream/libcgi-application-perl/current/Changes (original)
+++ branches/upstream/libcgi-application-perl/current/Changes Mon Aug 11 05:17:22 2008
@@ -1,4 +1,10 @@
 Revision history for CGI::Application.
+
+4.11 Sun Aug 10, 2008
+    No code changes. 
+
+    [DOCUMENTATION]
+    - Fix POD syntax issue.
 
 4.10 Tue Jun 17, 2008
 

Modified: branches/upstream/libcgi-application-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-application-perl/current/META.yml?rev=24095&op=diff
==============================================================================
--- branches/upstream/libcgi-application-perl/current/META.yml (original)
+++ branches/upstream/libcgi-application-perl/current/META.yml Mon Aug 11 05:17:22 2008
@@ -1,10 +1,10 @@
----
+--- #YAML:1.0
 name: CGI-Application
-version: 4.10
+version: 4.11
 author:
-  - 'Jesse Erlbaum <jesse at erlbaum.net>'
-  - 'Mark Stosberg <mark at summersault.com>'
-  - "with the help of many others!"
+  - Jesse Erlbaum <jesse at erlbaum.net>
+  - Mark Stosberg <mark at summersault.com>
+  - with the help of many others!
 abstract: Framework for building reusable web-applications
 license: perl
 requires:
@@ -13,17 +13,10 @@
   Class::ISA: 0
   HTML::Template: 0
   Test::More: 0.47
-generated_by: Module::Build version 0.2808
-meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
-no_index:
-  file:
 provides:
   CGI::Application:
     file: lib/CGI/Application.pm
-    version: 4.10
+    version: 4.11
   CGI::Application::Mailform:
     file: lib/CGI/Application/Mailform.pm
-resources:
-  license: http://dev.perl.org/licenses/
+generated_by: Module::Build version 0.2611

Modified: branches/upstream/libcgi-application-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-application-perl/current/Makefile.PL?rev=24095&op=diff
==============================================================================
--- branches/upstream/libcgi-application-perl/current/Makefile.PL (original)
+++ branches/upstream/libcgi-application-perl/current/Makefile.PL Mon Aug 11 05:17:22 2008
@@ -2,17 +2,16 @@
 use ExtUtils::MakeMaker;
 WriteMakefile
 (
-          'PL_FILES' => {},
-          'INSTALLDIRS' => 'site',
           'NAME' => 'CGI::Application',
-          'EXE_FILES' => [],
           'VERSION_FROM' => 'lib/CGI/Application.pm',
           'PREREQ_PM' => {
-                           'Test::More' => '0.47',
-                           'HTML::Template' => 0,
-                           'Class::ISA' => 0,
-                           'CGI' => 0,
-                           'Carp' => 0
-                         }
+                           'CGI' => '0',
+                           'Carp' => '0',
+                           'Class::ISA' => '0',
+                           'HTML::Template' => '0',
+                           'Test::More' => '0.47'
+                         },
+          'INSTALLDIRS' => 'site',
+          'PL_FILES' => {}
         )
 ;

Modified: branches/upstream/libcgi-application-perl/current/lib/CGI/Application.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcgi-application-perl/current/lib/CGI/Application.pm?rev=24095&op=diff
==============================================================================
--- branches/upstream/libcgi-application-perl/current/lib/CGI/Application.pm (original)
+++ branches/upstream/libcgi-application-perl/current/lib/CGI/Application.pm Mon Aug 11 05:17:22 2008
@@ -3,7 +3,7 @@
 use strict;
 use Class::ISA;
 
-$CGI::Application::VERSION = '4.10';
+$CGI::Application::VERSION = '4.11';
 
 my %INSTALLED_CALLBACKS = (
 #	hook name          package                 sub
@@ -1579,7 +1579,7 @@
 back.
 
 To add additional headers later without clobbering the old ones,
-see C<header_add().
+see C<header_add()>.
 
 B<IMPORTANT NOTE REGARDING HTTP HEADERS>
 




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