Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-texlive/texlive-luatex/files/
Date: Wed, 05 Oct 2016 12:54:22
Message-Id: 1475672046.7ceffa254f588f4d71c4a82f16174a67a1f7e261.aballier@gentoo
1 commit: 7ceffa254f588f4d71c4a82f16174a67a1f7e261
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Oct 3 16:20:59 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 5 12:54:06 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ceffa25
7
8 dev-texlive/texlive-luatex: remove unused patch
9
10 dev-texlive/texlive-luatex/files/lualibs.patch | 43 --------------------------
11 1 file changed, 43 deletions(-)
12
13 diff --git a/dev-texlive/texlive-luatex/files/lualibs.patch b/dev-texlive/texlive-luatex/files/lualibs.patch
14 deleted file mode 100644
15 index f62d3be..00000000
16 --- a/dev-texlive/texlive-luatex/files/lualibs.patch
17 +++ /dev/null
18 @@ -1,43 +0,0 @@
19 ---- texmf-dist/tex/luatex/lualibs/lualibs-dir.lua 2010-05-29 02:25:56.000000000 -0700
20 -+++ texmf-dist/tex/luatex/lualibs/lualibs-dir.lua 2011-01-13 22:05:56.766564001 -0800
21 -@@ -26,15 +26,15 @@
22 - local walkdir = lfs.dir
23 -
24 - local function glob_pattern(path,patt,recurse,action)
25 -- local ok, scanner
26 -+ local ok, scanner, dirobj
27 - if path == "/" then
28 -- ok, scanner = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
29 -+ ok, scanner, dirobj = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
30 - else
31 -- ok, scanner = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
32 -+ ok, scanner, dirobj = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
33 - end
34 - if ok and type(scanner) == "function" then
35 - if not find(path,"/$") then path = path .. '/' end
36 -- for name in scanner do
37 -+ for name in scanner, dirobj do
38 - local full = path .. name
39 - local mode = attributes(full,'mode')
40 - if mode == 'file' then
41 -@@ -51,16 +51,16 @@
42 - dir.glob_pattern = glob_pattern
43 -
44 - local function collect_pattern(path,patt,recurse,result)
45 -- local ok, scanner
46 -+ local ok, scanner, dirobj
47 - result = result or { }
48 - if path == "/" then
49 -- ok, scanner = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
50 -+ ok, scanner, dirobj = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
51 - else
52 -- ok, scanner = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
53 -+ ok, scanner, dirobj = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
54 - end
55 - if ok and type(scanner) == "function" then
56 - if not find(path,"/$") then path = path .. '/' end
57 -- for name in scanner do
58 -+ for name in scanner, dirobj do
59 - local full = path .. name
60 - local attr = attributes(full)
61 - local mode = attr.mode