[DRE-commits] [SCM] ruby-ascii85.git branch, master, updated. upstream/1.0.1-6-g4eb4ec0

Cédric Boutillier cedric.boutillier at gmail.com
Fri Sep 2 21:57:29 UTC 2011


The following commit has been merged in the master branch:
commit 44ea695cc4ea65c86db64157d7c3346dd59942cb
Author: Cédric Boutillier <cedric.boutillier at gmail.com>
Date:   Fri Sep 2 22:51:47 2011 +0200

    manpage and upstream changelog

diff --git a/debian/ascii85.1.pod b/debian/ascii85.1.pod
new file mode 100644
index 0000000..edde96f
--- /dev/null
+++ b/debian/ascii85.1.pod
@@ -0,0 +1,49 @@
+=encoding UTF-8
+
+=head1 NAME
+
+ascii85 - encodes or decodes files using Ascii85 ruby library
+
+=head1 SYNOPSIS
+
+B<ascii85> [I<OPTIONS>] I<FILES>
+
+=head1 DESCRIPTION
+
+Ascii85 (also called "Base85") is a form of binary-to-text encoding, wich is
+mainly used in Adobe's PostScript and PDF format. 
+
+B<ascii85> is a command line utility, modeled after base64(1) from the GNU
+coreutils, can encode text files to Ascii85 or decode Ascii85 files to text,
+and then print the result to the standard output.
+
+If no file is given on the command line, B<ascii85> reads from the standard input.
+
+=head1 OPTIONS
+
+=over
+
+=item   B<-w>, B<--wrap> COLUMN
+
+Wrap lines at COLUMN. Default is 80, use 0 for no wrapping
+
+=item B<-d>, B<--decode>
+
+Decode the input
+
+=item B<-h>, B<--help>
+
+Display a usage message and exit
+
+=item B<--version>
+
+Output version information
+
+=back
+
+=head1 AUTHORS
+
+B<ascii85> has been developed by Johannes Holzfuß. 
+
+This manual page has been written for the Debian Project by Cédric Boutillier (but
+may used by others). 
diff --git a/debian/ruby-ascii85.manpages b/debian/ruby-ascii85.manpages
new file mode 100644
index 0000000..2e3860f
--- /dev/null
+++ b/debian/ruby-ascii85.manpages
@@ -0,0 +1 @@
+man/ascii85.1
diff --git a/debian/rules b/debian/rules
index a5e7dc8..f486267 100755
--- a/debian/rules
+++ b/debian/rules
@@ -13,3 +13,16 @@
 
 %:
 	dh $@ --buildsystem=ruby --with ruby
+
+override_dh_installman:
+	mkdir man
+	pod2man --center "" --release "" --name ASCII85 --utf8 debian/ascii85.1.pod man/ascii85.1
+	dh_installman
+
+override_dh_auto_clean:
+	rm -rf man
+	dh_auto_clean
+
+
+override_dh_installchangelogs:
+	dh_installchangelogs History.txt

-- 
ruby-ascii85.git



More information about the Pkg-ruby-extras-commits mailing list