Gentoo Archives: gentoo-commits

From: "Matthias Maier (tamiko)" <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/gcc/5.4.0/gentoo: 91_all_compatibility_fix_with_perl_5.26.patch README.history
Date: Sun, 06 Aug 2017 14:51:43
Message-Id: 20170806145139.DF6B275EB@oystercatcher.gentoo.org
1 tamiko 17/08/06 14:51:39
2
3 Modified: README.history
4 Added: 91_all_compatibility_fix_with_perl_5.26.patch
5 Log:
6 5.4.0 gentoo patchset 1.4
7
8 Revision Changes Path
9 1.5 src/patchsets/gcc/5.4.0/gentoo/README.history
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?rev=1.5&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?rev=1.5&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history?r1=1.4&r2=1.5
14
15 Index: README.history
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/gcc/5.4.0/gentoo/README.history,v
18 retrieving revision 1.4
19 retrieving revision 1.5
20 diff -u -r1.4 -r1.5
21 --- README.history 1 Feb 2017 22:59:49 -0000 1.4
22 +++ README.history 6 Aug 2017 14:51:39 -0000 1.5
23 @@ -1,3 +1,6 @@
24 +1.4 06 Aug 2017
25 + + 91_all_compatibility_fix_with_perl_5.26.patch
26 +
27 1.3 01 Feb 2017
28 + 71_all_gcc-5-march-native-pr67310.patch
29 + 78_all_gcc-5-pr71442
30
31
32
33 1.1 src/patchsets/gcc/5.4.0/gentoo/91_all_compatibility_fix_with_perl_5.26.patch
34
35 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/91_all_compatibility_fix_with_perl_5.26.patch?rev=1.1&view=markup
36 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gcc/5.4.0/gentoo/91_all_compatibility_fix_with_perl_5.26.patch?rev=1.1&content-type=text/plain
37
38 Index: 91_all_compatibility_fix_with_perl_5.26.patch
39 ===================================================================
40 https://bugs.gentoo.org/show_bug.cgi?id=620164
41
42 Unescaped left brace in regex is now a fatal error.
43
44
45 diff -ruN gcc-5.4.0.orig/contrib/texi2pod.pl gcc-5.4.0/contrib/texi2pod.pl
46 --- gcc-5.4.0.orig/contrib/texi2pod.pl 2014-08-11 09:29:41.000000000 +0200
47 +++ gcc-5.4.0/contrib/texi2pod.pl 2017-05-29 20:03:29.763162185 +0200
48 @@ -316,7 +316,7 @@
49 @columns = ();
50 for $column (split (/\s*\@tab\s*/, $1)) {
51 # @strong{...} is used a @headitem work-alike
52 - $column =~ s/^\@strong{(.*)}$/$1/;
53 + $column =~ s/^\@strong\{(.*)}$/$1/;
54 push @columns, $column;
55 }
56 $_ = "\n=item ".join (" : ", @columns)."\n";
57 diff -ruN gcc-5.4.0.orig/libjava/classpath/doc/texi2pod.pl gcc-5.4.0/libjava/classpath/doc/texi2pod.pl
58 --- gcc-5.4.0.orig/libjava/classpath/doc/texi2pod.pl 2007-06-04 01:18:43.000000000 +0200
59 +++ gcc-5.4.0/libjava/classpath/doc/texi2pod.pl 2017-05-29 20:04:45.912165337 +0200
60 @@ -311,7 +311,7 @@
61 @columns = ();
62 for $column (split (/\s*\@tab\s*/, $1)) {
63 # @strong{...} is used a @headitem work-alike
64 - $column =~ s/^\@strong{(.*)}$/$1/;
65 + $column =~ s/^\@strong\{(.*)}$/$1/;
66 push @columns, $column;
67 }
68 $_ = "\n=item ".join (" : ", @columns)."\n";