r72445 - in /trunk/libapache2-mod-perl2/debian: README.examples changelog libapache2-mod-perl2-dev.examples patches/200_fix-pod-spelling-errors.patch

periapt-guest at users.alioth.debian.org periapt-guest at users.alioth.debian.org
Sun Apr 10 10:46:49 UTC 2011


Author: periapt-guest
Date: Sun Apr 10 10:46:34 2011
New Revision: 72445

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=72445
Log:
  - New lintian version requires 'allows to' -> 'allows one to'
* Installed gdb scripts to examples for dev package

Added:
    trunk/libapache2-mod-perl2/debian/README.examples
    trunk/libapache2-mod-perl2/debian/libapache2-mod-perl2-dev.examples
Modified:
    trunk/libapache2-mod-perl2/debian/changelog
    trunk/libapache2-mod-perl2/debian/patches/200_fix-pod-spelling-errors.patch

Added: trunk/libapache2-mod-perl2/debian/README.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapache2-mod-perl2/debian/README.examples?rev=72445&op=file
==============================================================================
--- trunk/libapache2-mod-perl2/debian/README.examples (added)
+++ trunk/libapache2-mod-perl2/debian/README.examples Sun Apr 10 10:46:34 2011
@@ -1,0 +1,3 @@
+The code directory includes gdb scripts that you might find useful when
+developing with mod_perl2. They are '.' files so you will need
+to do something like 'ls -a code' to see them.

Modified: trunk/libapache2-mod-perl2/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapache2-mod-perl2/debian/changelog?rev=72445&op=diff
==============================================================================
--- trunk/libapache2-mod-perl2/debian/changelog (original)
+++ trunk/libapache2-mod-perl2/debian/changelog Sun Apr 10 10:46:34 2011
@@ -29,10 +29,13 @@
     - Removed 100-svn-XSS-Status.patch [applied upstream]
     - Removed 110-Fix-two-uninitialized-....patch [applied upstream]
     - Removed 035-testrequest_add_credentials.patch [applied upstream]
+    - New lintian version requires 'allows to' -> 'allows one to'
   * Added patch to remove generated files
   * Email change: Andres Salomon -> dilinger at debian.org
   * Refreshed copyright
   * Reviewed dependencies
+  * Installed gdb scripts to examples for dev package
+
 
   [ Damyan Ivanov ]
   * add avoid-db-linkage.patch: avoids needless linking with libdb, which

Added: trunk/libapache2-mod-perl2/debian/libapache2-mod-perl2-dev.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapache2-mod-perl2/debian/libapache2-mod-perl2-dev.examples?rev=72445&op=file
==============================================================================
--- trunk/libapache2-mod-perl2/debian/libapache2-mod-perl2-dev.examples (added)
+++ trunk/libapache2-mod-perl2/debian/libapache2-mod-perl2-dev.examples Sun Apr 10 10:46:34 2011
@@ -1,0 +1,2 @@
+docs/devel/debug/code/
+debian/README.examples

Modified: trunk/libapache2-mod-perl2/debian/patches/200_fix-pod-spelling-errors.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libapache2-mod-perl2/debian/patches/200_fix-pod-spelling-errors.patch?rev=72445&op=diff
==============================================================================
--- trunk/libapache2-mod-perl2/debian/patches/200_fix-pod-spelling-errors.patch (original)
+++ trunk/libapache2-mod-perl2/debian/patches/200_fix-pod-spelling-errors.patch Sun Apr 10 10:46:34 2011
@@ -4,7 +4,7 @@
  but is not done with this patch.
 Forwarded: http://mail-archives.apache.org/mod_mbox/perl-modperl/201004.mbox/thread
 Author: Damyan Ivanov <dmn at debian.org>
-Last-Update: 2011-03-22
+Last-Update: 2011-04-10
 Reviewed-by: Nicholas Bamber <nicholas at periapt.co.uk>
 
 --- a/Apache-Test/lib/Apache/TestTrace.pm
@@ -185,3 +185,80 @@
  
  The fix is to avoid pnotes taking a ref to the invisible op_targ embededed in 
  the code by passing a simple lexical variable as the actual argument. That can be done in-line like this:
+--- a/docs/user/intro/overview.pod
++++ b/docs/user/intro/overview.pod
+@@ -279,7 +279,7 @@
+ 
+ =item *
+ 
+-The I<warnings> pragma, which allows to force the code to be super
++The I<warnings> pragma, which allows one to force the code to be super
+ clean, via the setting:
+ 
+   use warnings FATAL => 'all';
+--- a/docs/user/handlers/http.pod
++++ b/docs/user/handlers/http.pod
+@@ -1580,7 +1580,7 @@
+ a cleanup code, for example removing temporarily created files. The
+ less obvious is to use this phase instead of
+ C<L<PerlLogHandler|/PerlLogHandler>> if the logging operation is time
+-consuming. This approach allows to free the client as soon as the
++consuming. This approach allows one to free the client as soon as the
+ response is sent.
+ 
+ This phase is of type
+--- a/docs/user/coding/coding.pod
++++ b/docs/user/coding/coding.pod
+@@ -300,7 +300,7 @@
+   no warnings 'redefine';
+   use warnings 'redefine';
+ 
+-Perl 5.8.0 allows to do all this in one line:
++Perl 5.8.0 allows one to do all this in one line:
+ 
+   use warnings FATAL => 'all', NONFATAL => 'redefine';
+ 
+--- a/docs/api/Apache2/SizeLimit.pod
++++ b/docs/api/Apache2/SizeLimit.pod
+@@ -147,7 +147,7 @@
+ to make it into the vanilla kernel in the near future.
+ 
+ F</proc/self/smaps> reports various sizes for each memory segment of a
+-process and allows to count the amount of shared memory correctly.
++process and allows one to count the amount of shared memory correctly.
+ 
+ If C<Apache2::SizeLimit> detects a kernel that supports F</proc/self/smaps>
+ and if the C<Linux::Smaps> module is installed it will use them instead of
+--- a/docs/api/Apache2/RequestRec.pod
++++ b/docs/api/Apache2/RequestRec.pod
+@@ -804,7 +804,7 @@
+ 
+ =back
+ 
+-See also C<L<err_headers_out|/C_err_headers_out_>>, which allows to
++See also C<L<err_headers_out|/C_err_headers_out_>>, which allows one to
+ set headers for non-2xx responses and persist across internal
+ redirects.
+ 
+--- a/docs/api/ModPerl/RegistryLoader.pod
++++ b/docs/api/ModPerl/RegistryLoader.pod
+@@ -175,7 +175,7 @@
+ C<ModPerl::RegistryLoader> performs a very simple job, at run time it
+ loads and sub-classes the module passed via the I<package> attribute
+ and overrides some of its functions, to emulate the run-time
+-environment. This allows to preload the same script into different
++environment. This allows one to preload the same script into different
+ registry environments.
+ 
+ =head1 Authors
+--- a/docs/devel/core/mod_perl_specific.pod
++++ b/docs/devel/core/mod_perl_specific.pod
+@@ -131,7 +131,7 @@
+                        retrieve ctx->handler
+   modperl_output_filter_handler -> modperl_run_filter -> modperl_callback
+ 
+-This trick allows to have more than one filter handler in the filters
++This trick allows one to have more than one filter handler in the filters
+ chain using the same Apache filter name (the real filter's name is
+ stored in ctx-E<gt>handler-E<gt>name.
+ 




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