summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-02-21 03:02:01 +0000
committerNorbert Preining <norbert@preining.info>2020-02-21 03:02:01 +0000
commitedf9632b63615c375b45941052fe190d1e02d887 (patch)
tree7a0b21d5f743ae93df76572379e93bcff920754d /support
parent9989fc4235eab4ecacbc0451af9238e1372aeaff (diff)
CTAN sync 202002210302
Diffstat (limited to 'support')
-rw-r--r--support/texdoc/NEWS4
-rw-r--r--support/texdoc/README.md2
-rw-r--r--support/texdoc/doc/texdoc.12
-rw-r--r--support/texdoc/doc/texdoc.pdfbin82654 -> 82654 bytes
-rw-r--r--support/texdoc/doc/texdoc.tex2
-rwxr-xr-xsupport/texdoc/script/texdoc.tlu14
-rw-r--r--support/texdoc/script/texdoclib-const.tlu4
7 files changed, 17 insertions, 11 deletions
diff --git a/support/texdoc/NEWS b/support/texdoc/NEWS
index aae48497e5..29fa3873d9 100644
--- a/support/texdoc/NEWS
+++ b/support/texdoc/NEWS
@@ -2,6 +2,10 @@ NEWS for texdoc
===============
(This file public domain.)
+Version 3.2.1
+-------------
+- Bug fix: suspend a realpath not found error
+
Version 3.2 (TeX Live 2020)
===========================
- Improved the scoring scheme to prioritize the latex tree than the latex-dev
diff --git a/support/texdoc/README.md b/support/texdoc/README.md
index b71ab74743..c36135750a 100644
--- a/support/texdoc/README.md
+++ b/support/texdoc/README.md
@@ -1,4 +1,4 @@
-# Texdoc 3.2 (2020-02-02)
+# Texdoc 3.2.1 (2020-02-20)
[![Build Status](https://travis-ci.org/TeX-Live/texdoc.svg?branch=master)](https://travis-ci.org/TeX-Live/texdoc)
[![Build status](https://ci.appveyor.com/api/projects/status/uq28ms7eba7ns6d3/branch/master?svg=true)](https://ci.appveyor.com/project/wtsnjp/texdoc/branch/master)
diff --git a/support/texdoc/doc/texdoc.1 b/support/texdoc/doc/texdoc.1
index fb2b79f2ec..2b51fbe793 100644
--- a/support/texdoc/doc/texdoc.1
+++ b/support/texdoc/doc/texdoc.1
@@ -1,7 +1,7 @@
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
-.TH "TEXDOC" "1" "February 2020" "Texdoc 3.2" "Texdoc manual"
+.TH "TEXDOC" "1" "February 2020" "Texdoc 3.2.1" "Texdoc manual"
.
.SH "NAME"
\fBtexdoc\fR \- find & view documentation in TeX Live
diff --git a/support/texdoc/doc/texdoc.pdf b/support/texdoc/doc/texdoc.pdf
index d414706520..5462c218e6 100644
--- a/support/texdoc/doc/texdoc.pdf
+++ b/support/texdoc/doc/texdoc.pdf
Binary files differ
diff --git a/support/texdoc/doc/texdoc.tex b/support/texdoc/doc/texdoc.tex
index e1ab840ace..7b9a259008 100644
--- a/support/texdoc/doc/texdoc.tex
+++ b/support/texdoc/doc/texdoc.tex
@@ -8,7 +8,7 @@
\subtitle{Find \& view documentation in \TL}
\pkgurl{https://tug.org/texdoc/}
\author{Manuel Pégourié-Gonnard\and Takuto Asakura}
-\date{v3.2\quad \today}
+\date{v3.2.1\quad \today}
\begin{document}
diff --git a/support/texdoc/script/texdoc.tlu b/support/texdoc/script/texdoc.tlu
index bc2139435a..e16f2e4eb1 100755
--- a/support/texdoc/script/texdoc.tlu
+++ b/support/texdoc/script/texdoc.tlu
@@ -16,13 +16,15 @@ kpse.set_program_name(arg[-1], 'texdoc')
-- get realpath of this file
local function realpath(p)
if os.type == 'unix' then
- local h = io.popen(string.format("realpath '%s'", p))
- local r = h:read('*a')
- h:close()
- return r:gsub('\n$', '')
- else
- return ''
+ local e = os.execute('which realpath >/dev/null 2>&1')
+ if e == 0 then
+ local h = io.popen(string.format("realpath '%s'", p))
+ local r = h:read('*a')
+ h:close()
+ return r:gsub('\n$', '')
+ end
end
+ return ''
end
local file = realpath(arg[0])
diff --git a/support/texdoc/script/texdoclib-const.tlu b/support/texdoc/script/texdoclib-const.tlu
index 9562122d38..0bccb118a1 100644
--- a/support/texdoc/script/texdoclib-const.tlu
+++ b/support/texdoc/script/texdoclib-const.tlu
@@ -21,8 +21,8 @@ end
-- progname and version
fullname = kpse.find_file('texdoc/texdoclib', 'lua')
progname = 'Texdoc'
-version = '3.2'
-release_date = '2020-02-02'
+version = '3.2.1'
+release_date = '2020-02-20'
-- make sure to update setup_config_from_cl() accordingly
-- and set a default value in setup_config_from_defaults() if relevant