Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/texlive/2011/texlive-core: 090_all_pdfoutput.patch series
Date: Sat, 30 Jul 2011 19:48:59
Message-Id: 20110730194847.7A37B2004B@flycatcher.gentoo.org
1 aballier 11/07/30 19:48:47
2
3 Modified: series
4 Added: 090_all_pdfoutput.patch
5 Log:
6 Add patch from upstream to fix off-by-one error causing pdftex not to default to pdf output... by Martin von Gagern in bug #374147
7
8 Revision Changes Path
9 1.2 src/patchsets/texlive/2011/texlive-core/series
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2011/texlive-core/series?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2011/texlive-core/series?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2011/texlive-core/series?r1=1.1&r2=1.2
14
15 Index: series
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/texlive/2011/texlive-core/series,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- series 28 Jul 2011 05:29:54 -0000 1.1
22 +++ series 30 Jul 2011 19:48:47 -0000 1.2
23 @@ -1,3 +1,4 @@
24 030_all_installedscripts.patch
25 040_all_texmfdirs.patch
26 080_all_a2ping_invocation.patch
27 +090_all_pdfoutput.patch
28
29
30
31 1.1 src/patchsets/texlive/2011/texlive-core/090_all_pdfoutput.patch
32
33 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2011/texlive-core/090_all_pdfoutput.patch?rev=1.1&view=markup
34 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2011/texlive-core/090_all_pdfoutput.patch?rev=1.1&content-type=text/plain
35
36 Index: 090_all_pdfoutput.patch
37 ===================================================================
38 https://bugs.gentoo.org/show_bug.cgi?id=374147
39
40 Index: texlive-20110705-source/texk/web2c/xetexdir/xetex.ch
41 ===================================================================
42 --- texlive-20110705-source.orig/texk/web2c/xetexdir/xetex.ch
43 +++ texlive-20110705-source/texk/web2c/xetexdir/xetex.ch
44 @@ -328,7 +328,7 @@ for i:=@'177 to @'377 do xchr[i]:=i;
45 {Initialize enc\TeX\ data.}
46 for i:=0 to 255 do mubyte_read[i]:=null;
47 for i:=0 to 255 do mubyte_write[i]:=0;
48 -for i:=0 to 128 do mubyte_cswrite[i]:=null;
49 +for i:=0 to 127 do mubyte_cswrite[i]:=null;
50 mubyte_keep := 0; mubyte_start := false;
51 write_noexpanding := false; cs_converting := false;
52 special_printing := false; message_printing := false;
53 Index: texlive-20110705-source/texk/web2c/enctex.ch
54 ===================================================================
55 --- texlive-20110705-source.orig/texk/web2c/enctex.ch
56 +++ texlive-20110705-source/texk/web2c/enctex.ch
57 @@ -42,14 +42,14 @@ for i:=@'177 to @'377 do xchr[i]:=i;
58 {Initialize enc\TeX\ data.}
59 for i:=0 to 255 do mubyte_read[i]:=null;
60 for i:=0 to 255 do mubyte_write[i]:=0;
61 -for i:=0 to 128 do mubyte_cswrite[i]:=null;
62 +for i:=0 to 127 do mubyte_cswrite[i]:=null;
63 mubyte_keep := 0; mubyte_start := false;
64 write_noexpanding := false; cs_converting := false;
65 special_printing := false; message_printing := false;
66 no_convert := false; active_noconvert := false;
67 @z
68
69 -@x [5.59] l.1508FIXME -- enc\TeX\ modifications of |print|.
70 +@x [5.59] l.1508 FIXME -- enc\TeX\ modifications of |print|.
71 else begin if selector>pseudo then
72 begin print_char(s); return; {internal strings are not expanded}
73 end;