summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2023-12-08 21:37:27 +0000
committerKarl Berry <karl@freefriends.org>2023-12-08 21:37:27 +0000
commit07a6341624ac55b4b7cfce4ca73a8a5b9fd6219d (patch)
treead0371722fc35c8784e93fcf448d79c8910caf8e /Master/texmf-dist
parented92bc5a13c2e61d4b2e0dfe22bedb92bc0cdd2b (diff)
luamplib (8dec23)
git-svn-id: svn://tug.org/texlive/trunk@69069 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/NEWS3
-rw-r--r--Master/texmf-dist/doc/luatex/luamplib/luamplib.pdfbin153620 -> 153614 bytes
-rw-r--r--Master/texmf-dist/source/luatex/luamplib/luamplib.dtx18
-rw-r--r--Master/texmf-dist/tex/luatex/luamplib/luamplib.lua4
-rw-r--r--Master/texmf-dist/tex/luatex/luamplib/luamplib.sty8
5 files changed, 18 insertions, 15 deletions
diff --git a/Master/texmf-dist/doc/luatex/luamplib/NEWS b/Master/texmf-dist/doc/luatex/luamplib/NEWS
index 72bd87b2ffa..5baf7e6a34f 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
+2023/12/08 2.25.2
+ * info instead of warning when compiling with dviluatex
+
2023/08/21 2.25.1
* explicit \par in \mplibstoptoPDF to support LaTeX's paragraph hooks
diff --git a/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf b/Master/texmf-dist/doc/luatex/luamplib/luamplib.pdf
index 301e428103b..a8022cc75bd 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 949f69c5fe1..023c73b9333 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}%
- [2023/08/21 v2.25.1 Interface for using the mplib library]%
+ [2023/12/08 v2.25.2 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{2023/08/21 v2.25.1}
+% \date{2023/12/08 v2.25.2}
%
% \maketitle
%
@@ -446,8 +446,8 @@ See source file '\inFileName' for licencing and contact information.
luatexbase.provides_module {
name = "luamplib",
- version = "2.25.1",
- date = "2023/08/21",
+ version = "2.25.2",
+ date = "2023/12/08",
description = "Lua package to typeset Metapost with LuaTeX's MPLib.",
}
@@ -2065,7 +2065,7 @@ luamplib.colorconverter = colorconverter
\else
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{luamplib}
- [2023/08/21 v2.25.1 mplib package for LuaTeX]
+ [2023/12/08 v2.25.2 mplib package for LuaTeX]
\ifx\newluafunction\@undefined
\input ltluatex
\fi
@@ -2101,17 +2101,17 @@ luamplib.colorconverter = colorconverter
%
% luamplib works in both PDF and DVI mode,
% but only DVIPDFMx is supported currently among a number of DVI tools.
-% So we output a warning.
+% So we output a info.
% \begin{macrocode}
\ifnum\pdfoutput>0
\let\mplibtoPDF\pdfliteral
\else
\def\mplibtoPDF#1{\special{pdf:literal direct #1}}
- \ifcsname PackageWarning\endcsname
- \PackageWarning{luamplib}{take dvipdfmx path, no support for other dvi tools currently.}
+ \ifcsname PackageInfo\endcsname
+ \PackageInfo{luamplib}{take dvipdfmx path, no support for other dvi tools currently.}
\else
\write128{}
- \write128{luamplib Warning: take dvipdfmx path, no support for other dvi tools currently.}
+ \write128{luamplib Info: take dvipdfmx path, no support for other dvi tools currently.}
\write128{}
\fi
\fi
diff --git a/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua b/Master/texmf-dist/tex/luatex/luamplib/luamplib.lua
index f953e1fd186..039484a22ae 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.25.1",
- date = "2023/08/21",
+ version = "2.25.2",
+ date = "2023/12/08",
description = "Lua package to typeset Metapost with LuaTeX's MPLib.",
}
diff --git a/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty b/Master/texmf-dist/tex/luatex/luamplib/luamplib.sty
index f13f027189b..e8304327ee4 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}
- [2023/08/21 v2.25.1 mplib package for LuaTeX]
+ [2023/12/08 v2.25.2 mplib package for LuaTeX]
\ifx\newluafunction\@undefined
\input ltluatex
\fi
@@ -32,11 +32,11 @@
\let\mplibtoPDF\pdfliteral
\else
\def\mplibtoPDF#1{\special{pdf:literal direct #1}}
- \ifcsname PackageWarning\endcsname
- \PackageWarning{luamplib}{take dvipdfmx path, no support for other dvi tools currently.}
+ \ifcsname PackageInfo\endcsname
+ \PackageInfo{luamplib}{take dvipdfmx path, no support for other dvi tools currently.}
\else
\write128{}
- \write128{luamplib Warning: take dvipdfmx path, no support for other dvi tools currently.}
+ \write128{luamplib Info: take dvipdfmx path, no support for other dvi tools currently.}
\write128{}
\fi
\fi