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/2016/texlive-core: 050_all_latex2man_predictable_tmp.patch 060_all_luatex_zlib.patch series
Date: Wed, 08 Feb 2017 17:20:58
Message-Id: 20170208172054.5B9CA3DC0@oystercatcher.gentoo.org
1 aballier 17/02/08 17:20:54
2
3 Modified: 050_all_latex2man_predictable_tmp.patch series
4 Added: 060_all_luatex_zlib.patch
5 Log:
6 Add patch for bug #605766
7
8 Revision Changes Path
9 1.2 src/patchsets/texlive/2016/texlive-core/050_all_latex2man_predictable_tmp.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/050_all_latex2man_predictable_tmp.patch?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/050_all_latex2man_predictable_tmp.patch?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/050_all_latex2man_predictable_tmp.patch?r1=1.1&r2=1.2
14
15 Index: 050_all_latex2man_predictable_tmp.patch
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo/src/patchsets/texlive/2016/texlive-core/050_all_latex2man_predictable_tmp.patch,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- 050_all_latex2man_predictable_tmp.patch 20 Jan 2017 13:36:23 -0000 1.1
22 +++ 050_all_latex2man_predictable_tmp.patch 8 Feb 2017 17:20:54 -0000 1.2
23 @@ -8,7 +8,7 @@
24 +++ texlive-20160523-source/texmf-dist/scripts/latex2man/latex2man
25 @@ -29,8 +29,6 @@ sub date2str;
26 $VERSION = "1.24";
27 - $DATE = date2str ('$Date: 2017/01/20 13:36:23 $' =~ m|(\d+/\d+/\d+)|);
28 + $DATE = date2str ('$Date: 2017/02/08 17:20:54 $' =~ m|(\d+/\d+/\d+)|);
29
30 -$tmp = "/tmp/$CMD.$$";
31 -
32
33
34
35 1.2 src/patchsets/texlive/2016/texlive-core/series
36
37 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/series?rev=1.2&view=markup
38 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/series?rev=1.2&content-type=text/plain
39 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/series?r1=1.1&r2=1.2
40
41 Index: series
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo/src/patchsets/texlive/2016/texlive-core/series,v
44 retrieving revision 1.1
45 retrieving revision 1.2
46 diff -u -r1.1 -r1.2
47 --- series 20 Jan 2017 13:36:23 -0000 1.1
48 +++ series 8 Feb 2017 17:20:54 -0000 1.2
49 @@ -3,3 +3,4 @@
50 030_all_updmap_normalize.patch
51 040_all_remove_define_abs.patch
52 050_all_latex2man_predictable_tmp.patch
53 +060_all_luatex_zlib.patch
54
55
56
57 1.1 src/patchsets/texlive/2016/texlive-core/060_all_luatex_zlib.patch
58
59 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/060_all_luatex_zlib.patch?rev=1.1&view=markup
60 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/texlive/2016/texlive-core/060_all_luatex_zlib.patch?rev=1.1&content-type=text/plain
61
62 Index: 060_all_luatex_zlib.patch
63 ===================================================================
64 https://bugs.gentoo.org/show_bug.cgi?id=310487
65 https://bugs.gentoo.org/show_bug.cgi?id=605766
66
67 Index: texlive-20160523-source/texk/web2c/luatexdir/luazlib/lzlib.c
68 ===================================================================
69 --- texlive-20160523-source.orig/texk/web2c/luatexdir/luazlib/lzlib.c
70 +++ texlive-20160523-source/texk/web2c/luatexdir/luazlib/lzlib.c
71 @@ -549,14 +549,6 @@ LUALIB_API int luaopen_zlib(lua_State *L
72
73 /* ====================================================================== */
74
75 - /* make sure header and library version are consistent */
76 - const char* version = zlibVersion();
77 - if (strncmp(version, ZLIB_VERSION, 4))
78 - {
79 - lua_pushfstring(L, "zlib library version does not match - header: %s, library: %s", ZLIB_VERSION, version);
80 - lua_error(L);
81 - }
82 -
83 /* create new metatable for zlib compression structures */
84 luaL_newmetatable(L, ZSTREAMMETA);
85 lua_pushliteral(L, "__index");