texlive[51800] Master: do not worry about dup LICENSE files in

commits+karl at tug.org commits+karl at tug.org
Fri Aug 2 00:51:45 CEST 2019


Revision: 51800
          http://tug.org/svn/texlive?view=revision&revision=51800
Author:   karl
Date:     2019-08-02 00:51:44 +0200 (Fri, 02 Aug 2019)
Log Message:
-----------
do not worry about dup LICENSE files in runtime; note that we do not check-files-by-format any more

Modified Paths:
--------------
    trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl
    trunk/Master/tlpkg/bin/check-files-by-format

Modified: trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl
===================================================================
--- trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl	2019-08-01 21:19:27 UTC (rev 51799)
+++ trunk/Master/texmf-dist/scripts/texlive/tlmgr.pl	2019-08-01 22:51:44 UTC (rev 51800)
@@ -5500,6 +5500,7 @@
     next if $f
       =~ /^((czech|slovak)\.sty
             |Changes
+            |LICENSE.*
             |Makefile
             |README.*
             |a_.*\.enc

Modified: trunk/Master/tlpkg/bin/check-files-by-format
===================================================================
--- trunk/Master/tlpkg/bin/check-files-by-format	2019-08-01 21:19:27 UTC (rev 51799)
+++ trunk/Master/tlpkg/bin/check-files-by-format	2019-08-01 22:51:44 UTC (rev 51800)
@@ -1,13 +1,14 @@
 #!/usr/bin/env perl
 # $Id$
 # Copyright Manuel P\'egouri\'e-Gonnard, 2010-2016. WTFPL v2.
-#
 # Check that files in various formats are somewhat valid.
 #
-# The following formats are checked currently: pdf, tfm, vf, otf.
-# We no longer check pfb, since so many Type 1's now end up with:
-#   OtherBlues zone 0 too large in relation to BlueScale
+# This used to be run from cron, but no longer is, because it takes many
+# hours, and there are too many false positives. Inserting all the
+# exclusions got too annoying. Give up. --karl, 2aug19.
 #
+# The following formats are checked currently: pfb, pdf, tfm, vf, otf.
+#
 # For each format, there is one routine &check_<format> and an exclusion
 # 'list' (hash reference) $exclude_<format>: the keys are either a
 # directory name if they have a trailing slash, or a file name. If a key
@@ -248,9 +249,8 @@
   for my $file (grep { /\.pdf$/ } @files) {
     check_pdf($file); }
 
-  # see comments at top.
-  #for my $file (grep { /\.pfb$/ } @files) {
-  #  check_pfb($file); }
+  for my $file (grep { /\.pfb$/ } @files) {
+    check_pfb($file); }
 
   for my $file (grep { /\.tfm$/ } @files) {
     check_tfm($file); }



More information about the tex-live-commits mailing list