summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-02-06 23:22:37 +0000
committerKarl Berry <karl@freefriends.org>2014-02-06 23:22:37 +0000
commit716db3d36d52aeaff3226edb6c3bcd52b8478394 (patch)
tree152feb0630b11ceb311b79daa3c042b0c261805a /Build
parent2385abbf2b7e9cee66fd032dcc7ca204808f1135 (diff)
luaotfload (6feb14)
git-svn-id: svn://tug.org/texlive/trunk@32887 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua21
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/texlive/tlmgr.pl12
2 files changed, 21 insertions, 12 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua b/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua
index fd84fa4701d..67ab2e7f1b6 100755
--- a/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua
+++ b/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua
@@ -2,14 +2,14 @@
-----------------------------------------------------------------------
-- FILE: luaotfload-tool.lua
-- DESCRIPTION: database functionality
--- REQUIREMENTS: luaotfload 2.2
+-- REQUIREMENTS: luaotfload 2.4
-- AUTHOR: Khaled Hosny, Élie Roux, Philipp Gesang
--- VERSION: 2.4
+-- VERSION: 2.4-3
-- LICENSE: GPL v2
-- MODIFIED: 2013-07-28 13:12:04+0200
-----------------------------------------------------------------------
-local version = "2.4" --- <int: major>.<int: minor><alpha: fixes>
+local version = "2.4-3" --- <int: major>.<int: minor><alpha: fixes>
--[[doc--
@@ -191,12 +191,13 @@ local help_messages = {
Usage: %s [OPTIONS...]
-Operations on the Luaotfload font names database.
+ Luaotfload font management and diagnostic utility.
+ This program is part of the Luaotfload package.
-This tool is part of the luaotfload package. Valid options are:
+ Valid options are:
-------------------------------------------------------------------------------
- VERBOSITY AND LOGGING
+ VERBOSITY AND DIAGNOSTICS
-q --quiet don't output anything
-v --verbose=LEVEL be more verbose (print the searched directories)
@@ -302,8 +303,16 @@ local help_msg = function (version)
luaotfloadconfig.cache_dir)))
end
+local about = [[
+%s:
+ Luaotfload font management and diagnostic utility.
+ License: GNU GPL v2.0.
+ Report problems to <https://github.com/lualatex/luaotfload/issues>
+]]
+
local version_msg = function ( )
local out = function (...) texiowrite_nl (stringformat (...)) end
+ out (about, luaotfloadconfig.self)
out ("%s version %q", luaotfloadconfig.self, version)
out ("revision %q", luaotfloadstatus.notes.revision)
out ("database version %q", names.version)
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
index 25b27d4ec65..7a61e7d04b8 100755
--- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
+++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
@@ -1,12 +1,12 @@
#!/usr/bin/env perl
-# $Id: tlmgr.pl 31977 2013-10-23 14:04:44Z preining $
+# $Id: tlmgr.pl 32771 2014-01-24 00:28:32Z karl $
#
# Copyright 2008-2013 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
-my $svnrev = '$Revision: 31977 $';
-my $datrev = '$Date: 2013-10-23 16:04:44 +0200 (Wed, 23 Oct 2013) $';
+my $svnrev = '$Revision: 32771 $';
+my $datrev = '$Date: 2014-01-24 01:28:32 +0100 (Fri, 24 Jan 2014) $';
my $tlmgrrevision;
my $prg;
if ($svnrev =~ m/: ([0-9]+) /) {
@@ -5892,14 +5892,14 @@ sub check_for_critical_updates
sub critical_updates_warning {
tlwarn("=" x 79, "\n");
- tlwarn("Updates for tlmgr itself are present.\n");
- tlwarn("So, please update the package manager first, via either\n");
+ tlwarn("tlmgr itself needs to be updated.\n");
+ tlwarn("Please do this via either\n");
tlwarn(" tlmgr update --self\n");
tlwarn("or by getting the latest updater for Unix-ish systems:\n");
tlwarn(" $TeXLiveURL/update-tlmgr-latest.sh\n");
tlwarn("and/or Windows systems:\n");
tlwarn(" $TeXLiveURL/update-tlmgr-latest.exe\n");
- tlwarn("Then continue with other updates.\n");
+ tlwarn("Then continue with other updates as usual.\n");
tlwarn("=" x 79, "\n");
}