texlive[51799] trunk: l3build (1aug19)

commits+karl at tug.org commits+karl at tug.org
Thu Aug 1 23:19:27 CEST 2019


Revision: 51799
          http://tug.org/svn/texlive?view=revision&revision=51799
Author:   karl
Date:     2019-08-01 23:19:27 +0200 (Thu, 01 Aug 2019)
Log Message:
-----------
l3build (1aug19)

Modified Paths:
--------------
    trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
    trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md
    trunk/Master/texmf-dist/doc/latex/l3build/README.md
    trunk/Master/texmf-dist/doc/latex/l3build/l3build.pdf
    trunk/Master/texmf-dist/doc/man/man1/l3build.1
    trunk/Master/texmf-dist/doc/man/man1/l3build.man1.pdf
    trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua
    trunk/Master/texmf-dist/scripts/l3build/l3build.lua
    trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx

Modified: trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua
===================================================================
--- trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2019-08-01 21:19:05 UTC (rev 51798)
+++ trunk/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua	2019-08-01 21:19:27 UTC (rev 51799)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2019-07-30"
+release_date = "2019-07-31"
 
 -- File operations are aided by the LuaFileSystem module
 local lfs = require("lfs")

Modified: trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2019-08-01 21:19:05 UTC (rev 51798)
+++ trunk/Master/texmf-dist/doc/latex/l3build/CHANGELOG.md	2019-08-01 21:19:27 UTC (rev 51799)
@@ -7,6 +7,12 @@
 
 ## [Unreleased]
 
+## [2019-07-31]
+
+### Fixed
+
+- Interaction between secondary files in some tests
+
 ## [2019-07-30]
 
 ### Added
@@ -298,7 +304,8 @@
 - Rationalise short option names: removed `-d`, `-E`, `-r`
 - Target `cmdcheck`: specific to LaTeX3 kernel work
 
-[Unreleased]: https://github.com/latex3/l3build/compare/2019-07-30...HEAD
+[Unreleased]: https://github.com/latex3/l3build/compare/2019-07-31...HEAD
+[2019-07-31]: https://github.com/latex3/l3build/compare/2019-07-30...2019-07-31
 [2019-07-30]: https://github.com/latex3/l3build/compare/2019-06-27...2019-07-30
 [2019-06-27]: https://github.com/latex3/l3build/compare/2019-06-26...2019-06-27
 [2019-06-26]: https://github.com/latex3/l3build/compare/2019-06-18...2019-06-26

Modified: trunk/Master/texmf-dist/doc/latex/l3build/README.md
===================================================================
--- trunk/Master/texmf-dist/doc/latex/l3build/README.md	2019-08-01 21:19:05 UTC (rev 51798)
+++ trunk/Master/texmf-dist/doc/latex/l3build/README.md	2019-08-01 21:19:27 UTC (rev 51799)
@@ -1,7 +1,7 @@
 l3build: a testing and building system for LaTeX3
 =================================================
 
-Release 2019-07-30
+Release 2019-07-31
 
 Overview
 --------

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

Modified: trunk/Master/texmf-dist/doc/man/man1/l3build.1
===================================================================
--- trunk/Master/texmf-dist/doc/man/man1/l3build.1	2019-08-01 21:19:05 UTC (rev 51798)
+++ trunk/Master/texmf-dist/doc/man/man1/l3build.1	2019-08-01 21:19:27 UTC (rev 51799)
@@ -1,4 +1,4 @@
-.TH l3build 1 "2019-07-30"
+.TH l3build 1 "2019-07-31"
 .SH NAME
 l3build \- Checking and building packages
 .SH SYNOPSIS

Modified: trunk/Master/texmf-dist/doc/man/man1/l3build.man1.pdf
===================================================================
(Binary files differ)

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua	2019-08-01 21:19:05 UTC (rev 51798)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build-check.lua	2019-08-01 21:19:27 UTC (rev 51799)
@@ -773,9 +773,10 @@
            ext ~= lveext and
            ext ~= logext then
            local newname = gsub(file,"(%.[^.]+)$","." .. engine .. "%1")
-           if not fileexists(testdir,newname) then
-             ren(testdir,file,newname)
+           if fileexists(testdir,newname) then
+             rm(testdir,newname)
            end
+           ren(testdir,file,newname)
         end
       end
     end

Modified: trunk/Master/texmf-dist/scripts/l3build/l3build.lua
===================================================================
--- trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2019-08-01 21:19:05 UTC (rev 51798)
+++ trunk/Master/texmf-dist/scripts/l3build/l3build.lua	2019-08-01 21:19:27 UTC (rev 51799)
@@ -25,7 +25,7 @@
 --]]
 
 -- Version information
-release_date = "2019-07-30"
+release_date = "2019-07-31"
 
 -- File operations are aided by the LuaFileSystem module
 local lfs = require("lfs")

Modified: trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx
===================================================================
--- trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2019-08-01 21:19:05 UTC (rev 51798)
+++ trunk/Master/texmf-dist/source/latex/l3build/l3build.dtx	2019-08-01 21:19:27 UTC (rev 51799)
@@ -229,7 +229,7 @@
 %    }^^A
 % }
 %
-% \date{Released 2019-07-30}
+% \date{Released 2019-07-31}
 %
 % \maketitle
 % \tableofcontents



More information about the tex-live-commits mailing list