summaryrefslogtreecommitdiff
path: root/Build/source/texk
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-05-19 15:38:02 +0000
committerKarl Berry <karl@freefriends.org>2017-05-19 15:38:02 +0000
commit005b7aa5713e2f652e5eaeeb4456d3a747da4687 (patch)
treed82d67cf5b20033d91ea2096c3a799b7cb6507c1 /Build/source/texk
parent0251ec6f9b04c60b7b649a62bd404591f7d27ed4 (diff)
t17 final doc
git-svn-id: svn://tug.org/texlive/trunk@44424 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r--Build/source/texk/dvipdfm-x/ChangeLog4
-rw-r--r--Build/source/texk/dvipsk/ChangeLog4
-rw-r--r--Build/source/texk/kpathsea/NEWS2
-rwxr-xr-xBuild/source/texk/texlive/linked_scripts/texlive/tlmgr.pl18
-rw-r--r--Build/source/texk/web2c/NEWS2
5 files changed, 22 insertions, 8 deletions
diff --git a/Build/source/texk/dvipdfm-x/ChangeLog b/Build/source/texk/dvipdfm-x/ChangeLog
index a4059a5729f..6a7ca7671e4 100644
--- a/Build/source/texk/dvipdfm-x/ChangeLog
+++ b/Build/source/texk/dvipdfm-x/ChangeLog
@@ -1,3 +1,7 @@
+2017-05-19 Karl Berry <karl@tug.org>
+
+ * Version 20170318 for TeX Live 2017 release.
+
2017-05-08 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
* pdfdraw.c: Replace a small number 1.0e-8 by OUR_EPSILON = 2.5e-16,
diff --git a/Build/source/texk/dvipsk/ChangeLog b/Build/source/texk/dvipsk/ChangeLog
index 7db89872431..2b15cc23e53 100644
--- a/Build/source/texk/dvipsk/ChangeLog
+++ b/Build/source/texk/dvipsk/ChangeLog
@@ -1,3 +1,7 @@
+2017-05-19 Karl Berry <karl@tug.org>
+
+ * Version 5.997 for TeX Live 2017 release.
+
2017-03-27 Karl Berry <karl@freefriends.org>
* Makefile.am (AM_TESTS_ENVIRONMENT): use instead of TESTS_ENVIRONMENT.
diff --git a/Build/source/texk/kpathsea/NEWS b/Build/source/texk/kpathsea/NEWS
index 22c314903e7..45b572c00bf 100644
--- a/Build/source/texk/kpathsea/NEWS
+++ b/Build/source/texk/kpathsea/NEWS
@@ -1,6 +1,6 @@
This file records noteworthy changes. (Public domain.)
-6.2.3 (for TeX Live 2017)
+6.2.3 (for TeX Live 2017, 19 May 2017)
* .OTF treated like .otf.
* texmf.cnf: mpost removed from default shell_escape_commands.
* texmf.cnf: TEXINPUTS.luajitlatex added.
diff --git a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
index cb7d696a3f2..043246810df 100755
--- a/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
+++ b/Build/source/texk/texlive/linked_scripts/texlive/tlmgr.pl
@@ -1,13 +1,13 @@
#!/usr/bin/env perl
-# $Id: tlmgr.pl 44325 2017-05-13 23:31:11Z karl $
+# $Id: tlmgr.pl 44422 2017-05-19 15:07:25Z karl $
#
# Copyright 2008-2017 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
#
-my $svnrev = '$Revision: 44325 $';
-my $datrev = '$Date: 2017-05-14 01:31:11 +0200 (Sun, 14 May 2017) $';
+my $svnrev = '$Revision: 44422 $';
+my $datrev = '$Date: 2017-05-19 17:07:25 +0200 (Fri, 19 May 2017) $';
my $tlmgrrevision;
my $prg;
if ($svnrev =~ m/: ([0-9]+) /) {
@@ -4384,7 +4384,10 @@ sub action_platform {
}
print "Already installed platforms are marked with (i)\n";
print "You can add new platforms with: tlmgr platform add PLAT1 PLAT2...\n";
+ print "You can remove platforms with: tlmgr platform remove PLAT1 PLAT2...\n";
+ print "You can set the active platform with: tlmgr platform set PLAT\n";
return ($F_OK | $F_NOPOSTACTION);
+
} elsif ($what =~ m/^add$/i) {
return ($F_ERROR) if !check_on_writable();
init_tlmedia_or_die();
@@ -4397,7 +4400,7 @@ sub action_platform {
next;
}
if (!TeXLive::TLUtils::member($a, @available_arch)) {
- info("Platform $a not available, use 'tlmgr platform list'!\n");
+ info("Platform $a not available; see tlmgr platform list\n");
next;
}
push @todoarchs, $a;
@@ -4442,6 +4445,7 @@ sub action_platform {
$localtlpdb->setting("available_architectures",@larchs);
$localtlpdb->save;
}
+
} elsif ($what =~ m/^remove$/i) {
return ($F_ERROR) if !check_on_writable();
my @already_installed_arch = $localtlpdb->available_architectures;
@@ -4491,7 +4495,7 @@ sub action_platform {
# try to remove bin/$a dirs
for my $a (@todoarchs) {
if (!rmdir("$Master/bin/$a")) {
- tlwarn("$prg: binary directory $Master/bin/$a not empty after removal of $a.\n");
+ tlwarn("$prg: failed to rmdir $Master/bin/$a: $!\n");
$ret |= $F_WARNING;
}
}
@@ -4504,6 +4508,7 @@ sub action_platform {
$localtlpdb->setting("available_architectures",@newarchs);
$localtlpdb->save;
}
+
} elsif ($what =~ m/^set$/i) {
return if !check_on_writable();
my $arg = shift @ARGV;
@@ -7170,6 +7175,7 @@ checking the TL development repository.
=back
=head2 conf [texmf|tlmgr|updmap [--conffile I<file>] [--delete] [I<key> [I<value>]]]
+
=head2 conf auxtrees [--conffile I<file>] [show|add|delete] [I<value>]
With only C<conf>, show general configuration information for TeX Live,
@@ -8877,7 +8883,7 @@ This script and its documentation were written for the TeX Live
distribution (L<http://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.
-$Id: tlmgr.pl 44325 2017-05-13 23:31:11Z karl $
+$Id: tlmgr.pl 44422 2017-05-19 15:07:25Z karl $
=cut
# to remake HTML version: pod2html --cachedir=/tmp tlmgr.pl >/tmp/tlmgr.html
diff --git a/Build/source/texk/web2c/NEWS b/Build/source/texk/web2c/NEWS
index 7120dd85fb9..b37615dd87a 100644
--- a/Build/source/texk/web2c/NEWS
+++ b/Build/source/texk/web2c/NEWS
@@ -1,6 +1,6 @@
This file records noteworthy changes. (Public domain.)
-2017 (for TeX Live 2017)
+2017 (for TeX Live 2017, 19 May 2017)
2016 (for TeX Live 2016, 21 May 2016)
2015 (for TeX Live 2015, 21 May 2015)
2014 (for TeX Live 2014, 24 May 2014)