texlive[42428] Master/tlpkg: pattern reduction

commits+preining at tug.org commits+preining at tug.org
Thu Nov 3 03:58:32 CET 2016


Revision: 42428
          http://tug.org/svn/texlive?view=revision&revision=42428
Author:   preining
Date:     2016-11-03 03:58:32 +0100 (Thu, 03 Nov 2016)
Log Message:
-----------
pattern reduction

Modified Paths:
--------------
    trunk/Master/tlpkg/TeXLive/TLTREE.pm
    trunk/Master/tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc
    trunk/Master/tlpkg/tlpsrc/algorithms.tlpsrc
    trunk/Master/tlpkg/tlpsrc/apa.tlpsrc
    trunk/Master/tlpkg/tlpsrc/appendix.tlpsrc
    trunk/Master/tlpkg/tlpsrc/background.tlpsrc
    trunk/Master/tlpkg/tlpsrc/beamer.tlpsrc
    trunk/Master/tlpkg/tlpsrc/c90.tlpsrc
    trunk/Master/tlpkg/tlpsrc/cell.tlpsrc
    trunk/Master/tlpkg/tlpsrc/cm.tlpsrc
    trunk/Master/tlpkg/tlpsrc/cmap.tlpsrc
    trunk/Master/tlpkg/tlpsrc/cmextra.tlpsrc
    trunk/Master/tlpkg/tlpsrc/context.tlpsrc
    trunk/Master/tlpkg/tlpsrc/cyrillic.tlpsrc
    trunk/Master/tlpkg/tlpsrc/dirtree.tlpsrc
    trunk/Master/tlpkg/tlpsrc/errata.tlpsrc
    trunk/Master/tlpkg/tlpsrc/euler.tlpsrc
    trunk/Master/tlpkg/tlpsrc/exercises.tlpsrc
    trunk/Master/tlpkg/tlpsrc/german.tlpsrc
    trunk/Master/tlpkg/tlpsrc/glossaries.tlpsrc
    trunk/Master/tlpkg/tlpsrc/graphics.tlpsrc
    trunk/Master/tlpkg/tlpsrc/ipaex.tlpsrc
    trunk/Master/tlpkg/tlpsrc/japanese.tlpsrc
    trunk/Master/tlpkg/tlpsrc/layouts.tlpsrc
    trunk/Master/tlpkg/tlpsrc/manfnt.tlpsrc
    trunk/Master/tlpkg/tlpsrc/mflogo.tlpsrc
    trunk/Master/tlpkg/tlpsrc/ms.tlpsrc
    trunk/Master/tlpkg/tlpsrc/notes.tlpsrc
    trunk/Master/tlpkg/tlpsrc/patch.tlpsrc
    trunk/Master/tlpkg/tlpsrc/pdfscreen.tlpsrc
    trunk/Master/tlpkg/tlpsrc/ptex.tlpsrc
    trunk/Master/tlpkg/tlpsrc/shapes.tlpsrc
    trunk/Master/tlpkg/tlpsrc/talk.tlpsrc
    trunk/Master/tlpkg/tlpsrc/texworks.tlpsrc
    trunk/Master/tlpkg/tlpsrc/tpslifonts.tlpsrc
    trunk/Master/tlpkg/tlpsrc/units.tlpsrc
    trunk/Master/tlpkg/tlpsrc/uplatex.tlpsrc
    trunk/Master/tlpkg/tlpsrc/wadalab.tlpsrc

Modified: trunk/Master/tlpkg/TeXLive/TLTREE.pm
===================================================================
--- trunk/Master/tlpkg/TeXLive/TLTREE.pm	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/TeXLive/TLTREE.pm	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,6 +1,6 @@
 # $Id$
 # TeXLive::TLTREE.pm - work with the tree of all files
-# Copyright 2007-2014 Norbert Preining
+# Copyright 2007-2016 Norbert Preining
 # This file is licensed under the GNU General Public License version 2
 # or any later version.
 
@@ -315,15 +315,58 @@
   return(@returnfiles);
 }
 
+#
+# go through all dir names in the TLTREE such that 
+# which are named like the last entry of @patwords,
+# and which have initial path component of the 
+# rest of @patwords
+#
+# This is not optimal, because many subsetted 
+# dirs are found, example package graphics contains
+# the following exception line to make sure that 
+# these files are not included.
+# docpattern +!d texmf-dist/doc/latex/graphicxbox/examples/graphics
+#
+# We don't need *arbitrary* depth, because what can happen is
+# that the autopattern
+#   docpattern Package t texmf-dist doc %NAME%
+# can match at one of the following
+#   texmf-dist/doc/%NAME
+#   texmf-dist/doc/<SOMETHING>/%NAME
+# but not deeper.
+# Same for the others.
+#
+# Lets say that we try that <SOMETHING> contains at *most* 
+# one (1) / (forward slash/path separator)
+#
+# only for fonts we need a special treatment with 3
+#
 sub _get_files_matching_dir_pattern {
   my ($self,$type, at patwords) = @_;
   my $tl = pop @patwords;
+  my $maxintermediate = 1;
+  if (($#patwords >= 1 && $patwords[1] eq 'fonts')
+      || 
+      ($#patwords >= 2 && $patwords[2] eq 'context')) {
+    $maxintermediate = 2;
+  }
   my @returnfiles;
   if (defined($self->{'_dirnames'}{$tl})) {
     foreach my $tld (@{$self->{'_dirnames'}{$tl}}) {
-      if (index($tld,join("/", at patwords)."/") == 0) {
-        my @files = $self->files_under_path($tld);
-        TeXLive::TLUtils::push_uniq(\@returnfiles, @files);
+      my $startstr = join("/", at patwords)."/";
+      if (index($tld, $startstr) == 0) {
+        my $middlepart = $tld;
+        $middlepart =~ s/\Q$startstr\E//;
+        $middlepart =~ s!/$tl/!!;
+        # put match into list context returns
+        # all matches, which is than coerced to
+        # an integer which gives the number!
+        my $number = () = $middlepart =~ m!/!g;
+        #printf STDERR "DEBUG: maxint=$maxintermediate, number=$number, patwords=@patwords\n";
+        if ($number <= $maxintermediate) {
+          my @files = $self->files_under_path($tld);
+          TeXLive::TLUtils::push_uniq(\@returnfiles, @files);
+        }
       }
     }
   }

Modified: trunk/Master/tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/00texlive.autopatterns.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -19,9 +19,13 @@
 runpattern Package t texmf-dist omega %NAME%
 runpattern Package t texmf-dist scripts %NAME%
 runpattern Package t texmf-dist tex %NAME%
+runpattern Package d texmf-dist/tex/context/third/%NAME%
+runpattern Package d texmf-dist/fonts/misc/xetex/fontmapping/%NAME%
+runpattern Package d texmf-dist/scripts/context/lua/third/%NAME%
 srcpattern Package t texmf-dist source %NAME%
 docpattern Package t texmf-dist doc %NAME%
 docpattern Package f texmf-dist/doc/man/man1/%NAME%.*
+docpattern Package d texmf-dist/doc/context/third/%NAME%
 
 # auto patterns for category TLCore
 docpattern TLCore t texmf-dist doc %NAME%

Modified: trunk/Master/tlpkg/tlpsrc/algorithms.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/algorithms.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/algorithms.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-runpattern +!d texmf-dist/tex/generic/pgf/graphdrawing/lua/pgf/gd/force/jedi/algorithms

Modified: trunk/Master/tlpkg/tlpsrc/apa.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/apa.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/apa.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/latex-web-companion/apa

Modified: trunk/Master/tlpkg/tlpsrc/appendix.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/appendix.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/appendix.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/ksp-thesis/demo/full/content/appendix

Modified: trunk/Master/tlpkg/tlpsrc/background.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/background.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/background.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/stex/example/background

Modified: trunk/Master/tlpkg/tlpsrc/beamer.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/beamer.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/beamer.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,4 +1,2 @@
-docpattern +!d texmf-dist/doc/latex/presentations/images/beamer
-docpattern +!d texmf-dist/doc/latex/presentations-en/images/beamer
 depend pgf
 depend xcolor

Modified: trunk/Master/tlpkg/tlpsrc/c90.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/c90.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/c90.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -0,0 +1,2 @@
+docpattern +d texmf-dist/doc/fonts/enc/c90
+srcpattern +d texmf-dist/source/fonts/enc/c90

Modified: trunk/Master/tlpkg/tlpsrc/cell.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/cell.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/cell.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/cals/test/cell

Modified: trunk/Master/tlpkg/tlpsrc/cm.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/cm.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/cm.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,3 +1,4 @@
 execute addMixedMap cmtext-bsr-interpolated.map
+runpattern +d texmf-dist/fonts/pk/ljfour/public/cm/dpi600
 runpattern +!d texmf-dist/fonts/afm/public/amsfonts/cm
 runpattern +!d texmf-dist/fonts/type1/public/amsfonts/cm

Modified: trunk/Master/tlpkg/tlpsrc/cmap.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/cmap.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/cmap.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,2 +1 @@
 runpattern +!d texmf-dist/fonts/cmap
-runpattern +!d texmf-dist/tex/latex/xcjk2uni/cmap

Modified: trunk/Master/tlpkg/tlpsrc/cmextra.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/cmextra.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/cmextra.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,5 +1 @@
 catalogue knuth-local
-runpattern +!d texmf-dist/fonts/afm/public/amsfonts/cmextra
-runpattern +!d texmf-dist/fonts/source/public/amsfonts/cmextra
-runpattern +!d texmf-dist/fonts/tfm/public/amsfonts/cmextra
-runpattern +!d texmf-dist/fonts/type1/public/amsfonts/cmextra

Modified: trunk/Master/tlpkg/tlpsrc/context.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/context.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/context.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -56,7 +56,6 @@
 #
 srcpattern +!d texmf-dist/source/context/third
 #
-docpattern +!d texmf-dist/doc/generic/tex-virtual-academy-pl/context
 docpattern +!d texmf-dist/doc/context/third
 docpattern +f texmf-dist/doc/man/man1/luatools.*
 docpattern +f texmf-dist/doc/man/man1/texexec.*

Modified: trunk/Master/tlpkg/tlpsrc/cyrillic.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/cyrillic.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/cyrillic.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,8 +1,2 @@
 catalogue latex-cyrillic
-#
-runpattern +!d texmf-dist/fonts/afm/public/amsfonts/cyrillic
-runpattern +!d texmf-dist/fonts/source/public/amsfonts/cyrillic
-runpattern +!d texmf-dist/fonts/tfm/public/amsfonts/cyrillic
-runpattern +!d texmf-dist/fonts/type1/public/amsfonts/cyrillic
-#
 depend cyrillic-bin

Modified: trunk/Master/tlpkg/tlpsrc/dirtree.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/dirtree.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/dirtree.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/skb/user-guide/figures/dirtree

Modified: trunk/Master/tlpkg/tlpsrc/errata.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/errata.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/errata.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,2 +0,0 @@
-docpattern +!d texmf-dist/doc/generic/knuth/errata
-srcpattern +!d texmf-dist/source/generic/knuth/errata

Modified: trunk/Master/tlpkg/tlpsrc/euler.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/euler.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/euler.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,3 +0,0 @@
-runpattern +!d texmf-dist/fonts/afm/public/amsfonts/euler
-runpattern +!d texmf-dist/fonts/tfm/public/amsfonts/euler
-runpattern +!d texmf-dist/fonts/type1/public/amsfonts/euler

Modified: trunk/Master/tlpkg/tlpsrc/exercises.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/exercises.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/exercises.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/guide-to-latex/exercises

Modified: trunk/Master/tlpkg/tlpsrc/german.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/german.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/german.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/jurabib/docs/german

Modified: trunk/Master/tlpkg/tlpsrc/glossaries.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/glossaries.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/glossaries.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,3 +1,2 @@
 binpattern f bin/${ARCH}/makeglossaries
 binpattern f bin/${ARCH}/makeglossaries-lite
-docpattern +!d texmf-dist/doc/latex/yathesis/french/documentation/glossaries

Modified: trunk/Master/tlpkg/tlpsrc/graphics.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/graphics.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/graphics.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -2,9 +2,4 @@
 #
 runpattern +!d texmf-dist/scripts/context/ruby/graphics
 #
-docpattern +!d texmf-dist/doc/context/sources/general/manuals/start/graphics
-docpattern +!d texmf-dist/doc/latex/graphicxbox/examples/graphics
-docpattern +!d texmf-dist/doc/latex/navydocs/graphics
-docpattern +!d texmf-dist/doc/latex/tufte-latex/graphics
-#
 depend graphics-cfg

Modified: trunk/Master/tlpkg/tlpsrc/ipaex.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/ipaex.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/ipaex.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,2 +1 @@
 shortdesc IPA and IPAex fonts from Information-technology Promotion Agency, Japan.
-runpattern +!d texmf-dist/fonts/map/dvipdfmx/jfontmaps/ipaex

Modified: trunk/Master/tlpkg/tlpsrc/japanese.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/japanese.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/japanese.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/cjk/doc/japanese

Modified: trunk/Master/tlpkg/tlpsrc/layouts.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/layouts.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/layouts.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-runpattern +!d texmf-dist/tex/latex/fixme/layouts

Modified: trunk/Master/tlpkg/tlpsrc/manfnt.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/manfnt.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/manfnt.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,4 +0,0 @@
-# this is the latex package; the actual font is in manfnt-font.
-runpattern +!d texmf-dist/fonts/afm/hoekwater/manfnt-font
-runpattern +!d texmf-dist/fonts/type1/hoekwater/manfnt-font
-

Modified: trunk/Master/tlpkg/tlpsrc/mflogo.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/mflogo.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/mflogo.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,7 +1,4 @@
 # this is the latex package; the actual font is in mflogo-font.
-runpattern +!d texmf-dist/fonts/afm/hoekwater/mflogo-font
-runpattern +!d texmf-dist/fonts/type1/hoekwater/mflogo-font
-runpattern +!d texmf-dist/fonts/map/dvips/mflogo-font
 #
 docpattern +!d texmf-dist/doc/fonts/mflogo-font
 

Modified: trunk/Master/tlpkg/tlpsrc/ms.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/ms.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/ms.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-runpattern +!d texmf-dist/fonts/map/dvipdfmx/jfontmaps/ms

Modified: trunk/Master/tlpkg/tlpsrc/notes.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/notes.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/notes.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/fonts/gnu-freefont/notes

Modified: trunk/Master/tlpkg/tlpsrc/patch.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/patch.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/patch.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,2 +0,0 @@
-srcpattern +!d texmf-dist/source/latex/latex-tds/patch
-srcpattern +!d texmf-dist/source/fonts/japanese-otf-uptex/patch

Modified: trunk/Master/tlpkg/tlpsrc/pdfscreen.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/pdfscreen.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/pdfscreen.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,2 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/presentations/images/pdfscreen
-docpattern +!d texmf-dist/doc/latex/presentations-en/images/pdfscreen

Modified: trunk/Master/tlpkg/tlpsrc/ptex.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/ptex.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/ptex.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -25,8 +25,6 @@
 binpattern f/i386-cygwin bin/i386-cygwin/cygptexenc*.dll
 binpattern f/x86_64-cygwin bin/x86_64-cygwin/cygptexenc*.dll
 
-runpattern +!d texmf-dist/tex/generic/hyph-utf8/patterns/ptex
-
 docpattern +f texmf-dist/doc/man/man1/mendex.*
 
 # pbibtex excludes:

Modified: trunk/Master/tlpkg/tlpsrc/shapes.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/shapes.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/shapes.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1,2 +1 @@
 # core pgf files not part of this metapost package.
-runpattern +!d texmf-dist/tex/generic/pgf/libraries/shapes

Modified: trunk/Master/tlpkg/tlpsrc/talk.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/talk.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/talk.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/aiaa/pre2004/demos/talk

Modified: trunk/Master/tlpkg/tlpsrc/texworks.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/texworks.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/texworks.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -17,4 +17,3 @@
 runpattern d tlpkg/texworks
 runpattern +!f tlpkg/texworks/texworks.exe
 #
-docpattern +!d texmf-dist/doc/support/arara/figures/texworks

Modified: trunk/Master/tlpkg/tlpsrc/tpslifonts.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/tpslifonts.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/tpslifonts.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/latex/texpower/tpslifonts

Modified: trunk/Master/tlpkg/tlpsrc/units.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/units.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/units.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -1 +0,0 @@
-docpattern +!d texmf-dist/doc/context/sources/general/manuals/units

Modified: trunk/Master/tlpkg/tlpsrc/uplatex.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/uplatex.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/uplatex.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -4,7 +4,5 @@
 #
 binpattern f bin/${ARCH}/uplatex
 
-docpattern +!d texmf-dist/doc/fonts/japanese-otf-uptex/test/uplatex
-
 # need the binary.
 depend uptex

Modified: trunk/Master/tlpkg/tlpsrc/wadalab.tlpsrc
===================================================================
--- trunk/Master/tlpkg/tlpsrc/wadalab.tlpsrc	2016-11-03 02:10:25 UTC (rev 42427)
+++ trunk/Master/tlpkg/tlpsrc/wadalab.tlpsrc	2016-11-03 02:58:32 UTC (rev 42428)
@@ -4,8 +4,3 @@
 execute addMap mcj.map
 execute addMap mr2j.map
 execute addMap mrj.map
-#
-# these are part of the cjk package, despite being in a wadalab subdir.
-srcpattern +!d texmf-dist/source/latex/cjk/contrib/wadalab
-runpattern +!d texmf-dist/tex/latex/cjk/contrib/wadalab
-docpattern +!d texmf-dist/source/latex/cjk/contrib/wadalab



More information about the tex-live-commits mailing list