Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b69e9c4c4979f20ea5a9868170f70a12acc37ef3)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ismael Luceno <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b69e9c4c4979f20ea5a9868170f70a12acc37ef3)
  • Date: Sat, 27 Jan 2024 14:04:37 +0000

GIT changes to master grimoire by Ismael Luceno <ismael AT sourcemage.org>:

doc/lout/DETAILS
| 4 -
doc/lout/HISTORY
| 5 +
doc/lout/patches/0001-Avoid-calling-catclose-with-an-invalid-argument.patch
| 30 ----------
3 files changed, 7 insertions(+), 32 deletions(-)

New commits:
commit b69e9c4c4979f20ea5a9868170f70a12acc37ef3
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

lout 3.43

diff --git a/doc/lout/DETAILS b/doc/lout/DETAILS
index 4f3e029..c5454ba 100755
--- a/doc/lout/DETAILS
+++ b/doc/lout/DETAILS
@@ -1,10 +1,10 @@
SPELL=lout
- VERSION=3.42.2
+ VERSION=3.43
SECURITY_PATCH=1
SOURCE=$SPELL-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION

SOURCE_URL[0]=https://github.com/william8000/lout/archive/refs/tags/$VERSION.tar.gz
-
SOURCE_HASH=sha512:1e3b419f03232a55c8d6b2d904e8a4fed4a601b4bc93f9e85bdfc78a56b6f93837d4751ae1d877e2ef19215cd9ec2ad76d83ec75cd7d74d668c89b14014304d9
+
SOURCE_HASH=sha512:61745f16f217b5d52a4f608161dd77cd188edf2231cb55d3be24d9fcf779e8bdacc5d5bd5bd03cb66f629ea0bcb984c3b514ec60972d72fcfe935fb69f79e369
WEB_SITE=https://github.com/william8000/lout
ENTERED=20020507
LICENSE=GLP
diff --git a/doc/lout/HISTORY b/doc/lout/HISTORY
index b72a12e..23369a9 100644
--- a/doc/lout/HISTORY
+++ b/doc/lout/HISTORY
@@ -1,3 +1,8 @@
+2024-01-27 Ismael Luceno <ismael AT sourcemage.org>
+ * patches/0001-Avoid-calling-catclose-with-an-invalid-argument.patch:
+ removed, no longer needed
+ * DETAILS: updated spell to 3.43
+
2024-01-25 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS, INSTALL, PRE_BUILD: updated spell to 3.42.2
SECURITY_PATCH++
diff --git
a/doc/lout/patches/0001-Avoid-calling-catclose-with-an-invalid-argument.patch
b/doc/lout/patches/0001-Avoid-calling-catclose-with-an-invalid-argument.patch
deleted file mode 100644
index f561864..0000000
---
a/doc/lout/patches/0001-Avoid-calling-catclose-with-an-invalid-argument.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From d6e2fe49e5499cf92a357a3ff90b16252daf6163 Mon Sep 17 00:00:00 2001
-From: Ismael Luceno <ismael AT iodev.co.uk>
-Date: Thu, 25 Jan 2024 07:56:58 +0100
-Subject: [PATCH] Avoid calling catclose with an invalid argument
-
-Causes a segfault with musl 1.2.4 and earlier.
-
-Upstream-Status: Inappropriate
-Signed-off-by: Ismael Luceno <ismael AT iodev.co.uk>
----
- z01.c | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/z01.c b/z01.c
-index 474c88b4704a..58464e834fc1 100644
---- a/z01.c
-+++ b/z01.c
-@@ -974,7 +974,8 @@ int main(int argc, char *argv[])
- while( run_num <= runs_to_do );
-
- #if LOCALE_ON
-- catclose(MsgCat);
-+ if (MsgCat != (nl_catd)-1)
-+ catclose(MsgCat);
- #endif
-
- exit(0);
---
-2.43.0
-



  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (b69e9c4c4979f20ea5a9868170f70a12acc37ef3), Ismael Luceno, 01/27/2024

Archive powered by MHonArc 2.6.24.

Top of Page