[SCM] Debian packaging of libdbix-class-perl branch, master, updated. debian/0.08195-1-15-ge642e52

Olly Betts olly at survex.com
Fri Dec 9 02:55:39 UTC 2011


The following commit has been merged in the master branch:
commit a2b7a0f64cf09494463b21827b22494780d9a538
Author: Olly Betts <olly at survex.com>
Date:   Fri Dec 9 15:22:13 2011 +1300

    Rename patch fix-doc-typo.patch to fix-doc-typos.patch and add more typo fixes to it.

diff --git a/debian/changelog b/debian/changelog
index 01f8f7e..2408e7d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+libdbix-class-perl (0.08196-3) UNRELEASED; urgency=low
+
+  * Rename patch fix-doc-typo.patch to fix-doc-typos.patch and add more typo
+    fixes to it.
+
+ -- Olly Betts <olly at survex.com>  Fri, 09 Dec 2011 02:20:29 +0000
+
 libdbix-class-perl (0.08196-2) UNRELEASED; urgency=low
 
   * Update dependencies for changes between 0.08195 and 0.08196.
diff --git a/debian/patches/fix-doc-typo.patch b/debian/patches/fix-doc-typo.patch
deleted file mode 100644
index 9c28bd0..0000000
--- a/debian/patches/fix-doc-typo.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Fix documentation typo
-Author: Olly Betts <olly at survex.com>
----
-Forwarded: no
-Last-Update: 2011-12-07
-
---- libdbix-class-perl-0.08196.orig/lib/DBIx/Class/Schema.pm
-+++ libdbix-class-perl-0.08196/lib/DBIx/Class/Schema.pm
-@@ -1021,7 +1021,7 @@ sub svp_rollback {
- 
- Clones the schema and its associated result_source objects and returns the
- copy. The resulting copy will have the same attributes as the source schema,
--except for those attributes explicitly overriden by the provided C<%attrs>.
-+except for those attributes explicitly overridden by the provided C<%attrs>.
- 
- =cut
- 
diff --git a/debian/patches/fix-doc-typos.patch b/debian/patches/fix-doc-typos.patch
new file mode 100644
index 0000000..4bd6609
--- /dev/null
+++ b/debian/patches/fix-doc-typos.patch
@@ -0,0 +1,119 @@
+Description: Fix documentation typos
+Author: Olly Betts <olly at survex.com>
+---
+Forwarded: no
+Last-Update: 2011-12-09
+
+--- libdbix-class-perl-0.08196.orig/lib/DBIx/Class/Schema.pm
++++ libdbix-class-perl-0.08196/lib/DBIx/Class/Schema.pm
+@@ -1021,7 +1021,7 @@ sub svp_rollback {
+ 
+ Clones the schema and its associated result_source objects and returns the
+ copy. The resulting copy will have the same attributes as the source schema,
+-except for those attributes explicitly overriden by the provided C<%attrs>.
++except for those attributes explicitly overridden by the provided C<%attrs>.
+ 
+ =cut
+ 
+diff --git a/lib/DBIx/Class/Optional/Dependencies.pm b/lib/DBIx/Class/Optional/Dependencies.pm
+index 173ae32..92cae5c 100644
+--- a/lib/DBIx/Class/Optional/Dependencies.pm
++++ b/lib/DBIx/Class/Optional/Dependencies.pm
+@@ -841,7 +841,7 @@ EOD
+     '=item Returns: \%list_of_loaderrors_per_module',
+     '=back',
+     <<'EOD',
+-Returns a hashref containing the actual errors that occured while attempting
++Returns a hashref containing the actual errors that occurred while attempting
+ to load each module in the requirement group.
+ EOD
+     '=head1 AUTHOR',
+diff --git a/lib/DBIx/Class/Manual/Component.pod b/lib/DBIx/Class/Manual/Component.pod
+index 46170f9..6865aac 100644
+--- a/lib/DBIx/Class/Manual/Component.pod
++++ b/lib/DBIx/Class/Manual/Component.pod
+@@ -27,7 +27,7 @@ by prepending the component name with a +.
+ 
+   __PACKAGE__->load_components(qw/ +My::Component /);
+ 
+-Once a component is loaded all of it's methods, or otherwise,
++Once a component is loaded all of its methods, or otherwise,
+ that it provides will be available in your class.
+ 
+ The order in which is you load the components may be very
+diff --git a/lib/DBIx/Class/Manual/Features.pod b/lib/DBIx/Class/Manual/Features.pod
+index 8ae1fe6..bebcddf 100644
+--- a/lib/DBIx/Class/Manual/Features.pod
++++ b/lib/DBIx/Class/Manual/Features.pod
+@@ -258,7 +258,7 @@ See L<DBIx::Class::Schema::Loader> and L<DBIx::Class::Schema::Loader::Base/CONST
+ 
+ =head2 Populate
+ 
+-Made for inserting lots of rows very quicky into database
++Made for inserting lots of rows very quickly into database
+ 
+  $schema->populate([ Users =>
+     [qw( username password )],
+@@ -274,7 +274,7 @@ I use populate L<here|http://blog.afoolishmanifesto.com/archives/1255> to export
+ 
+ =head2 Multicreate
+ 
+-Create an object and it's related objects all at once
++Create an object and its related objects all at once
+ 
+  $schema->resultset('Author')->create({
+     name => 'Stephen King',
+diff --git a/lib/DBIx/Class/Manual/FAQ.pod b/lib/DBIx/Class/Manual/FAQ.pod
+index ba6d4d1..6d58c16 100644
+--- a/lib/DBIx/Class/Manual/FAQ.pod
++++ b/lib/DBIx/Class/Manual/FAQ.pod
+@@ -75,7 +75,7 @@ lot later.
+ 
+ =item .. use DBIx::Class across multiple databases?
+ 
+-If your database server allows you to run querys across multiple
++If your database server allows you to run queries across multiple
+ databases at once, then so can DBIx::Class. All you need to do is make
+ sure you write the database name as part of the
+ L<DBIx::Class::ResultSource/table> call. Eg:
+@@ -322,7 +322,7 @@ Use L<DBIx::Class::Row/discard_changes>.
+ 
+   $row->discard_changes
+ 
+-Discarding changes and refreshing from storage are two sides fo the same coin.  When you
++Discarding changes and refreshing from storage are two sides of the same coin.  When you
+ want to discard your local changes, just re-fetch the row from storage.  When you want
+ to get a new, fresh copy of the row, just re-fetch the row from storage.
+ L<DBIx::Class::Row/discard_changes> does just that by re-fetching the row from storage
+diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod
+index 014ff38..47f55a4 100644
+--- a/lib/DBIx/Class/Manual/Cookbook.pod
++++ b/lib/DBIx/Class/Manual/Cookbook.pod
+@@ -1189,7 +1189,7 @@ building a renaming facility, like so:
+ 
+   1;
+ 
+-By overridding the L<connection|DBIx::Class::Schama/connection>
++By overriding the L<connection|DBIx::Class::Schama/connection>
+ method and extracting a custom option from the provided \%attr hashref one can
+ then simply iterate over all the Schema's ResultSources, renaming them as
+ needed.
+diff --git a/lib/DBIx/Class/Manual/Joining.pod b/lib/DBIx/Class/Manual/Joining.pod
+index 4bf3331..f7adf83 100644
+--- a/lib/DBIx/Class/Manual/Joining.pod
++++ b/lib/DBIx/Class/Manual/Joining.pod
+@@ -17,12 +17,12 @@ instead. Skip this part if you know what joins are..
+ But I'll explain anyway. Assuming you have created your database in a
+ more or less sensible way, you will end up with several tables that
+ contain C<related> information. For example, you may have a table
+-containing information about C<CD>s, containing the CD title and it's
++containing information about C<CD>s, containing the CD title and its
+ year of publication, and another table containing all the C<Track>s
+ for the CDs, one track per row.
+ 
+ When you wish to extract information about a particular CD and all
+-it's tracks, You can either fetch the CD row, then make another query
++its tracks, You can either fetch the CD row, then make another query
+ to fetch the tracks, or you can use a join. Compare:
+ 
+   SELECT ID, Title, Year FROM CD WHERE Title = 'Funky CD';
diff --git a/debian/patches/series b/debian/patches/series
index 9ac975e..d267a44 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1 @@
-fix-doc-typo.patch
+fix-doc-typos.patch

-- 
Debian packaging of libdbix-class-perl



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