diff options
author | Karl Berry <karl@freefriends.org> | 2018-10-28 21:04:56 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-10-28 21:04:56 +0000 |
commit | b66ea0d4e8536692eab3deb715a0b87a88a4b506 (patch) | |
tree | 2d6c32e517e191c6b9278cf1d260e998bc90efd9 /Master/texmf-dist/scripts/luaotfload | |
parent | cc272ef6384ce91e8195ee19a50bf3d81bf22176 (diff) |
luaotfload (28oct18)
git-svn-id: svn://tug.org/texlive/trunk@49010 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts/luaotfload')
-rwxr-xr-x | Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua b/Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua index 60fa37e8b1d..9f1fce700ec 100755 --- a/Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua +++ b/Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua @@ -2,14 +2,27 @@ ----------------------------------------------------------------------- -- FILE: luaotfload-tool.lua -- DESCRIPTION: database functionality --- REQUIREMENTS: luaotfload 2.91 +-- REQUIREMENTS: matching luaotfload -- AUTHOR: Khaled Hosny, Élie Roux, Philipp Gesang -- LICENSE: GPL v2.0 ----------------------------------------------------------------------- +local ProvidesLuaModule = { + name = "luaotfload-tool", + version = "2.93", --TAGVERSION + date = "2018-10-28", --TAGDATE + description = "luaotfload-tool / database functionality", + license = "GPL v2.0" +} + +if luatexbase and luatexbase.provides_module then + luatexbase.provides_module (ProvidesLuaModule) +end + + luaotfload = luaotfload or { } -local version = "2.91" -luaotfload.version = version +local version = ProvidesLuaModule.version +luaotfload.version = ProvidesLuaModule.version luaotfload.min_luatex_version = { 0, 95, 0 } luaotfload.self = "luaotfload-tool" |