texlive[47869] Master/texmf-dist: latex-make (29may18)

commits+karl at tug.org commits+karl at tug.org
Tue May 29 22:54:43 CEST 2018


Revision: 47869
          http://tug.org/svn/texlive?view=revision&revision=47869
Author:   karl
Date:     2018-05-29 22:54:42 +0200 (Tue, 29 May 2018)
Log Message:
-----------
latex-make (29may18)

Modified Paths:
--------------
    trunk/Master/texmf-dist/doc/support/latex-make/README
    trunk/Master/texmf-dist/doc/support/latex-make/figlatex.pdf
    trunk/Master/texmf-dist/doc/support/latex-make/latex-make.pdf
    trunk/Master/texmf-dist/doc/support/latex-make/texdepends.pdf
    trunk/Master/texmf-dist/scripts/latex-make/figdepth.py
    trunk/Master/texmf-dist/scripts/latex-make/gensubfig.py
    trunk/Master/texmf-dist/source/support/latex-make/figlatex.dtx
    trunk/Master/texmf-dist/source/support/latex-make/latex-make.dtx
    trunk/Master/texmf-dist/source/support/latex-make/pdfswitch.dtx
    trunk/Master/texmf-dist/source/support/latex-make/texdepends.dtx
    trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.cfg
    trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.sty
    trunk/Master/texmf-dist/tex/latex/latex-make/pdfswitch.sty
    trunk/Master/texmf-dist/tex/latex/latex-make/texdepends.sty
    trunk/Master/texmf-dist/tex/latex/latex-make/texgraphicx.sty

Modified: trunk/Master/texmf-dist/doc/support/latex-make/README
===================================================================
--- trunk/Master/texmf-dist/doc/support/latex-make/README	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/doc/support/latex-make/README	2018-05-29 20:54:42 UTC (rev 47869)
@@ -2,7 +2,7 @@
               |    The LaTeX-Make system     |
               +------------------------------+
 
-VERSION: 2.2.3
+VERSION: 2.2.4
 
 DESCRIPTION
 ===========

Modified: trunk/Master/texmf-dist/doc/support/latex-make/figlatex.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/support/latex-make/latex-make.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/doc/support/latex-make/texdepends.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/scripts/latex-make/figdepth.py
===================================================================
--- trunk/Master/texmf-dist/scripts/latex-make/figdepth.py	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/scripts/latex-make/figdepth.py	2018-05-29 20:54:42 UTC (rev 47869)
@@ -9,6 +9,7 @@
 
 """
 
+from __future__ import print_function
 import optparse
 import os.path
 import sys
@@ -25,7 +26,7 @@
     display = True
     def show(depth, line):
         if depth in depths_to_keep:
-            print comment+line,
+            print(comment+line, end='')
             return True
         else:
             return False
@@ -35,11 +36,11 @@
             continue
         if line[0] in "\t ":
             if display:
-                print line
+                print(line)
         else:
             Fld = line.split(' ', 9999)
             if not Fld[0] or Fld[0] not in ('1', '2', '3', '4', '5'):
-                print comment+line
+                print(comment+line)
                 display = True
             elif Fld[0] == '4':
                 display = show(Fld[3], line)

Modified: trunk/Master/texmf-dist/scripts/latex-make/gensubfig.py
===================================================================
--- trunk/Master/texmf-dist/scripts/latex-make/gensubfig.py	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/scripts/latex-make/gensubfig.py	2018-05-29 20:54:42 UTC (rev 47869)
@@ -13,6 +13,7 @@
 
 """
 
+from __future__ import print_function
 from optparse import OptionParser
 import os.path
 
@@ -44,20 +45,19 @@
 
     count = 1
     for subfig in subfigs:
-        print "%s_%d%s: %s%s %s" % (root, count, ext, root, ext, sf_name)
-        print "\t%s %s" % (ds_name, subfig)
-        print ""
+        print("%s_%d%s: %s%s %s" % (root, count, ext, root, ext, sf_name))
+        print("\t%s %s" % (ds_name, subfig))
+        print("")
         count += 1
-    print "%s := $(foreach n, " % varname,
+    print("%s := $(foreach n, " % varname, end='')
     count = 1
     for subfig in subfigs:
-        print '%d ' % count,
+        print('%d ' % count, end='')
         count += 1
-    print ", %s_$(n)%s)" % (root, ext)
-    print "FILES_TO_DISTCLEAN += $(%s)" % varname
-    print "FIGS2CREATE_LIST += $(%s)" % varname
-    print "$(TEMPORAIRE): $(%s)" % varname
-    print "$(TEMPORAIRE): $(%s)" % varname
+    print(", %s_$(n)%s)" % (root, ext))
+    print("FILES_TO_DISTCLEAN += $(%s)" % varname)
+    print("FIGS2CREATE_LIST += $(%s)" % varname)
+    print("$(TEMPORAIRE): $(%s)" % varname)
 
 if __name__ == "__main__":
     main()

Modified: trunk/Master/texmf-dist/source/support/latex-make/figlatex.dtx
===================================================================
--- trunk/Master/texmf-dist/source/support/latex-make/figlatex.dtx	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/source/support/latex-make/figlatex.dtx	2018-05-29 20:54:42 UTC (rev 47869)
@@ -28,7 +28,7 @@
 %<compat> \ProvidesPackage{texgraphicx}%
 %    \fi
 %         \ProvidesFile{figlatex.dtx}
-[2017/01/08 v2.2.3 include fig and svg in LaTeX]
+[2018/05/29 v2.2.4 fix python syntax]
 % \iffalse
 %<*driver>
 \documentclass{ltxdoc}
@@ -100,12 +100,18 @@
 % This package allows \LaTeX\space to load XFig and SVG figures (or
 % subfigures) with the |\includegraphics| command.  
 % \end{abstract}
-% \CheckSum{217}
+% \CheckSum{218}
 %
 % \changes{v0.1.1}{2005/03/28}{Version 0.1.1 at last}
 % \changes{v0.1.2}{2005/03/29}{Manage index/glossary}
 % \changes{v0.1.3}{2008/01/28}{Better support for subfig with texdepends}
 % \changes{v0.1.4}{2011/09/25}{Support for svg with texdepends}
+% \changes{v2.2.0}{2016/02/09}{No changes in figlatex.dtx}
+% \changes{v2.2.1}{2016/02/09}{No changes in figlatex.dtx}
+% \changes{v2.2.2}{2016/02/09}{No changes in figlatex.dtx}
+% \changes{v2.2.3}{2017/01/08}{No changes in figlatex.dtx}
+% \changes{v2.2.4}{2018/05/29}{Add missing required package 'ifthen'}
+% \changes{v2.2.4}{2018/05/29}{Fix python syntax for python3}
 %
 % \makeatletter
 % \def\SpecialOptionIndex#1{\@bsphack
@@ -269,6 +275,7 @@
 %    \end{macrocode}
 % and requires some packages
 %    \begin{macrocode}
+\RequirePackage{ifthen}
 \RequirePackage{ifpdf}
 \RequirePackage{graphicx}
 %    \end{macrocode}

Modified: trunk/Master/texmf-dist/source/support/latex-make/latex-make.dtx
===================================================================
--- trunk/Master/texmf-dist/source/support/latex-make/latex-make.dtx	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/source/support/latex-make/latex-make.dtx	2018-05-29 20:54:42 UTC (rev 47869)
@@ -2,7 +2,7 @@
 %
 %<*dtx>
           \ProvidesFile{latex-make.dtx}
-[2017/01/08 v2.2.3 Makefile for LaTeX]
+[2018/05/29 v2.2.4 fix permissions on directories]
 %</dtx>
 %    \fi
 % \iffalse
@@ -111,6 +111,7 @@
 % \changes{v2.2.1}{2016/02/09}{Improve configure}
 % \changes{v2.2.2}{2016/02/09}{Fix bugs}
 % \changes{v2.2.3}{2017/01/08}{Add LuaLaTeX support}
+% \changes{v2.2.4}{2018/05/29}{Fix directory permissions on install}
 %
 % \makeatletter
 % \def\SpecialOptionIndex#1{\@bsphack
@@ -1719,6 +1720,7 @@
 
 """
 
+from __future__ import print_function
 import optparse
 import os.path
 import sys
@@ -1735,7 +1737,7 @@
     display = True
     def show(depth, line):
         if depth in depths_to_keep:
-            print comment+line,
+            print(comment+line, end='')
             return True
         else:
             return False
@@ -1745,11 +1747,11 @@
             continue
         if line[0] in "\t ":
             if display:
-                print line
+                print(line)
         else:
             Fld = line.split(' ', 9999)
             if not Fld[0] or Fld[0] not in ('1', '2', '3', '4', '5'):
-                print comment+line
+                print(comment+line)
                 display = True
             elif Fld[0] == '4':
                 display = show(Fld[3], line)
@@ -1779,6 +1781,7 @@
 
 """
 
+from __future__ import print_function
 from optparse import OptionParser
 import os.path
 
@@ -1810,20 +1813,19 @@
 
     count = 1
     for subfig in subfigs:
-        print "%s_%d%s: %s%s %s" % (root, count, ext, root, ext, sf_name)
-        print "\t%s %s" % (ds_name, subfig)
-        print ""
+        print("%s_%d%s: %s%s %s" % (root, count, ext, root, ext, sf_name))
+        print("\t%s %s" % (ds_name, subfig))
+        print("")
         count += 1
-    print "%s := $(foreach n, " % varname,
+    print("%s := $(foreach n, " % varname, end='')
     count = 1
     for subfig in subfigs:
-        print '%d ' % count,
+        print('%d ' % count, end='')
         count += 1
-    print ", %s_$(n)%s)" % (root, ext)
-    print "FILES_TO_DISTCLEAN += $(%s)" % varname
-    print "FIGS2CREATE_LIST += $(%s)" % varname
-    print "$(TEMPORAIRE): $(%s)" % varname
-    print "$(TEMPORAIRE): $(%s)" % varname
+    print(", %s_$(n)%s)" % (root, ext))
+    print("FILES_TO_DISTCLEAN += $(%s)" % varname)
+    print("FIGS2CREATE_LIST += $(%s)" % varname)
+    print("$(TEMPORAIRE): $(%s)" % varname)
 
 if __name__ == "__main__":
     main()

Modified: trunk/Master/texmf-dist/source/support/latex-make/pdfswitch.dtx
===================================================================
--- trunk/Master/texmf-dist/source/support/latex-make/pdfswitch.dtx	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/source/support/latex-make/pdfswitch.dtx	2018-05-29 20:54:42 UTC (rev 47869)
@@ -26,7 +26,7 @@
 %<package>\ProvidesPackage{pdfswitch}%
 %    \fi
 %         \ProvidesFile{pdfswitch.dtx}
-[2017/01/08 v2.2.3 Automatic switch between pdf and ps]
+[2018/05/29 v2.2.4 better integration with other packages]
 %<*package>
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 % SWITCH FOR PDFLATEX or LATEX
@@ -33,9 +33,9 @@
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %%%
 \RequirePackage{ae,aeguill}
-\RequirePackage{color}
 \RequirePackage{ifthen}
 \RequirePackage{ifpdf}
+\RequirePackage{etoolbox}
 
 \newboolean{nocolor at pdfswitch}
 \setboolean{nocolor at pdfswitch}{false}
@@ -55,18 +55,33 @@
 
 \ProcessOptions
 
-\definecolor{pdfurlcolor}{rgb}{0,0,0.6}
-\definecolor{pdfcitecolor}{rgb}{0,0.6,0}
-\definecolor{pdflinkcolor}{rgb}{0.6,0,0}
-
- %%%%%%%%%%%%%%%%%%%%%%%%% graphicx and thumbpdf %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%% graphicx and thumbpdf %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+% differ the hyperref and (x)color package loading
+\AtEndPreamble{%
+  \RequirePackage{hyperref}%
+  \@ifundefined{colorbox}{%
+    \IfFileExists{xcolor.sty}{\RequirePackage{xcolor}}%
+      {\RequirePackage{color}}%
+  }{}%
+  \definecolor{pdfurlcolor}{rgb}{0,0,0.6}%
+  \definecolor{pdfcitecolor}{rgb}{0,0.6,0}%
+  \definecolor{pdflinkcolor}{rgb}{0.6,0,0}%
+  %
+  \RequirePackage{graphicx}%
+}%
 \ifpdf
-\usepackage[pdftex]{graphicx}      %%% graphics for pdfLaTeX
-\DeclareGraphicsExtensions{.pdf}   %%% standard extension for included graphics
-\usepackage[pdftex]{thumbpdf}      %%% thumbnails for pdflatex
+\PassOptionsToPackage{pdftex}{graphicx}  %%% graphics for pdfLaTeX
+\PassOptionsToPackage{pdftex}{color}
+\PassOptionsToPackage{pdftex}{thumbpdf}  %%% thumbnails for pdflatex
+\AtEndPreamble{%
+  \DeclareGraphicsExtensions{.pdf}       %%% standard extension for included graphics
+  \RequirePackage{thumbpdf}%
+}%  
 \else
-\usepackage[dvips]{graphicx}       %%% graphics for dvips
-\DeclareGraphicsExtensions{.eps}   %%% standard extension for included graphics
+\PassOptionsToPackage{dvips}{graphicx}   %%% graphics for dvips
+\AtEndPreamble{%
+  \DeclareGraphicsExtensions{.eps}       %%% standard extension for included graphics
+}%  
 %\usepackage[ps2pdf]{thumbpdf}      %%% thumbnails for ps2pdf
 \fi
 
@@ -118,30 +133,20 @@
   \edef\keys at pdfswitch{\keys at pdfswitch,pagebackref}%
 }{}
 
-\usepackage[\keys at pdfswitch]{hyperref}
+\PassOptionsToPackage{\keys at pdfswitch}{hyperref}%
 
 %%%%%%%%%%%%%%%%%%%%%%%%% HyperSetup %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\ifpdf
 \AtBeginDocument{
+  \ifpdf
   \hypersetup{
     pdfauthor   = {\@author},
     pdftitle    = {\@title},
     pdfsubject  = {\@ifundefined{@subject}{}{\@subject}},
-    pdfkeywords = {\@ifundefined{@keywords}{}{\@keywords}}
+    pdfkeywords = {\@ifundefined{@keywords}{}{\@keywords}},
   }
+  %%% pdfcreator, pdfproducer, and Creation Date are automatically set by pdflatex !!!
+  \pdfadjustspacing=1                %%% force LaTeX-like character spacing
+  \else%
+  \fi%
 }
-%%% pdfcreator, pdfproducer, and Creation Date are automatically set by pdflatex !!!
-\pdfadjustspacing=1                %%% force LaTeX-like character spacing
-\else
-\AtBeginDocument{
-%  \hypersetup{
-%    pdfauthor   = {\@author},
-%    pdftitle    = {\@title},
-%    pdfsubject  = {\@ifundefined{@subject}{}{\@subject}},
-%    pdfkeywords = {\@ifundefined{@keywords}{}{\@keywords}},
-%    pdfcreator  = {LaTeX with hyperref package},
-%    pdfproducer = {dvips + ps2pdf}
-%  }
-}
-\fi
 %</package>

Modified: trunk/Master/texmf-dist/source/support/latex-make/texdepends.dtx
===================================================================
--- trunk/Master/texmf-dist/source/support/latex-make/texdepends.dtx	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/source/support/latex-make/texdepends.dtx	2018-05-29 20:54:42 UTC (rev 47869)
@@ -27,7 +27,7 @@
 %<package>\ProvidesPackage{texdepends}%
 %    \fi
 %         \ProvidesFile{texdepends.dtx}
-[2017/01/08 v2.2.3 Automatic depends generation]
+[2018/05/29 v2.2.4 no change in this version]
 % \iffalse
 %<*driver>
 \documentclass{ltxdoc}

Modified: trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.cfg
===================================================================
--- trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.cfg	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.cfg	2018-05-29 20:54:42 UTC (rev 47869)
@@ -40,7 +40,7 @@
 %% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 %%
  \ProvidesFile{figlatex.cfg}%
-[2017/01/08 v2.2.3 include fig and svg in LaTeX]
+[2018/05/29 v2.2.4 fix python syntax]
  %\compatibility
  %\debug
 \endinput

Modified: trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.sty	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/tex/latex/latex-make/figlatex.sty	2018-05-29 20:54:42 UTC (rev 47869)
@@ -41,7 +41,7 @@
 %%
 \NeedsTeXFormat{LaTeX2e}%
 \ProvidesPackage{figlatex}%
-[2017/01/08 v2.2.3 include fig and svg in LaTeX]
+[2018/05/29 v2.2.4 fix python syntax]
 \newif\ifFL at compatibility
 \DeclareOption{compatibility}{%
   %\PackageWarning{figlatex}{option compatibility}%
@@ -67,6 +67,7 @@
   }
 }
 \ProcessOptions
+\RequirePackage{ifthen}
 \RequirePackage{ifpdf}
 \RequirePackage{graphicx}
 \RequirePackage{color}

Modified: trunk/Master/texmf-dist/tex/latex/latex-make/pdfswitch.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/latex-make/pdfswitch.sty	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/tex/latex/latex-make/pdfswitch.sty	2018-05-29 20:54:42 UTC (rev 47869)
@@ -41,14 +41,14 @@
 %%
 \NeedsTeXFormat{LaTeX2e}%
 \ProvidesPackage{pdfswitch}%
-[2017/01/08 v2.2.3 Automatic switch between pdf and ps]
+[2018/05/29 v2.2.4 better integration with other packages]
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %%%
 \RequirePackage{ae,aeguill}
-\RequirePackage{color}
 \RequirePackage{ifthen}
 \RequirePackage{ifpdf}
+\RequirePackage{etoolbox}
 
 \newboolean{nocolor at pdfswitch}
 \setboolean{nocolor at pdfswitch}{false}
@@ -68,18 +68,32 @@
 
 \ProcessOptions
 
-\definecolor{pdfurlcolor}{rgb}{0,0,0.6}
-\definecolor{pdfcitecolor}{rgb}{0,0.6,0}
-\definecolor{pdflinkcolor}{rgb}{0.6,0,0}
-
- %%%%%%%%%%%%%%%%%%%%%%%%% graphicx and thumbpdf %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+%%%%%%%%%%%%%%%%%%%%%%%%% graphicx and thumbpdf %%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+\AtEndPreamble{%
+  \RequirePackage{hyperref}%
+  \@ifundefined{colorbox}{%
+    \IfFileExists{xcolor.sty}{\RequirePackage{xcolor}}%
+      {\RequirePackage{color}}%
+  }{}%
+  \definecolor{pdfurlcolor}{rgb}{0,0,0.6}%
+  \definecolor{pdfcitecolor}{rgb}{0,0.6,0}%
+  \definecolor{pdflinkcolor}{rgb}{0.6,0,0}%
+  %
+  \RequirePackage{graphicx}%
+}%
 \ifpdf
-\usepackage[pdftex]{graphicx}      %%% graphics for pdfLaTeX
-\DeclareGraphicsExtensions{.pdf}   %%% standard extension for included graphics
-\usepackage[pdftex]{thumbpdf}      %%% thumbnails for pdflatex
+\PassOptionsToPackage{pdftex}{graphicx}  %%% graphics for pdfLaTeX
+\PassOptionsToPackage{pdftex}{color}
+\PassOptionsToPackage{pdftex}{thumbpdf}  %%% thumbnails for pdflatex
+\AtEndPreamble{%
+  \DeclareGraphicsExtensions{.pdf}       %%% standard extension for included graphics
+  \RequirePackage{thumbpdf}%
+}%
 \else
-\usepackage[dvips]{graphicx}       %%% graphics for dvips
-\DeclareGraphicsExtensions{.eps}   %%% standard extension for included graphics
+\PassOptionsToPackage{dvips}{graphicx}   %%% graphics for dvips
+\AtEndPreamble{%
+  \DeclareGraphicsExtensions{.eps}       %%% standard extension for included graphics
+}%
 \fi
 
 %%%%%%%%%%%%%%%%%%%%%%%%% Basic options for hyperref %%%%%%%%%%%%%%%%%%%%%%%%%
@@ -130,24 +144,22 @@
   \edef\keys at pdfswitch{\keys at pdfswitch,pagebackref}%
 }{}
 
-\usepackage[\keys at pdfswitch]{hyperref}
+\PassOptionsToPackage{\keys at pdfswitch}{hyperref}%
 
 %%%%%%%%%%%%%%%%%%%%%%%%% HyperSetup %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-\ifpdf
 \AtBeginDocument{
+  \ifpdf
   \hypersetup{
     pdfauthor   = {\@author},
     pdftitle    = {\@title},
     pdfsubject  = {\@ifundefined{@subject}{}{\@subject}},
-    pdfkeywords = {\@ifundefined{@keywords}{}{\@keywords}}
+    pdfkeywords = {\@ifundefined{@keywords}{}{\@keywords}},
   }
+  %%% pdfcreator, pdfproducer, and Creation Date are automatically set by pdflatex !!!
+  \pdfadjustspacing=1                %%% force LaTeX-like character spacing
+  \else%
+  \fi%
 }
-%%% pdfcreator, pdfproducer, and Creation Date are automatically set by pdflatex !!!
-\pdfadjustspacing=1                %%% force LaTeX-like character spacing
-\else
-\AtBeginDocument{
-}
-\fi
 \endinput
 %%
 %% End of file `pdfswitch.sty'.

Modified: trunk/Master/texmf-dist/tex/latex/latex-make/texdepends.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/latex-make/texdepends.sty	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/tex/latex/latex-make/texdepends.sty	2018-05-29 20:54:42 UTC (rev 47869)
@@ -42,7 +42,7 @@
 %%
 \NeedsTeXFormat{LaTeX2e}%
 \ProvidesPackage{texdepends}%
-[2017/01/08 v2.2.3 Automatic depends generation]
+[2018/05/29 v2.2.4 no change in this version]
 \RequirePackage{ifthen}
 \newboolean{TD at debug}
 \newcommand{\TD at option@debug}[1][true]{%

Modified: trunk/Master/texmf-dist/tex/latex/latex-make/texgraphicx.sty
===================================================================
--- trunk/Master/texmf-dist/tex/latex/latex-make/texgraphicx.sty	2018-05-29 20:54:18 UTC (rev 47868)
+++ trunk/Master/texmf-dist/tex/latex/latex-make/texgraphicx.sty	2018-05-29 20:54:42 UTC (rev 47869)
@@ -40,7 +40,7 @@
 %% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 %%
  \ProvidesPackage{texgraphicx}%
-[2017/01/08 v2.2.3 include fig and svg in LaTeX]
+[2018/05/29 v2.2.4 fix python syntax]
 \PackageWarning{texgraphicx}{'texgraphicx' is now
   deprecated\MessageBreak%
   Please, consider switching to 'figlatex'



More information about the tex-live-commits mailing list