diff options
author | Karl Berry <karl@freefriends.org> | 2019-12-22 21:55:58 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-12-22 21:55:58 +0000 |
commit | 3951c783c825f5c250de8bd83cfc86e5dc38a159 (patch) | |
tree | aebf3294115e0ff5797afc590b0a243e4a6fadcc /Master | |
parent | a89d1e178e0653d79abc0282a99b7727d0911bc1 (diff) |
luapackageloader (22dec19)
git-svn-id: svn://tug.org/texlive/trunk@53211 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf-dist/doc/luatex/luapackageloader/README.md | 4 | ||||
-rw-r--r-- | Master/texmf-dist/doc/luatex/luapackageloader/luapackageloader.pdf | bin | 34079 -> 33904 bytes | |||
-rw-r--r-- | Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.lua | 6 | ||||
-rw-r--r-- | Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.sty | 12 |
4 files changed, 11 insertions, 11 deletions
diff --git a/Master/texmf-dist/doc/luatex/luapackageloader/README.md b/Master/texmf-dist/doc/luatex/luapackageloader/README.md index 0326a4110dd..1e0479fd6c8 100644 --- a/Master/texmf-dist/doc/luatex/luapackageloader/README.md +++ b/Master/texmf-dist/doc/luatex/luapackageloader/README.md @@ -1,6 +1,6 @@ # luapackageloader -CTAN package to allow LuaTeX to load packages from the default `package.path` and `package.cpath` locations. This could be useful -to load external Lua modules, including modules installed via [LuaRocks](https://luarocks.org). +CTAN package to allow LuaTeX to load modules from the default `package.path` and `package.cpath` locations. This could be used +to load external Lua modules outside the TEXMF tree, including modules installed via [LuaRocks](https://luarocks.org). ## Usage See the [PDF documentation](luapackageloader.pdf) for details. diff --git a/Master/texmf-dist/doc/luatex/luapackageloader/luapackageloader.pdf b/Master/texmf-dist/doc/luatex/luapackageloader/luapackageloader.pdf Binary files differindex 056a1d5967b..f20ad5b7d7f 100644 --- a/Master/texmf-dist/doc/luatex/luapackageloader/luapackageloader.pdf +++ b/Master/texmf-dist/doc/luatex/luapackageloader/luapackageloader.pdf diff --git a/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.lua b/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.lua index 7ebd5b63e31..93d9a3cd6be 100644 --- a/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.lua +++ b/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.lua @@ -1,7 +1,7 @@ -- Author: Deepak Jois --- License: http://www.latex-project.org/lppl.txt --- Date: 2017/05/26 --- Version: 0.1 +-- License: LPPL Version 1.3c or higher <http://www.latex-project.org/lppl.txt> +-- Date: 2019/12/21 +-- Version: 0.2 local luapackageloader = {} -- Cache the current kpse based searchers diff --git a/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.sty b/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.sty index 7a6219e1c6c..620937bc874 100644 --- a/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.sty +++ b/Master/texmf-dist/tex/luatex/luapackageloader/luapackageloader.sty @@ -1,15 +1,15 @@ % Author: Deepak Jois -% License: http://www.latex-project.org/lppl.txt -% Date: 2017/05/26 -% Version: 0.1 -\def\luapackageloaderpkgdate{2017/05/26} -\def\luapackageloaderversion{0.1} +% License: LPPL Version 1.3c or higher <http://www.latex-project.org/lppl.txt> +% Date: 2019/12/21 +% Version: 0.2 +\def\luapackageloaderpkgdate{2019/12/21} +\def\luapackageloaderversion{0.2} \expandafter\ifx\csname ProvidesPackage\endcsname\relax \input ifluatex.sty\relax \else \NeedsTeXFormat{LaTeX2e} - \ProvidesPackage{}[\luapackageloaderpkgdate\space v\luapackageloaderversion\space Lua package searchers for LuaTeX] + \ProvidesPackage{luapackageloader}[\luapackageloaderpkgdate\space v\luapackageloaderversion\space Lua package searchers for LuaTeX] \RequirePackage{ifluatex} \fi |