summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-11-23 22:40:49 +0000
committerKarl Berry <karl@freefriends.org>2021-11-23 22:40:49 +0000
commitcc0da60e5310eafad3b5d0e836433c8484ed5a18 (patch)
tree4d3e240359a256691ec7b18b27e5a1fa92ae99d4 /Master
parent5371b53200e6d7557e9333e99c9ea68605fd887a (diff)
luamplib (23nov21)
git-svn-id: svn://tug.org/texlive/trunk@61133 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/NEWS3
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/luamplib.pdfbin151188 -> 151338 bytes
-rw-r--r--Master/texmf-dist/source/luatex/luamplib/luamplib.dtx20
-rw-r--r--Master/texmf-dist/tex/luatex/luamplib/luamplib.lua13
-rw-r--r--Master/texmf-dist/tex/luatex/luamplib/luamplib.sty2
5 files changed, 28 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/luatex/luamplib/NEWS b/Master/texmf-dist/doc/luatex/luamplib/NEWS
index f62f86fd6d2..1fd97ca4f23 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/NEWS
+++ b/Master/texmf-dist/doc/luatex/luamplib/NEWS
@@ -1,5 +1,8 @@
History of the luamplib package
+2021/11/23 2.21.1
+ * address #97 (typesetting fails with "--lua" option)
+
2021/09/16 2.21.0
* allow empty string in textext()
diff --git a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
index c785dbca430..a2685b2b09e 100644
--- a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
+++ b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
Binary files differ
diff --git a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx
index a1ee352b360..0966f32b98d 100644
--- a/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx
+++ b/Master/texmf-dist/source/luatex/luamplib/luamplib.dtx
@@ -85,7 +85,7 @@ See source file '\inFileName' for licencing and contact information.
%<*driver>
\NeedsTeXFormat{LaTeX2e}
\ProvidesFile{luamplib.drv}%
- [2021/09/16 v2.21.0 Interface for using the mplib library]%
+ [2021/11/23 v2.21.1 Interface for using the mplib library]%
\documentclass{ltxdoc}
\usepackage{metalogo,multicol,mdwlist,fancyvrb,xspace}
\usepackage[x11names]{xcolor}
@@ -153,7 +153,7 @@ See source file '\inFileName' for licencing and contact information.
% \author{Hans Hagen, Taco Hoekwater, Elie Roux, Philipp Gesang and Kim Dohyun\\
% Maintainer: LuaLaTeX Maintainers ---
% Support: \email{lualatex-dev@tug.org}}
-% \date{2021/09/16 v2.21.0}
+% \date{2021/11/23 v2.21.1}
%
% \maketitle
%
@@ -413,8 +413,8 @@ See source file '\inFileName' for licencing and contact information.
luatexbase.provides_module {
name = "luamplib",
- version = "2.21.0",
- date = "2021/09/16",
+ version = "2.21.1",
+ date = "2021/11/23",
description = "Lua package to typeset Metapost with LuaTeX's MPLib.",
}
@@ -669,8 +669,16 @@ end
% As the finder function for MPLib, use the |kpse| library and
% make it behave like as if MetaPost was used. And replace it with
% cache files if needed.
+% See also \#74, \#97.
% \begin{macrocode}
-local mpkpse = kpse.new(arg[0], "mpost")
+local mpkpse
+do
+ local exe = 0
+ while arg[exe-1] do
+ exe = exe-1
+ end
+ mpkpse = kpse.new(arg[exe], "mpost")
+end
local special_ftype = {
pfb = "type1 fonts",
@@ -2003,7 +2011,7 @@ luamplib.colorconverter = colorconverter
\else
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{luamplib}
- [2021/09/16 v2.21.0 mplib package for LuaTeX]
+ [2021/11/23 v2.21.1 mplib package for LuaTeX]
\ifx\newluafunction\@undefined
\input ltluatex
\fi
diff --git a/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua b/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua
index f7cc692f6fa..430d2991efa 100644
--- a/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua
+++ b/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua
@@ -11,8 +11,8 @@
luatexbase.provides_module {
name = "luamplib",
- version = "2.21.0",
- date = "2021/09/16",
+ version = "2.21.1",
+ date = "2021/11/23",
description = "Lua package to typeset Metapost with LuaTeX's MPLib.",
}
@@ -216,7 +216,14 @@ local function replaceinputmpfile (name,file)
return newfile
end
-local mpkpse = kpse.new(arg[0], "mpost")
+local mpkpse
+do
+ local exe = 0
+ while arg[exe-1] do
+ exe = exe-1
+ end
+ mpkpse = kpse.new(arg[exe], "mpost")
+end
local special_ftype = {
pfb = "type1 fonts",
diff --git a/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty b/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty
index e33c7b6658f..8d91224481f 100644
--- a/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty
+++ b/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty
@@ -14,7 +14,7 @@
\else
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{luamplib}
- [2021/09/16 v2.21.0 mplib package for LuaTeX]
+ [2021/11/23 v2.21.1 mplib package for LuaTeX]
\ifx\newluafunction\@undefined
\input ltluatex
\fi