[latex3-commits] [git/LaTeX3-latex3-lualibs] master, v2.68-20191029: uploaded version 2.69, docu corrections (da63abf)
Ulrike Fischer
fischer at troubleshooting-tex.de
Wed Nov 6 11:41:14 CET 2019
Repository : https://github.com/latex3/lualibs
On branches: master,v2.68-20191029
Link : https://github.com/latex3/lualibs/commit/da63abfe82097ddb9814c32e98cd2900c5d04f5d
>---------------------------------------------------------------
commit da63abfe82097ddb9814c32e98cd2900c5d04f5d
Author: Ulrike Fischer <fischer at troubleshooting-tex.de>
Date: Wed Nov 6 11:41:14 2019 +0100
uploaded version 2.69, docu corrections
>---------------------------------------------------------------
da63abfe82097ddb9814c32e98cd2900c5d04f5d
CTANREADME.md | 10 ++++++----
NEWS | 5 ++++-
README.md | 8 ++++----
build.lua | 19 +++++++++++++------
lualibs-ctan.zip | Bin 536321 -> 534098 bytes
lualibs.dtx | 28 ++++++++++++++--------------
6 files changed, 41 insertions(+), 29 deletions(-)
diff --git a/CTANREADME.md b/CTANREADME.md
index d8a1b99..b4b8fa7 100644
--- a/CTANREADME.md
+++ b/CTANREADME.md
@@ -1,8 +1,10 @@
# The Lualibs Package
-VERSION: 2.68
+VERSION: 2.69
-DATE: 2019-11-05
+DATE: 2019-11-06
+
+FONTLOADERDATE: 2019-10-29
Lualibs is a collection of Lua modules useful for general programming.
@@ -12,8 +14,8 @@ for use independent of ConTeXt.
This package has been developed by the LuaLaTeX development team on
<https://github.com/lualatex/lualibs>.
-The current version has been build by Ulrike Fischer on
-<https://github.com/u-fischer/lualibs>. The date equals the date of the context files.
+The current version has been build by the LaTeX3 Project Team on
+<https://github.com/latex3/lualibs/>. The fontloader date equals the date of the context files.
See the 'NEWS' file for version history.
diff --git a/NEWS b/NEWS
index 73e5961..075b7ce 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
History of the lualibs package
-2019/10/29 v2.68/
+2019/11/06 v2.69/
+ * corrected github address and version info.
+
+2019/11/05 v2.68/
* sync with Context current as of 2019/10/29
2019/08/11 v2.67/
diff --git a/README.md b/README.md
index 0703688..741e8c5 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# The Lualibs Package
-![Version: 2.68](https://img.shields.io/badge/current_version-2.68-blue.svg?style=flat-square)
-![Date: 2019-11-05](https://img.shields.io/badge/date-2019--11--05-blue.svg?style=flat-square)
+![Version: 2.69](https://img.shields.io/badge/current_version-2.69-blue.svg?style=flat-square)
+![Date: 2019-11-06](https://img.shields.io/badge/date-2019--11--06-blue.svg?style=flat-square)
[![License: GNU GPLv2](https://img.shields.io/badge/license-GNU_GPLv2-blue.svg?style=flat-square)](http://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
@@ -14,8 +14,8 @@ for use independent of ConTeXt.
This package has been developed by the LuaLaTeX development team on
<http://github.com/lualatex/lualibs>.
-The current version has been build by Ulrike Fischer on
-<https://github.com/u-fischer/lualibs> from context 2019-11-05.
+The current version has been build by the LaTeX3 Project Team on
+<https://github.com/latex3/lualibs/> from context 2019-10-29.
Please see the documentation lualibs.pdf for more information.
diff --git a/build.lua b/build.lua
index 67da6b4..83a77ba 100644
--- a/build.lua
+++ b/build.lua
@@ -1,6 +1,6 @@
-- Build script for lualibs
-packageversion= "2.68"
-packagedate= "2019-11-05"
+packageversion= "2.69"
+packagedate= "2019-11-06"
fontloaderdate= "2019-10-29" -- only as record.
module = "lualibs"
@@ -21,9 +21,9 @@ uploadconfig = {
license = "gpl2",
summary = "Additional Lua functions for LuaTeX macro programmers",
ctanPath = "/macros/luatex/generic/lualibs",
- repository = mydata.github .. "lualibs",
- bugtracker = mydata.github .. "lualibs/issues",
- support = mydata.github .. "lualibs/issues",
+ repository = "https://github.com/latex3/lualibs",
+ bugtracker = "https://github.com/latex3/lualibs/issues",
+ support = "https://github.com/latex3/lualibs/issues",
uploader = mydata.name,
email = mydata.email,
update = true ,
@@ -31,7 +31,7 @@ uploadconfig = {
note = [[Uploaded automatically by l3build... Description and authors unchanged]],
description=[[Lualibs is a collection of Lua modules useful for general programming.
The bundle is based on lua modules shipped with ConTeXt, and made available in this bundle for use independent of ConTeXt.]],
- announcement="This version syncs the files with the ConTeXt files from "..fontloaderdate.."."
+ announcement="This version syncs the files with the ConTeXt files from "..fontloaderdate.." and corrects some documentation issues."
}
-- check (currently no tests)
@@ -121,6 +121,10 @@ function update_tag (file,content,tagname,tagdate)
content = string.gsub (content,
"%d%d%d%d%-%d%d%-%d%d",
packagedate )
+ content = string.gsub (content,
+ "context %d%d%d%d%-%d%d%-%d%d",
+ "context ".. fontloaderdate )
+
local imgpackagedate = string.gsub (packagedate,"%-","--")
content = string.gsub (content,
"%d%d%d%d%-%-%d%d%-%-%d%d",
@@ -133,6 +137,9 @@ function update_tag (file,content,tagname,tagdate)
content = string.gsub (content,
"DATE: %d%d%d%d%-%d%d%-%d%d",
"DATE: " .. packagedate )
+ content = string.gsub (content,
+ "FONTLOADERDATE: %d%d%d%d%-%d%d%-%d%d",
+ "FONTLOADERDATE: " .. fontloaderdate )
return content
end
return content
diff --git a/lualibs-ctan.zip b/lualibs-ctan.zip
index eb9ecbc..93873ac 100644
Binary files a/lualibs-ctan.zip and b/lualibs-ctan.zip differ
diff --git a/lualibs.dtx b/lualibs.dtx
index f5ae034..66e40a1 100644
--- a/lualibs.dtx
+++ b/lualibs.dtx
@@ -37,7 +37,7 @@
\input docstrip.tex
\Msg{************************************************************************}
\Msg{* Installation}
-\Msg{* Package: lualibs 2019-11-05 v2.68 Lua additional functions.}
+\Msg{* Package: lualibs 2019-11-06 v2.69 Lua additional functions.}
\Msg{************************************************************************}
\keepsilent
@@ -48,7 +48,7 @@
\preamble
This is a generated file.
-Copyright (C) 2009--2018 by
+Copyright (C) 2009--2019 by
PRAGMA ADE / ConTeXt Development Team
The LuaLaTeX Dev Team
@@ -107,7 +107,7 @@ and lualibs-extended.lua.
%<*driver>
\NeedsTeXFormat{LaTeX2e}
\ProvidesFile{lualibs.drv}
- [2019/11/05 v2.68 Lua Libraries.]
+ [2019/11/06 v2.69 Lua Libraries.]
\documentclass{ltxdoc}
\usepackage{fancyvrb,xspace}
\usepackage[x11names]{xcolor}
@@ -208,10 +208,10 @@ and lualibs-extended.lua.
% \GetFileInfo{lualibs.drv}
%
% \title{The \identifier{lualibs} package}
-% \date{2019/11/05 v2.68}
+% \date{2019/11/06 v2.69}
% \author{Élie Roux · \email{elie.roux at telecom-bretagne.eu}\\
% Philipp Gesang · \email{phg at phi-gamma.net}\\
-% Ulrike Fischer · \email{fischer at troubleshooting-tex.de}\\
+% The \LaTeX3 Project · \email{https://github.com/latex3/lualibs/}\\
% }
%
% \maketitle
@@ -418,7 +418,7 @@ and lualibs-extended.lua.
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% \part{\fileent{lualibs.lua}}
+% \part{\texorpdfstring{\fileent{lualibs.lua}}{lualibs.lua}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% \iffalse
@@ -429,8 +429,8 @@ lualibs = lualibs or { }
lualibs.module_info = {
name = "lualibs",
- version = "2.68", --TAGVERSION
- date = "2019-11-05", --TAGDATE
+ version = "2.69", --TAGVERSION
+ date = "2019-11-06", --TAGDATE
description = "ConTeXt Lua standard libraries.",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL & Elie Roux & Philipp Gesang",
copyright = "PRAGMA ADE / ConTeXt Development Team",
@@ -570,7 +570,7 @@ config.lualibs.load_extended = true
% \fi
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% \part{\fileent{lualibs-basic.lua}}
+% \part{\texorpdfstring{\fileent{lualibs-basic.lua}}{lualibs-basic.lua}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% \iffalse
@@ -583,8 +583,8 @@ local loadmodule = lualibs.loadmodule
local lualibs_basic_module = {
name = "lualibs-basic",
- version = "2.68", --TAGVERSION
- date = "2019-11-05", --TAGDATE
+ version = "2.69", --TAGVERSION
+ date = "2019-11-06", --TAGDATE
description = "ConTeXt Lua libraries -- basic collection.",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL & Elie Roux & Philipp Gesang",
copyright = "PRAGMA ADE / ConTeXt Development Team",
@@ -640,7 +640,7 @@ lualibs.basic_loaded = true
% \fi
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-% \part{\fileent{lualibs-extended.lua}}
+% \part{\texorpdfstring{\fileent{lualibs-extended.lua}}{lualibs-extended.lua}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% \iffalse
@@ -665,8 +665,8 @@ lualibs = lualibs or { }
local lualibs_extended_module = {
name = "lualibs-extended",
- version = "2.68", --TAGVERSION
- date = "2019-11-05", --TAGDATE
+ version = "2.69", --TAGVERSION
+ date = "2019-11-06", --TAGDATE
description = "ConTeXt Lua libraries -- extended collection.",
author = "Hans Hagen, PRAGMA-ADE, Hasselt NL & Elie Roux & Philipp Gesang",
copyright = "PRAGMA ADE / ConTeXt Development Team",
More information about the latex3-commits
mailing list