[libfont-ttf-scripts-perl] 04/08: patch for manpage-has-bad-whatis-entry - additional POD content

Daniel Glassey wdg at moszumanska.debian.org
Mon Nov 9 20:25:41 UTC 2015


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

wdg pushed a commit to branch master
in repository libfont-ttf-scripts-perl.

commit 873ad9a75b40c3b0b6048ab37c3371e1a4101968
Author: Daniel Glassey <wdg at debian.org>
Date:   Mon Nov 9 10:57:29 2015 +0000

    patch for manpage-has-bad-whatis-entry - additional POD content
---
 debian/changelog              |   3 +-
 debian/patches/manpages.patch | 219 ++++++++++++++++++++++++++++++++++++++++++
 debian/patches/series         |   1 +
 3 files changed, 221 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 540f458..0d7bc33 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,7 @@
 libfont-ttf-scripts-perl (1.05-1) UNRELEASED; urgency=low
 
   TODO:
-  - quite a few lintian messages: spelling-error-in-manpage (patch needed),
-    manpage-has-bad-whatis-entry (patch)
+  - quite a few lintian messages: spelling-error-in-manpage (patch needed)
   - I hope the files installed into /usr/bin don't clash with anything, they
     all sound a bit generic ... and, hm, maybe the package should be named
     font-ttf-scripts (if the scripts are more important than the modules) ...
diff --git a/debian/patches/manpages.patch b/debian/patches/manpages.patch
new file mode 100644
index 0000000..d134454
--- /dev/null
+++ b/debian/patches/manpages.patch
@@ -0,0 +1,219 @@
+Description: additional POD for manpages
+Author: Daniel Glassey <wdg at debian.org>
+
+--- a/scripts/ttf2volt
++++ b/scripts/ttf2volt
+@@ -1719,6 +1719,46 @@
+ 
+ #])}
+ 
++=head1 NAME
++
++ttf2volt - create VOLT project from existing OpenType font file
++
++=head1 SYNOPSIS
++
++  ttf2volt [options] infontfile [outfontfile]
++
++Creates a VOLT project from an existing OpenType font file.
++
++=head1 OPTIONS
++
++  -a        allow non-adobe glyph names
++  -g n      group creation threshold
++  -l file   emit log messages to named file
++  -r        retain GPOS, GSUB, and GDEF tables in output font
++  -s        do not send warnings to stdout (will still go to log)
++  -t file   name of replacement VOLT tags file if needed.
++  -v file   Volt project source (.vtp) file to create
++
++=head1 DESCRIPTION
++
++Attempts to create a VOLT project from an existing OpenType font by reading and
++interpreting the existing GDEF, GPOS, and GSUB tables. Not every OpenType
++rule can be mimiced in VOLT; warnings are issued when ttf2volt cannot
++handle something.
++
++In normal usage, specify either outfontfile (to create a font
++ready to be opened by VOLT) and/or the -v option (to create a
++VOLT project source that can be imported into the font).
++    
++The group creation threshold option sets the minimum number of glyphs
++that ttf2volt will put into a group for the purposes of building
++a lookup.
++
++Lookups currently supported  (type[.format]):
++
++GSUB:   1 2 3 4   6.3
++GPOS    1 2 3 4 5     8.3
++
+ =head1 AUTHOR
+ 
+ Martin Hosken L<http://scripts.sil.org/FontUtils>.
+--- a/scripts/ttfbboxfix
++++ b/scripts/ttfbboxfix
+@@ -79,6 +79,25 @@
+ 
+ $f->out($ARGV[1]) if $ARGV[1];
+ 
++=head1 NAME
++
++ttfbboxfix - re-calculates bounding boxes for all glyphs in a font
++
++=head1 SYNOPSIS
++
++  ttfbboxfix [-v] in.ttf [out.ttf]
++
++Re-calculates bounding boxes for all glyphs in a font.
++
++=head1 OPTIONS
++
++  -v verbose output to stdout
++
++=head1 DESCRIPTION
++
++Re-calculates bounding boxes for all glyphs in a font. 
++if <outfile> is provided, rewrite corrected font.
++
+ =head1 AUTHOR
+ 
+ Martin Hosken L<http://scripts.sil.org/FontUtils>.
+--- a/scripts/typetuner
++++ b/scripts/typetuner
+@@ -1298,6 +1298,59 @@
+ 
+ cmd_line_exec(@ARGV);
+ 
++=head1 NAME
++
++typetuner - create fonts which users can then alter (also using TypeTuner) to 
++            change default glyphs and behaviors.
++
++=head1 SYNOPSIS
++
++	typetuner -x <xml> <ttf> (create settings xml file from ttf)
++	typetuner <xml> <ttf> (apply settings xml file to ttf)
++	
++	or typetuner [<switches>] <command> [files, ...]
++
++Enables font developers to create fonts which users can then alter
++(also using TypeTuner) to change default glyphs and behaviors.
++
++=head1 OPTIONS
++
++  -h - help via the usage message
++  -d - debug output
++  -f - for add & extract subcommands, don't check whether proper element at start of file
++  -t - output feat_set.xml file with all settings at non-default values for testing TypeTuner
++  -m - maximum length of featset suffix for font name
++  -n - string to use a suffix at end of font name instead of featset string
++  -o - name for output font file instead of generating by appending _tt
++  -v - version number (bypasses adding featset suffix to the version)
++  -x - for simplified command line, call createset
++
++=head1 DESCRIPTION
++
++usage: 
++	TypeTuner -x <xml> <ttf> (create settings xml file from ttf)
++	TypeTuner <xml> <ttf> (apply settings xml file to ttf)
++	
++	or TypeTuner [<switches>] <command> [files, ...]
++	
++switches:
++	-m	specify maximum length of generated font name suffix
++	-n	specify font name suffix instead of using generated one
++	-o	specify output font.ttf file name
++
++commands:
++	createset <font.ttf | feat_all.xml> feat_set.xml 
++	
++	setmetrics font_old.ttf feat_set.xml
++	
++	applyset     feat_set.xml font.ttf
++	applyset_xml feat_all.xml feat_set.xml font.ttf
++	
++	extract font.ttf feat_set.xml
++	add     feat_all.xml font.ttf
++	delete  font.ttf
++
++
+ =head1 AUTHOR
+ 
+ Alan Ward L<http://scripts.sil.org/FontUtils>.
+--- a/lib/Font/TTF/Scripts/Thai.pm
++++ b/lib/Font/TTF/Scripts/Thai.pm
+@@ -477,6 +477,11 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Font::TTF::Scripts::Thai - handling of legacy (non-Unicode) Thai fonts
++
++
+ =head1 AUTHOR
+ 
+ Martin Hosken L<http://scripts.sil.org/FontUtils>. 
+@@ -488,4 +493,4 @@
+ This module is released under the terms of the Artistic License 2.0.
+ For details, see the full text of the license in the file LICENSE.
+ 
+-=cut
+\ No newline at end of file
++=cut
+--- a/lib/Font/TTF/Scripts/Fea.pm
++++ b/lib/Font/TTF/Scripts/Fea.pm
+@@ -250,6 +250,11 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Font::TTF::Scripts::Fea - Creates font specific AFDKO fea source file from 
++                          a font and optional attachment point database
++
+ =head1 See also
+ 
+ L<Font::TTF::Scripts::AP>
+--- a/lib/Font/TTF/Scripts/GDL.pm
++++ b/lib/Font/TTF/Scripts/GDL.pm
+@@ -435,6 +435,12 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Font::TTF::Scripts::GDL - create GDL (Graphite Description Language) from a
++                          TrueType font
++
++
+ =head1 AUTHOR
+ 
+ Martin Hosken L<http://scripts.sil.org/FontUtils>. 
+--- a/lib/Font/TTF/Scripts/Name.pm
++++ b/lib/Font/TTF/Scripts/Name.pm
+@@ -111,6 +111,10 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Font::TTF::Scripts::Name - set name of font
++
+ 
+ =head1 AUTHOR
+ 
+--- a/lib/Font/TTF/Scripts/Deflang.pm
++++ b/lib/Font/TTF/Scripts/Deflang.pm
+@@ -59,6 +59,11 @@
+ 
+ 1;
+ 
++=head1 NAME
++
++Font::TTF::Scripts::Deflang - Creates a font with the given language id as being default.
++
++
+ =head1 AUTHOR
+ 
+ Martin Hosken L<http://scripts.sil.org/FontUtils>. 
diff --git a/debian/patches/series b/debian/patches/series
index 255d574..9bd3f17 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 examples.patch
 tests.patch
+manpages.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libfont-ttf-scripts-perl.git



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