summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>2016-10-03 18:20:59 +0200
committerAlexis Ballier <aballier@gentoo.org>2016-10-05 14:54:06 +0200
commit7ceffa254f588f4d71c4a82f16174a67a1f7e261 (patch)
tree66cef39004790c21151fdfdf54c26dc4e83bbc75 /dev-texlive/texlive-luatex
parentdev-texlive/texlive-fontutils: remove unused patch (diff)
downloadgentoo-7ceffa254f588f4d71c4a82f16174a67a1f7e261.tar.gz
gentoo-7ceffa254f588f4d71c4a82f16174a67a1f7e261.tar.bz2
gentoo-7ceffa254f588f4d71c4a82f16174a67a1f7e261.zip
dev-texlive/texlive-luatex: remove unused patch
Diffstat (limited to 'dev-texlive/texlive-luatex')
-rw-r--r--dev-texlive/texlive-luatex/files/lualibs.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-texlive/texlive-luatex/files/lualibs.patch b/dev-texlive/texlive-luatex/files/lualibs.patch
deleted file mode 100644
index f62d3bea44ca..000000000000
--- a/dev-texlive/texlive-luatex/files/lualibs.patch
+++ /dev/null
@@ -1,43 +0,0 @@
---- texmf-dist/tex/luatex/lualibs/lualibs-dir.lua 2010-05-29 02:25:56.000000000 -0700
-+++ texmf-dist/tex/luatex/lualibs/lualibs-dir.lua 2011-01-13 22:05:56.766564001 -0800
-@@ -26,15 +26,15 @@
- local walkdir = lfs.dir
-
- local function glob_pattern(path,patt,recurse,action)
-- local ok, scanner
-+ local ok, scanner, dirobj
- if path == "/" then
-- ok, scanner = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
-+ ok, scanner, dirobj = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
- else
-- ok, scanner = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
-+ ok, scanner, dirobj = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
- end
- if ok and type(scanner) == "function" then
- if not find(path,"/$") then path = path .. '/' end
-- for name in scanner do
-+ for name in scanner, dirobj do
- local full = path .. name
- local mode = attributes(full,'mode')
- if mode == 'file' then
-@@ -51,16 +51,16 @@
- dir.glob_pattern = glob_pattern
-
- local function collect_pattern(path,patt,recurse,result)
-- local ok, scanner
-+ local ok, scanner, dirobj
- result = result or { }
- if path == "/" then
-- ok, scanner = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
-+ ok, scanner, dirobj = xpcall(function() return walkdir(path..".") end, function() end) -- kepler safe
- else
-- ok, scanner = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
-+ ok, scanner, dirobj = xpcall(function() return walkdir(path) end, function() end) -- kepler safe
- end
- if ok and type(scanner) == "function" then
- if not find(path,"/$") then path = path .. '/' end
-- for name in scanner do
-+ for name in scanner, dirobj do
- local full = path .. name
- local attr = attributes(full)
- local mode = attr.mode