[libsearch-xapian-perl] 04/05: Wrap long SEE ALSO lists to fix warnings from man:
Olly Betts
olly at moszumanska.debian.org
Fri Sep 30 03:36:14 UTC 2016
This is an automated email from the git hooks/post-receive script.
olly pushed a commit to branch master
in repository libsearch-xapian-perl.
commit e3400cf43b46dda43f3820e93ef152b8511cfd1b
Author: Olly Betts <olly at survex.com>
Date: Fri Sep 30 16:29:04 2016 +1300
Wrap long SEE ALSO lists to fix warnings from man:
+ New patch: fix-long-see-also-lines.patch
+ debian/libsearch-xapian-perl.lintian-overrides: Drop, no longer needed.
---
debian/changelog | 3 +
debian/libsearch-xapian-perl.lintian-overrides | 2 -
debian/patches/fix-long-see-also-lines.patch | 147 +++++++++++++++++++++++++
debian/patches/series | 1 +
4 files changed, 151 insertions(+), 2 deletions(-)
diff --git a/debian/changelog b/debian/changelog
index c00c724..5675d36 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,9 @@ libsearch-xapian-perl (1.2.24.0-1) UNRELEASED; urgency=medium
* New upstream release:
+ Incorporates patch 0001-spelling-error-in-manpage.patch so drop.
* Version BD on libxapian-dev for xapian-core 1.4 transition.
+ * Wrap long SEE ALSO lists to fix warnings from man:
+ + New patch: fix-long-see-also-lines.patch
+ + debian/libsearch-xapian-perl.lintian-overrides: Drop, no longer needed.
-- gregor herrmann <gregoa at debian.org> Sat, 20 Aug 2016 03:22:29 +0200
diff --git a/debian/libsearch-xapian-perl.lintian-overrides b/debian/libsearch-xapian-perl.lintian-overrides
deleted file mode 100644
index 262a2bc..0000000
--- a/debian/libsearch-xapian-perl.lintian-overrides
+++ /dev/null
@@ -1,2 +0,0 @@
-# Ignore a long line in the Search::Xapian::MatchSpy manpage
-libsearch-xapian-perl: manpage-has-errors-from-man usr/share/man/man3/Search::Xapian::MatchSpy.3pm.gz 109: warning [p 1, 8.0i]: can't break line
diff --git a/debian/patches/fix-long-see-also-lines.patch b/debian/patches/fix-long-see-also-lines.patch
new file mode 100644
index 0000000..a54964a
--- /dev/null
+++ b/debian/patches/fix-long-see-also-lines.patch
@@ -0,0 +1,147 @@
+Description: Fix long SEE ALSO lines
+ Put a newline after each comma in the SEE ALSO lists, fixing warnings from
+ man such as:
+
+ <standard input>:109: warning [p 1, 8.0i]: can't break line
+Author: Olly Betts <olly at survex.com>
+Origin: upstream
+Forwarded: https://git.xapian.org/?p=xapian;a=commit;h=f12a81e444124e4365720369414d4851da20c32c
+Last-Update: 2016-09-30
+
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/BM25Weight.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/BM25Weight.pm
+@@ -55,6 +55,7 @@ Constructor. Either takes no parameters,
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Enquire>
++L<Search::Xapian>,
++L<Search::Xapian::Enquire>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/BoolWeight.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/BoolWeight.pm
+@@ -52,6 +52,7 @@ Constructor. Takes no arguments.
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Enquire>
++L<Search::Xapian>,
++L<Search::Xapian::Enquire>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/Database.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/Database.pm
+@@ -200,6 +200,8 @@ Get the number of elements indexed by a
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Enquire>,L<Search::Xapian::WritableDatabase>
++L<Search::Xapian>,
++L<Search::Xapian::Enquire>,
++L<Search::Xapian::WritableDatabase>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/MatchSpy.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/MatchSpy.pm
+@@ -52,6 +52,8 @@ Reimplemented in Xapian::ValueCountMatch
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::ValueCountMatchSpy>,L<Search::Xapian::PerlMatchSpy>
++L<Search::Xapian>,
++L<Search::Xapian::ValueCountMatchSpy>,
++L<Search::Xapian::PerlMatchSpy>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/PositionIterator.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/PositionIterator.pm
+@@ -128,6 +128,7 @@ Return a description of this object. Al
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Document>
++L<Search::Xapian>,
++L<Search::Xapian::Document>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/PostingIterator.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/PostingIterator.pm
+@@ -149,6 +149,7 @@ Return a description of this object.
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Database>
++L<Search::Xapian>,
++L<Search::Xapian::Database>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/TermIterator.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/TermIterator.pm
+@@ -122,7 +122,8 @@ as the C<ne> and C<!=> operators.
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Document>
++L<Search::Xapian>,
++L<Search::Xapian::Document>
+
+ =cut
+
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/TradWeight.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/TradWeight.pm
+@@ -56,6 +56,7 @@ If k isn't specified, the default value
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Enquire>
++L<Search::Xapian>,
++L<Search::Xapian::Enquire>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/ValueCountMatchSpy.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/ValueCountMatchSpy.pm
+@@ -92,6 +92,7 @@ End iterator corresponding to top_values
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::MatchSpy>
++L<Search::Xapian>,
++L<Search::Xapian::MatchSpy>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/ValueIterator.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/ValueIterator.pm
+@@ -106,6 +106,7 @@ as the C<ne> and C<!=> operators.
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Document>
++L<Search::Xapian>,
++L<Search::Xapian::Document>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/Weight.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/Weight.pm
+@@ -21,6 +21,8 @@ This is an abstract base class for weigh
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::BoolWeight>,L<Search::Xapian::BM25Weight>
++L<Search::Xapian>,
++L<Search::Xapian::BoolWeight>,
++L<Search::Xapian::BM25Weight>
+
+ =cut
+--- libsearch-xapian-perl-1.2.24.0.orig/Xapian/WritableDatabase.pm
++++ libsearch-xapian-perl-1.2.24.0/Xapian/WritableDatabase.pm
+@@ -208,6 +208,8 @@ progress.
+
+ =head1 SEE ALSO
+
+-L<Search::Xapian>,L<Search::Xapian::Enquire>,L<Search::Xapian::Database>
++L<Search::Xapian>,
++L<Search::Xapian::Enquire>,
++L<Search::Xapian::Database>
+
+ =cut
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..ecca6ef
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+fix-long-see-also-lines.patch
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libsearch-xapian-perl.git
More information about the Pkg-perl-cvs-commits
mailing list