Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/wget/files: wget-1.14-texi2pod.patch
Date: Mon, 04 Nov 2013 06:38:48
Message-Id: 20131104063844.86D4320005@flycatcher.gentoo.org
1 polynomial-c 13/11/04 06:38:44
2
3 Added: wget-1.14-texi2pod.patch
4 Log:
5 Fixed building with >=perl-5.18 (bug #484022)
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
8
9 Revision Changes Path
10 1.1 net-misc/wget/files/wget-1.14-texi2pod.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/files/wget-1.14-texi2pod.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/wget/files/wget-1.14-texi2pod.patch?rev=1.1&content-type=text/plain
14
15 Index: wget-1.14-texi2pod.patch
16 ===================================================================
17 Submitted By: Ken Moffat <ken at linuxfromscratch dot org>
18 Date: 2013-06-18
19 Initial Package Version: 1.14
20 Upstream Status: Submitted
21 Origin: Arch
22 Description: Build with perl-5.18.
23
24 http://lists.gnu.org/archive/html/bug-wget/2013-06/msg00046.html
25
26 From 2ed1707b5d8be66feb80cccfe8e11e719b52b99a Mon Sep 17 00:00:00 2001
27 From: Dave Reisner <dreisner@×××××××××.org>
28 Date: Mon, 17 Jun 2013 23:31:46 +0530
29 Subject: [PATCH] Fix error in texi2pod intriduced with Perl 5.18
30
31 ---
32
33 diff --git a/doc/texi2pod.pl b/doc/texi2pod.pl
34 index 86c4b18..9db6de1 100755
35 --- a/doc/texi2pod.pl
36 +++ b/doc/texi2pod.pl
37 @@ -291,7 +291,7 @@ while(<$inf>) {
38 if (defined $1) {
39 my $thing = $1;
40 if ($ic =~ /\@asis/) {
41 - $_ = "\n=item $thing\n";
42 + $_ = "\n=item C<$thing>\n";
43 } else {
44 # Entity escapes prevent munging by the <> processing below.
45 $_ = "\n=item $ic\&LT;$thing\&GT;\n";
46 --
47 1.8.3.1