[SCM] Debian packaging of libppix-editortools-perl branch, master, updated. 290e132558a0927b24e1f5108eb959c6b76963d2

Florian Schlichting fschlich at zedat.fu-berlin.de
Thu Mar 8 14:14:08 UTC 2012


The following commit has been merged in the master branch:
commit ef457f537bacf993eb667613a03ab7e411ac8f85
Author: Florian Schlichting <fschlich at zedat.fu-berlin.de>
Date:   Thu Mar 8 15:06:35 2012 +0100

    added manpage-has-bad-whatis-entry.patch

diff --git a/debian/changelog b/debian/changelog
index 5311bcf..3780074 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,6 @@
 libppix-editortools-perl (0.15-1) UNRELEASED; urgency=low
 
   [ Fabrizio Regalli ]
-  TODO:
-  - lintian: several manpage-has-bad-whatis-entry warnings
-
   * New upstream release.
   * Added myself to Uploaders and copyright.
 
@@ -16,6 +13,7 @@ libppix-editortools-perl (0.15-1) UNRELEASED; urgency=low
 
   [ Florian Schlichting ]
   * Added build-dependency on Test::More 0.88.
+  * Added manpage-has-bad-whatis-entry.patch.
 
  -- Florian Schlichting <fschlich at zedat.fu-berlin.de>  Thu, 08 Mar 2012 14:36:10 +0100
 
diff --git a/debian/patches/manpage-has-bad-whatis-entry.patch b/debian/patches/manpage-has-bad-whatis-entry.patch
new file mode 100644
index 0000000..0a09657
--- /dev/null
+++ b/debian/patches/manpage-has-bad-whatis-entry.patch
@@ -0,0 +1,139 @@
+Description: fix manpage-has-bad-whatis-entry lintian warning
+ PPIx-EditorTools 0.15 reorganized the POD and lost the NAME section
+ for all modules. When converted to a manpage, this section is used
+ for indexing and thus should exist everywhere.
+ .
+ Apparently, current upstream SVN contains these sections so not forwarded.
+Author: Florian Schlichting <fschlich at zedat.fu-berlin.de>
+Forwarded: not-needed
+
+--- a/lib/PPIx/EditorTools.pm
++++ b/lib/PPIx/EditorTools.pm
+@@ -18,6 +18,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools - Utility methods and base class for manipulating Perl via PPI
++
+ =head1 SYNOPSIS
+ 
+     See PPIx::EditorTools::*
+--- a/lib/PPIx/EditorTools/FindUnmatchedBrace.pm
++++ b/lib/PPIx/EditorTools/FindUnmatchedBrace.pm
+@@ -16,6 +16,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::FindUnmatchedBrace - PPI-based unmatched-brace-finder
++
+ =head1 SYNOPSIS
+ 
+   my $brace = PPIx::EditorTools::FindUnmatchedBrace->new->find(
+--- a/lib/PPIx/EditorTools/FindVariableDeclaration.pm
++++ b/lib/PPIx/EditorTools/FindVariableDeclaration.pm
+@@ -14,6 +14,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::FindVariableDeclaration - inds where a variable was declared using PPI
++
+ =head1 SYNOPSIS
+ 
+   # finds declaration of variable at cursor
+--- a/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm
++++ b/lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm
+@@ -19,6 +19,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::IntroduceTemporaryVariable - Introduces a temporary variable using PPI
++
+ =head1 SYNOPSIS
+ 
+     my $munged = PPIx::EditorTools::IntroduceTemporaryVariable->new->introduce(
+--- a/lib/PPIx/EditorTools/Lexer.pm
++++ b/lib/PPIx/EditorTools/Lexer.pm
+@@ -16,6 +16,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::Lexer - Simple Lexer used for syntax highlighting
++
+ =head1 SYNOPSIS
+ 
+   PPIx::EditorTools::Lexer->new->lexer(
+--- a/lib/PPIx/EditorTools/Outline.pm
++++ b/lib/PPIx/EditorTools/Outline.pm
+@@ -16,6 +16,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::Outline - Collect use pragmata, modules, subroutiones, methods, attributes
++
+ =head1 SYNOPSIS
+ 
+   my $outline = PPIx::EditorTools::Outline->new->find(
+--- a/lib/PPIx/EditorTools/RenamePackage.pm
++++ b/lib/PPIx/EditorTools/RenamePackage.pm
+@@ -18,6 +18,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::RenamePackage - Change the package name
++
+ =head1 SYNOPSIS
+ 
+     my $munged = PPIx::EditorTools::RenamePackage->new->rename(
+--- a/lib/PPIx/EditorTools/RenamePackageFromPath.pm
++++ b/lib/PPIx/EditorTools/RenamePackageFromPath.pm
+@@ -22,6 +22,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::RenamePackageFromPath -Change the package name based on the files path
++
+ =head1 SYNOPSIS
+ 
+     my $munged = PPIx::EditorTools::RenamePackageFromPath->new->rename(
+--- a/lib/PPIx/EditorTools/RenameVariable.pm
++++ b/lib/PPIx/EditorTools/RenameVariable.pm
+@@ -14,6 +14,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::RenameVariable - Lexically replace a variable name in Perl code
++
+ =head1 SYNOPSIS
+ 
+     my $munged = PPIx::EditorTools::RenameVariable->new->rename(
+--- a/lib/PPIx/EditorTools/ReturnObject.pm
++++ b/lib/PPIx/EditorTools/ReturnObject.pm
+@@ -11,6 +11,10 @@
+ 
+ =pod
+ 
++=head1 NAME
++
++PPIx::EditorTools::ReturnObject - Simple object to return values from PPIx::EditorTools
++
+ =head1 SYNOPSIS
+ 
+   my $brace = PPIx::EditorTools::FindUnmatchedBrace->new->find(
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..065a8f5
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+manpage-has-bad-whatis-entry.patch

-- 
Debian packaging of libppix-editortools-perl



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