Andreas Stieger
74a8dfe561
- fix factory builds, prevent build failures with pod2man: wireshark-1.10.0-authors-pod2man.patch wireshark-1.10.0-pod-characters.patch OBS-URL: https://build.opensuse.org/request/show/181206 OBS-URL: https://build.opensuse.org/package/show/network:utilities/wireshark?expand=0&rev=91
54 lines
2.5 KiB
Diff
54 lines
2.5 KiB
Diff
From: Andreas Stieger <andreas.stieger@gmx.de>
|
||
Date: Thu, 27 Jun 2013 21:02:17 +0100
|
||
Subject: [patch] prevent pod2man failures due to non-ASCII characters
|
||
References: http://anonsvn.wireshark.org/viewvc?view=revision&revision=49424
|
||
Upstream: submitted (different patch upstream but creates other errors)
|
||
|
||
Prevents the following error sue to weird whitespache characters in the file:
|
||
|
||
POD2MAN asn2deb.1
|
||
asn2deb.pod around line 8: Non-ASCII character seen before =encoding in '[-a?I<ASN.1'. Assuming ISO8859-1
|
||
POD document had syntax errors at /usr/bin/pod2man line 71.
|
||
make: *** [asn2deb.1] Error 255
|
||
|
||
POD2MAN idl2deb.1
|
||
idl2deb.pod around line 8: Non-ASCII character seen before =encoding in '[B<-d?>I<opts>]'. Assuming ISO8859-1
|
||
POD document had syntax errors at /usr/bin/pod2man line 71.
|
||
make: *** [idl2deb.1] Error 255
|
||
|
||
---
|
||
doc/asn2deb.pod | 4 ++--
|
||
doc/idl2deb.pod | 4 ++--
|
||
2 files changed, 4 insertions(+), 4 deletions(-)
|
||
|
||
Index: wireshark-1.10.0/doc/asn2deb.pod
|
||
===================================================================
|
||
--- wireshark-1.10.0.orig/doc/asn2deb.pod 2013-06-27 20:33:01.000000000 +0100
|
||
+++ wireshark-1.10.0/doc/asn2deb.pod 2013-06-27 20:33:42.000000000 +0100
|
||
@@ -5,8 +5,8 @@ asn2deb - Create a Debian package for BE
|
||
|
||
=head1 SYNOPSIS
|
||
|
||
-B<asn2deb> [-a I<ASN.1 file>] [--asn=I<ASN.1 file>] [B<-d >I<opts>] [B<--dbopts=>I<opts>] [B<-e >I<address>]
|
||
-[B<--email=>I<address>] [B<-h>] [B<--help>] [B<-n >I<name>] [B<--name=>I<name>] [B<-p>] [B<--preserve>] [B<-v>] [B<--version>]
|
||
+B<asn2deb> [-a I<ASN.1 file>] [--asn=I<ASN.1 file>] [B<-d >I<opts>] [B<--dbopts=>I<opts>] [B<-e >I<address>]
|
||
+[B<--email=>I<address>] [B<-h>] [B<--help>] [B<-n >I<name>] [B<--name=>I<name>] [B<-p>] [B<--preserve>] [B<-v>] [B<--version>]
|
||
|
||
=head1 DESCRIPTION
|
||
|
||
Index: wireshark-1.10.0/doc/idl2deb.pod
|
||
===================================================================
|
||
--- wireshark-1.10.0.orig/doc/idl2deb.pod 2013-06-27 20:33:01.000000000 +0100
|
||
+++ wireshark-1.10.0/doc/idl2deb.pod 2013-06-27 20:33:42.000000000 +0100
|
||
@@ -5,8 +5,8 @@ idl2deb - Create a Debian package for CO
|
||
|
||
=head1 SYNOPSIS
|
||
|
||
-B<idl2deb> [B<-d >I<opts>] [B<--dbopts=>I<opts>] [B<-e >I<address>] [B<--email=>I<address>] [-i I<idlfile>]
|
||
-[--idl=I<idlfile>] [B<-h>] [B<--help>] [B<-n >I<name>] [B<--name=>I<name>] [B<-p>] [B<--preserve>] [B<-v>] [B<--version>]
|
||
+B<idl2deb> [B<-d >I<opts>] [B<--dbopts=>I<opts>] [B<-e >I<address>] [B<--email=>I<address>] [-i I<idlfile>]
|
||
+[--idl=I<idlfile>] [B<-h>] [B<--help>] [B<-n >I<name>] [B<--name=>I<name>] [B<-p>] [B<--preserve>] [B<-v>] [B<--version>]
|
||
|
||
|
||
=head1 DESCRIPTION
|