r37752 - in /trunk/liblatex-encode-perl/debian: changelog control patches/ patches/add-pod-section-LaTeX::Encode::EncodingTable.patch patches/series rules

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Sun Jun 7 06:03:22 UTC 2009


Author: carnil-guest
Date: Sun Jun  7 06:01:44 2009
New Revision: 37752

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=37752
Log:
Add "minimal" pod to LateX::Encode::EncodingTable

Added:
    trunk/liblatex-encode-perl/debian/patches/
    trunk/liblatex-encode-perl/debian/patches/add-pod-section-LaTeX::Encode::EncodingTable.patch
    trunk/liblatex-encode-perl/debian/patches/series
Modified:
    trunk/liblatex-encode-perl/debian/changelog
    trunk/liblatex-encode-perl/debian/control
    trunk/liblatex-encode-perl/debian/rules

Modified: trunk/liblatex-encode-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-encode-perl/debian/changelog?rev=37752&op=diff
==============================================================================
--- trunk/liblatex-encode-perl/debian/changelog (original)
+++ trunk/liblatex-encode-perl/debian/changelog Sun Jun  7 06:01:44 2009
@@ -3,13 +3,7 @@
   fun with tests:
   1) t/01-filter..........Wide character in print at /usr/share/perl/5.10/Test/Builder.pm line 1246.
      no idea if this is a problem
-  2) all skipped: Test::Pod::Coverage 1.00 required for testing POD coverage
-     if I add libtest-pod-coverage-perl to B-D-I I get:
-     Failed test 'Pod coverage on LaTeX::Encode::EncodingTable'
-     which is no surprise since LaTeX::Encode::EncodingTable doesn't contain
-     any POD ...
-     
 
   * Initial Release. (Closes: #531761)
 
- -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sat, 06 Jun 2009 20:36:43 +0200
+ -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Sun, 07 Jun 2009 07:52:32 +0200

Modified: trunk/liblatex-encode-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-encode-perl/debian/control?rev=37752&op=diff
==============================================================================
--- trunk/liblatex-encode-perl/debian/control (original)
+++ trunk/liblatex-encode-perl/debian/control Sun Jun  7 06:01:44 2009
@@ -1,7 +1,7 @@
 Source: liblatex-encode-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 7.0.50)
+Build-Depends: debhelper (>= 7.0.50), quilt (>= 0.46-7)
 Build-Depends-Indep: perl (>= 5.6.0-12),
   libtest-pod-perl (>= 1.00),
   libtest-perl-critic-perl

Added: trunk/liblatex-encode-perl/debian/patches/add-pod-section-LaTeX::Encode::EncodingTable.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-encode-perl/debian/patches/add-pod-section-LaTeX%3A%3AEncode%3A%3AEncodingTable.patch?rev=37752&op=file
==============================================================================
--- trunk/liblatex-encode-perl/debian/patches/add-pod-section-LaTeX::Encode::EncodingTable.patch (added)
+++ trunk/liblatex-encode-perl/debian/patches/add-pod-section-LaTeX::Encode::EncodingTable.patch Sun Jun  7 06:01:44 2009
@@ -1,0 +1,68 @@
+Description: Add a short POD section to the LaTeX::Encode::EncodingTable
+ module to not fail on POD-Coverage test on build.
+Author: Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>
+Status of the patch: Integrated in liblatex-encode-perl 0.03-1
+--- a/lib/LaTeX/Encode/EncodingTable.pm
++++ b/lib/LaTeX/Encode/EncodingTable.pm
+@@ -266,3 +266,61 @@
+ $encoded_char_re = qr{ [$encoded_char_re] }x;
+ 
+ 1;
++__END__
++
++=head1 NAME
++
++LaTeX::Encode::EncodingTable - Encoding table for characters for LaTeX formatting
++
++=head1 SYNOPSIS
++
++  use LaTeX::Encode::EncodingTable;
++
++=head1 VERSION
++
++This manual page describes version 0.03 of the C<LaTeX::Encode::EncodingTable> module.
++
++
++=head1 DESCRIPTION
++
++This module provides the encoding table for characters for LaTeX formatting.
++
++=head1 DEPENDENCIES
++
++The C<HTML::Entities> and C<Pod::LaTeX> modules were used for building
++the encoding table in C<LaTeX::Encode::EncodingTable>, but this is not
++rebuilt at installation time.  The C<LaTeX::Driver> module is used for
++formatting the character encodings reference document.
++
++=head1 BUGS AND LIMITATIONS
++
++Not all LaTeX special characters are included in the encoding tables
++(more may be added when I track down the definitions).
++
++The C<use_textcomp> option is not implemented.
++
++=head1 AUTHOR
++
++Andrew Ford E<lt>a.ford at ford-mason.co.ukE<gt>
++
++=head1 LICENSE AND COPYRIGHT
++
++Copyright (C) 2007 Andrew Ford.  All Rights Reserved.
++
++This module is free software; you can redistribute it and/or
++modify it under the same terms as Perl itself.
++
++This software is distributed in the hope that it will be useful, but
++WITHOUT ANY WARRANTY; without even the implied warranty of
++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
++
++=head1 SEE ALSO
++
++L<Template::Plugin::Latex>
++
++=head1 NOTES ON MANPAGE
++
++This manual page was written for the Debian GNU/Linux distribution 
++because the original module does not have a manual page.
++
++=cut

Added: trunk/liblatex-encode-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-encode-perl/debian/patches/series?rev=37752&op=file
==============================================================================
--- trunk/liblatex-encode-perl/debian/patches/series (added)
+++ trunk/liblatex-encode-perl/debian/patches/series Sun Jun  7 06:01:44 2009
@@ -1,0 +1,1 @@
+add-pod-section-LaTeX::Encode::EncodingTable.patch

Modified: trunk/liblatex-encode-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/liblatex-encode-perl/debian/rules?rev=37752&op=diff
==============================================================================
--- trunk/liblatex-encode-perl/debian/rules (original)
+++ trunk/liblatex-encode-perl/debian/rules Sun Jun  7 06:01:44 2009
@@ -1,7 +1,7 @@
 #!/usr/bin/make -f
 
 %:
-	dh $@
+	dh --with-quilt $@
 
 override_dh_auto_test:
 	TEST_AUTHOR=1 dh_auto_test




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