r54527 - in /trunk/libsql-statement-perl/debian: changelog patches/ patches/fix-pod-spelling.patch patches/series source/ source/format

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Fri Mar 19 01:46:30 UTC 2010


Author: jawnsy-guest
Date: Fri Mar 19 01:46:18 2010
New Revision: 54527

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54527
Log:
* Use new 3.0 (quilt) source format
* Add a patch to fix POD spelling errors

Added:
    trunk/libsql-statement-perl/debian/patches/
    trunk/libsql-statement-perl/debian/patches/fix-pod-spelling.patch
    trunk/libsql-statement-perl/debian/patches/series
    trunk/libsql-statement-perl/debian/source/
    trunk/libsql-statement-perl/debian/source/format
Modified:
    trunk/libsql-statement-perl/debian/changelog

Modified: trunk/libsql-statement-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsql-statement-perl/debian/changelog?rev=54527&op=diff
==============================================================================
--- trunk/libsql-statement-perl/debian/changelog (original)
+++ trunk/libsql-statement-perl/debian/changelog Fri Mar 19 01:46:18 2010
@@ -5,6 +5,8 @@
   * Update copyright to new DEP5 format
     + Update copyright per upstream
     + Update debian/ copyright holders from changelog
+  * Use new 3.0 (quilt) source format
+  * Add a patch to fix POD spelling errors
 
  -- Jonathan Yu <jawnsy at cpan.org>  Thu, 18 Mar 2010 22:06:57 -0400
 

Added: trunk/libsql-statement-perl/debian/patches/fix-pod-spelling.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsql-statement-perl/debian/patches/fix-pod-spelling.patch?rev=54527&op=file
==============================================================================
--- trunk/libsql-statement-perl/debian/patches/fix-pod-spelling.patch (added)
+++ trunk/libsql-statement-perl/debian/patches/fix-pod-spelling.patch Fri Mar 19 01:46:18 2010
@@ -1,0 +1,102 @@
+Description: fix POD spelling
+Author: Jonathan Yu <jawnsy at cpan.org>
+Origin: vendor
+Forwarded: no
+--- a/lib/SQL/Parser.pm
++++ b/lib/SQL/Parser.pm
+@@ -3117,7 +3117,7 @@
+ =head1 Subclassing SQL::Parser
+ 
+ In the event you need to either extend or modify SQL::Parser's
+-default behavior, the following methods may be overriden
++default behavior, the following methods may be overridden
+ to modify the behavior:
+ 
+ =over
+@@ -3146,7 +3146,7 @@
+ =head1 The parse structure
+ 
+ This section outlines the B<now-deprecated> hash interface to the parsed
+-structure.  It is included B<for backwards compatability only>.  You should
++structure.  It is included B<for backwards compatibility only>.  You should
+ use the SQL::Statement object interface to the structure instead.  See L<SQL::Statement>.
+ 
+ B<Parse Structures>
+--- a/lib/SQL/Statement.pm
++++ b/lib/SQL/Statement.pm
+@@ -2136,7 +2136,7 @@
+ 
+ SQL::Statement is a small embeddable Database Management System (DBMS), this
+ means that it provides all of the services of a simple DBMS except that
+-instead of a persistant storage mechanism, it has two things: 1) an in-memory
++instead of a persistent storage mechanism, it has two things: 1) an in-memory
+ storage mechanism that allows you to prepare, execute, and fetch from SQL
+ statements using temporary tables and 2) a set of software sockets where
+ any author can plug in any storage mechanism.
+@@ -2149,7 +2149,7 @@
+ =head1 INSTALLATION
+ 
+ There are no prerequisites for using this as a standalone parser. If you want
+-to access persistant stored data, you either need to write a subclass or use
++to access persistent stored data, you either need to write a subclass or use
+ one of the DBI DBD drivers.  You can install this module using CPAN.pm,
+ CPANPLUS.pm, PPM, apt-get, or other packaging tools.  Or you can download the
+ tar.gz file form CPAN and use the standard perl mantra:
+@@ -2312,7 +2312,7 @@
+ only. To get patches for earlier versions, you need to get an
+ agreement with a developer of your choice - who might or might
+ not report the issue and a suggested fix upstream (depends on
+-the license you've choosen).
++the license you've chosen).
+ 
+ =head2 Business support and maintenance
+ 
+--- a/lib/SQL/Statement/Embed.pod
++++ b/lib/SQL/Statement/Embed.pod
+@@ -22,7 +22,7 @@
+ 
+ Consider what needs to happen to perform a SELECT query on our 'Foo' data:
+ 
+- * recieve a SQL string
++ * receive a SQL string
+  * parse the SQL string into a request structure
+  * open the table(s) specified in the request
+  * define column names and postions for the table
+@@ -230,4 +230,4 @@
+ 
+ This document may be freely modified and distributed under the same terms as Perl itself.
+ 
+-=cut
+\ No newline at end of file
++=cut
+--- a/lib/SQL/Statement/Functions.pm
++++ b/lib/SQL/Statement/Functions.pm
+@@ -94,7 +94,7 @@
+      sprintf "%02s::%02s::%02s",(localtime)[2,1,0]
+  }
+ 
+-More complex functions can make use of a number of arguments always passed to functions automatically.  Functions always recieve these values in @_:
++More complex functions can make use of a number of arguments always passed to functions automatically.  Functions always receive these values in @_:
+ 
+  sub FOO {
+      my($self,$sth,$rowhash, at params);
+--- a/lib/SQL/Statement/Structure.pod
++++ b/lib/SQL/Statement/Structure.pod
+@@ -149,7 +149,7 @@
+ 
+ This would return two instances of C<SQL::Statement::Param>. Param objects
+ implement a single method, C<$param->num()>, which retrieves the parameter
+-number. (0 and 1, in the above example). As of now, not very usefull ... :-)
++number. (0 and 1, in the above example). As of now, not very useful ... :-)
+ 
+ =head2 B<row_values>
+ 
+@@ -304,7 +304,7 @@
+ =head2 execute
+ 
+ When called from a DBD or other subclass of SQL::Statement, the execute()
+-method will be executed against whatever datasource (persistant storage) is
++method will be executed against whatever datasource (persistent storage) is
+ supplied by the DBD or the subclass (e.g. CSV files for L<DBD::CSV>, or
+ BerkeleyDB for L<DBD::DBM>). If you are using L<SQL::Statement> directly
+ rather than as a subclass, you can call the execute() method and the

Added: trunk/libsql-statement-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsql-statement-perl/debian/patches/series?rev=54527&op=file
==============================================================================
--- trunk/libsql-statement-perl/debian/patches/series (added)
+++ trunk/libsql-statement-perl/debian/patches/series Fri Mar 19 01:46:18 2010
@@ -1,0 +1,1 @@
+fix-pod-spelling.patch

Added: trunk/libsql-statement-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libsql-statement-perl/debian/source/format?rev=54527&op=file
==============================================================================
--- trunk/libsql-statement-perl/debian/source/format (added)
+++ trunk/libsql-statement-perl/debian/source/format Fri Mar 19 01:46:18 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)




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