[Reproducible-commits] [discount] 04/121: fix manpages errors patch

Jérémy Bobbio lunar at moszumanska.debian.org
Tue Sep 23 20:56:11 UTC 2014


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

lunar pushed a commit to branch pu/reproducible_builds
in repository discount.

commit 9b3996469c5b73cd120a63f111e66a20aa29dd77
Author: Alessandro Ghedini <al3xbio at gmail.com>
Date:   Sat Jan 15 12:52:17 2011 +0100

    fix manpages errors patch
---
 debian/patches/0001-fix-manpages-errors.patch   |  47 +++++
 debian/patches/0001-fix-manpages-warnings.patch | 250 ------------------------
 debian/patches/series                           |   2 +-
 3 files changed, 48 insertions(+), 251 deletions(-)

diff --git a/debian/patches/0001-fix-manpages-errors.patch b/debian/patches/0001-fix-manpages-errors.patch
new file mode 100644
index 0000000..75bf9e9
--- /dev/null
+++ b/debian/patches/0001-fix-manpages-errors.patch
@@ -0,0 +1,47 @@
+From: Alessandro Ghedini <al3xbio at gmail.com>
+Date: Sat, 15 Jan 2011 12:51:11 +0100
+Subject: [PATCH] fix manpages errors
+
+Fix manpages errors found by lintian
+---
+ markdown.1      |    2 +-
+ markdown.3      |    1 -
+ mkd-functions.3 |    2 +-
+ 3 files changed, 2 insertions(+), 3 deletions(-)
+
+diff --git a/markdown.1 b/markdown.1
+index f5e3949..6df0323 100644
+--- a/markdown.1
++++ b/markdown.1
+@@ -31,7 +31,7 @@ to stdout.
+ The options are as follows:
+ .Bl -tag -width "-o file"
+ .It Fl b Ar url-base
+-Links in source begining with / will be prefixed with
++Links in source beginning with / will be prefixed with
+ .Ar url-base
+ in the output.
+ .It Fl d
+diff --git a/markdown.3 b/markdown.3
+index 4a23ac8..042fcfd 100644
+--- a/markdown.3
++++ b/markdown.3
+@@ -133,4 +133,3 @@ created by
+ is deleted by the
+ .Nm
+ function.
+-
+diff --git a/mkd-functions.3 b/mkd-functions.3
+index 19dee7c..212b7b4 100644
+--- a/mkd-functions.3
++++ b/mkd-functions.3
+@@ -168,7 +168,7 @@ The functions
+ .Fn mkd_style ,
+ and
+ .Fn mkd_generatehtml
+-return 0 on success, -1 on failure.
++return 0 on success, \-1 on failure.
+ .Sh SEE ALSO
+ .Xr markdown 1 ,
+ .Xr markdown 3 ,
+-- 
diff --git a/debian/patches/0001-fix-manpages-warnings.patch b/debian/patches/0001-fix-manpages-warnings.patch
deleted file mode 100644
index c1b3ece..0000000
--- a/debian/patches/0001-fix-manpages-warnings.patch
+++ /dev/null
@@ -1,250 +0,0 @@
-From: Alessandro Ghedini <al3xbio at gmail.com>
-Date: Fri, 14 Jan 2011 18:19:23 +0100
-Subject: [PATCH] fix manpages warnings
-
-This patch fixes some errors in the manpages found by lintian
----
- markdown.1      |   14 +++++++-------
- markdown.3      |   29 ++++++++++++++---------------
- mkd-functions.3 |   18 +++++++++---------
- 3 files changed, 30 insertions(+), 31 deletions(-)
-
-diff --git a/markdown.1 b/markdown.1
-index f5e3949..98f9dcb 100644
---- a/markdown.1
-+++ b/markdown.1
-@@ -31,7 +31,7 @@ to stdout.
- The options are as follows:
- .Bl -tag -width "-o file"
- .It Fl b Ar url-base
--Links in source begining with / will be prefixed with
-+Links in source beginning with / will be prefixed with
- .Ar url-base
- in the output.
- .It Fl d
-@@ -62,12 +62,12 @@ Disable superscript, strikethrough & relaxed emphasis.
- .It Ar ext
- Enable pseudo-protocols.
- .It Ar cdata
--Generate code for xml 
-+Generate code for xml
- .Em ![CDATA[...]] .
- .It Ar superscript
- Enable superscript processing.
- .It Ar emphasis
--Emphasis happens 
-+Emphasis happens
- .Em everywhere .
- .It Ar tables
- Don't process PHP Markdown Extra tables.
-@@ -75,7 +75,7 @@ Don't process PHP Markdown Extra tables.
- Enable
- .Em ~~strikethrough~~ .
- .It Ar strikethrough
--Enable 
-+Enable
- .Em ~~strikethrough~~ .
- .It Ar toc
- Enable table-of-contents processing.
-@@ -113,7 +113,7 @@ Set translation flags.
- .Ar Bitmap
- is a bit map of the various configuration options
- described in
--.Xr markdown 3 
-+.Xr markdown 3
- (the flag values are defined in
- .Pa mkdio.h )
- .It Fl V
-@@ -132,12 +132,12 @@ was configured to use the specified tabstop.
- Show the version#, the compile-time configuration, and the
- run-time configuration.
- .It Fl o Pa file
--Write the generated html to 
-+Write the generated html to
- .Pa file .
- .It Fl t Ar text
- Use
- .Xr mkd_text 3
--to format 
-+to format
- .Ar text
- instead of processing stdin with the
- .Xr markdown 3
-diff --git a/markdown.3 b/markdown.3
-index 4a23ac8..ba37fb0 100644
---- a/markdown.3
-+++ b/markdown.3
-@@ -6,7 +6,7 @@
- .Nm markdown
- .Nd process Markdown documents
- .Sh LIBRARY
--Markdown 
-+Markdown
- .Pq libmarkdown , -lmarkdown
- .Sh SYNOPSIS
- .Fd #include <mkdio.h>
-@@ -28,15 +28,15 @@ processes a single string.
- .Pp
- To process a file, you pass a FILE* to
- .Fn mkd_in ,
--and if it returns a nonzero value you pass that in to 
-+and if it returns a nonzero value you pass that in to
- .Fn markdown ,
- which then writes the converted document to the specified
- .Em FILE* .
- If your input has already been written into a string (generated
--input or a file opened 
--with 
-+input or a file opened
-+with
- .Xr mmap 2 )
--you can feed that string to 
-+you can feed that string to
- .Fn mkd_string
- and pass its return value to
- .Fn markdown.
-@@ -46,24 +46,24 @@ accepts the following flag values (or-ed together if needed)
- to restrict how it processes input:
- .Bl -tag -width MKD_NOSTRIKETHROUGH -compact
- .It Ar MKD_NOLINKS
--Don't do link processing, block 
-+Don't do link processing, block
- .Em <a>
- tags.
- .It Ar MKD_NOIMAGE
- Don't do image processing, block
- .Em <img> .
- .It Ar MKD_NOPANTS
--Don't run 
-+Don't run
- .Em smartypants() .
- .It Ar MKD_NOHTML
- Don't allow raw html through AT ALL
- .It Ar MKD_STRICT
--Disable 
-+Disable
- superscript and relaxed emphasis.
- .It Ar MKD_TAGTEXT
--Process text inside an html tag; no 
-+Process text inside an html tag; no
- .Em <em> ,
--no 
-+no
- .Em <bold> ,
- no html or
- .Em []
-@@ -71,7 +71,7 @@ expansion.
- .It Ar MKD_NO_EXT
- Don't allow pseudo-protocols.
- .It Ar MKD_CDATA
--Generate code for xml 
-+Generate code for xml
- .Em ![CDATA[...]] .
- .It Ar MKD_NOSUPERSCRIPT
- Don't generate superscripts.
-@@ -79,14 +79,14 @@ Emphasis happens _everywhere_
- .It Ar MKD_NOTABLES
- Disallow tables.
- .It Ar MKD_NOSTRIKETHROUGH
--Forbid 
-+Forbid
- .Em ~~strikethrough~~ .
- .It Ar MKD_TOC
- Do table-of-contents processing.
- .It Ar MKD_1_COMPAT
- Compatibility with MarkdownTest_1.0
- .It Ar MKD_AUTOLINK
--Make 
-+Make
- .Em http://foo.com
- into a link even without
- .Em <> s.
-@@ -97,7 +97,7 @@ Don't process header blocks.
- .It Ar MKD_TABSTOP
- Expand tabs to 4 spaces.
- .It Ar MKD_NODIVQUOTE
--Forbid 
-+Forbid
- .Em >%class%
- blocks.
- .It Ar MKD_NOALPHALIST
-@@ -133,4 +133,3 @@ created by
- is deleted by the
- .Nm
- function.
--
-diff --git a/mkd-functions.3 b/mkd-functions.3
-index 19dee7c..b071cca 100644
---- a/mkd-functions.3
-+++ b/mkd-functions.3
-@@ -3,10 +3,10 @@
- .Dt MKD_FUNCTIONS 3
- .Os Mastodon
- .Sh NAME
--.Nm mkd_functions 
-+.Nm mkd_functions
- .Nd access and process Markdown documents.
- .Sh LIBRARY
--Markdown 
-+Markdown
- .Pq libmarkdown , -lmarkdown
- .Sh SYNOPSIS
- .Fd #include <mkdio.h>
-@@ -39,7 +39,7 @@ Markdown
- The
- .Nm markdown
- format supported in this implementation includes
--Pandoc-style header and inline 
-+Pandoc-style header and inline
- .Ar \<style\>
- blocks, and the standard
- .Xr markdown 3
-@@ -47,7 +47,7 @@ functions do not provide access to
- the data provided by either of those extensions.
- These functions give you access to that data, plus
- they provide a finer-grained way of converting
--.Em Markdown 
-+.Em Markdown
- documents into HTML.
- .Pp
- Given a
-@@ -91,7 +91,7 @@ to the text of the document and returns the
- size of the document,
- .Fn mkd_generatehtml
- writes the rest of the document to the output,
--and 
-+and
- .Fn mkd_doc_title ,
- .Fn mkd_doc_author ,
- .Fn mkd_doc_date
-@@ -126,7 +126,7 @@ accepts the same flags that
- .Fn markdown
- and
- .Fn mkd_string
--do; 
-+do;
- .Bl -tag -width MKD_NOSTRIKETHROUGH -compact
- .It Ar MKD_NOIMAGE
- Do not process `![]' and
-@@ -141,9 +141,9 @@ tags from the output.
- Do not do Smartypants-style mangling of quotes, dashes, or ellipses.
- .It Ar MKD_TAGTEXT
- Process the input as if you were inside a html tag.  This means that
--no html tags will be generated, and 
-+no html tags will be generated, and
- .Fn mkd_compile
--will attempt to escape anything that might terribly confuse a 
-+will attempt to escape anything that might terribly confuse a
- web browser.
- .It Ar MKD_NO_EXT
- Do not process any markdown pseudo-protocols when
-@@ -168,7 +168,7 @@ The functions
- .Fn mkd_style ,
- and
- .Fn mkd_generatehtml
--return 0 on success, -1 on failure.
-+return 0 on success, \-1 on failure.
- .Sh SEE ALSO
- .Xr markdown 1 ,
- .Xr markdown 3 ,
--- 
diff --git a/debian/patches/series b/debian/patches/series
index 5e8e5b1..c414e28 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1 @@
-0001-fix-manpages-warnings.patch
+0001-fix-manpages-errors.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/discount.git



More information about the Reproducible-commits mailing list