[libdbd-xbase-perl] 10/13: Refresh patches.

gregor herrmann gregoa at debian.org
Mon Mar 7 22:54:08 UTC 2016


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository libdbd-xbase-perl.

commit 4c4d517930ba63ae2a64b8a5b71e39fac76b2fbf
Author: gregor herrmann <gregoa at debian.org>
Date:   Mon Mar 7 23:45:04 2016 +0100

    Refresh patches.
---
 debian/patches/pod_spelling.patch   | 74 ++++++++++++++++++++++++++++++++++---
 debian/patches/underline-dump.patch | 15 +++++---
 2 files changed, 77 insertions(+), 12 deletions(-)

diff --git a/debian/patches/pod_spelling.patch b/debian/patches/pod_spelling.patch
index f39ed43..386e80c 100644
--- a/debian/patches/pod_spelling.patch
+++ b/debian/patches/pod_spelling.patch
@@ -1,6 +1,12 @@
-# Description: fix some spelling errors
-# Author: Damyan Ivanov <dmn at debian.org>
-# Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=70613
+Description: fix some spelling errors
+Origin: vendor
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=70613
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=70613 (though not this version)
+Author: Damyan Ivanov <dmn at debian.org>
+Reviewed-by: gregor herrmann <gregoa at debian.org>
+Last-Update: 2016-03-07
+Applied-Upstream: *** FIXME ***
+
 --- a/lib/DBD/XBase.pm
 +++ b/lib/DBD/XBase.pm
 @@ -156,7 +156,7 @@
@@ -12,7 +18,7 @@
  sub commit {
  	warn "Commit ineffective while AutoCommit is on"
  		if $_[0]->FETCH('Warn');
-@@ -678,7 +678,7 @@
+@@ -676,7 +676,7 @@
  functions I want to support. It's easy to write them in a couple of
  minutes now the interface is there (check the XBase::SQL module if you
  want to send a patch containing support for more), it's just that I do
@@ -23,7 +29,7 @@
  The select command may contain and order by clause. Only one column is
 --- a/lib/XBase.pm
 +++ b/lib/XBase.pm
-@@ -1047,7 +1047,7 @@
+@@ -1052,7 +1052,7 @@
  B<memofile> specifies non standard name for the associated memo file.
  By default it's the name of the dbf file, with extension dbt or fpt.
  
@@ -32,7 +38,7 @@
  the dbt file and you do not need it. Default is false.
  
  B<memosep> separator of memo records in the dBase III dbt files. The
-@@ -1193,7 +1193,7 @@
+@@ -1198,7 +1198,7 @@
  
  =back
  
@@ -41,6 +47,24 @@
  or B<undelete_record> with record number as a parameter.
  
  Assorted examples of reading and writing:
+@@ -1238,7 +1238,7 @@
+ The first parameter is the file name of the index file, the rest is
+ as above. For index types that can hold more index structures in on
+ file, use arrayref instead of the file name and in that array include
+-file name and the tag name, and optionaly the index type.
++file name and the tag name, and optionally the index type.
+ The B<fetch> will then return records in the ascending order,
+ according to the index.
+ 
+@@ -1291,7 +1291,7 @@
+     }
+ 
+ The second example shows that after you have done B<find_eq>, the
+-B<fetch>es continue untill the end of the index, so you have to check
++B<fetch>es continue until the end of the index, so you have to check
+ whether you are still on records with given value. And if there is no
+ record with value 1097 in the indexed field, you will just get the
+ next record in the order.
 --- a/lib/XBase/Base.pm
 +++ b/lib/XBase/Base.pm
 @@ -353,7 +353,7 @@
@@ -54,6 +78,24 @@
  =back
 --- a/lib/XBase/FAQ.pod
 +++ b/lib/XBase/FAQ.pod
+@@ -34,7 +34,7 @@
+ 
+ The only possible format in which you can get the date and that the
+ module expect for inserts and updates is a 8 char string 'YYYYMMDD'.
+-It is not possible to change this format. I prefer to do the formating
++It is not possible to change this format. I prefer to do the formatting
+ myself since you have more control over it.
+ 
+ =item The C<get_record> also returns deleted records. Why?
+@@ -50,7 +50,7 @@
+ That's correct: B<DBD::XBase> only gives you records that are positively
+ in the file and not deleted. Which shows that B<XBase.pm> is a lower
+ level tool because you can touch records that are marked deleted, while
+-B<DBD::XBase> is higher level -- it gives you SQL interface and let's you
++B<DBD::XBase> is higher level -- it gives you SQL interface and lets you
+ work with the file more naturaly (what is deleted should stay
+ deleted).
+ 
 @@ -116,7 +116,7 @@
  =item Can I sue you if B<XBase.pm/DBD::XBase> corrupts my data?
  
@@ -65,6 +107,15 @@
  that the results are different from those expected, you are welcome to
 --- a/lib/XBase/Index.pm
 +++ b/lib/XBase/Index.pm
+@@ -1757,7 +1757,7 @@
+   cdx	Yes		Yes		Untested
+ 
+ 
+-  Writing of index files -- not supported untill the reading
++  Writing of index files -- not supported until the reading
+   is stable enough.
+ 
+ So if you have access to an index file that is untested or unsupported
 @@ -1781,7 +1781,7 @@
  
  =head2 Programmer's notes
@@ -74,3 +125,14 @@
  to debug XBase::Index from their files:
  
  The XBase::Index module contains the basic XBase::Index package and
+--- a/lib/XBase/Memo.pm
++++ b/lib/XBase/Memo.pm
+@@ -303,7 +303,7 @@
+ .dbt, .fpt and .smt (code for this provided by Dirk Tostmann).
+ Package XBase::Memo defines methods B<read_header> to parse that header
+ of the file and set object's structures, B<write_record> and
+-B<last_record> to write the records properly formated and find the end
++B<last_record> to write the records properly formatted and find the end
+ of file.
+ 
+ There are four separate subpackages in XBase::Memo, dBaseIII, dBaseIV,
diff --git a/debian/patches/underline-dump.patch b/debian/patches/underline-dump.patch
index da246d0..d9423d4 100644
--- a/debian/patches/underline-dump.patch
+++ b/debian/patches/underline-dump.patch
@@ -1,7 +1,10 @@
-# Description: rename dbfdump to dbf_dump following the rename in Debian (due
-#  to #274792)
-# Author: Gregor Herrmann <gregoa at debian.org>
-# Forwarded: not-needed
+Description: rename dbfdump to dbf_dump following the rename in Debian
+ (due to #274792)
+Origin: vendor
+Author: gregor herrmann <gregoa at debian.org>
+Forwarded: not-needed
+Last-Update: 2016-03-07
+
 --- a/README
 +++ b/README
 @@ -48,7 +48,7 @@
@@ -145,7 +148,7 @@
  plain field name, chances are that XBase.pm won't be able to recognize
 --- a/lib/XBase.pm
 +++ b/lib/XBase.pm
-@@ -1341,7 +1341,7 @@
+@@ -1346,7 +1346,7 @@
      $table->dump_records("fs" => " | ", "rs" => " <-+\n",
  			"fields" => [ "id", "msg" ]);'
  
@@ -154,7 +157,7 @@
  
  =head2 Errors and debugging
  
-@@ -1427,7 +1427,7 @@
+@@ -1432,7 +1432,7 @@
  =head1 SEE ALSO
  
  perl(1); XBase::FAQ(3); DBD::XBase(3) and DBI(3) for DBI interface;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdbd-xbase-perl.git



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