Skip to Content.
Sympa Menu

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

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 (77402077f45a3941225ed213b1cf1e7a0a5aa034)
  • Date: Mon, 2 May 2022 15:51:03 +0000

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

devel/chezscheme/DETAILS | 4
devel/chezscheme/HISTORY | 4
devel/chezscheme/patches/0001-Fix-missing-include-in-externs.h.patch | 85
----------
devel/reposurgeon/DETAILS | 4
devel/reposurgeon/HISTORY | 3
5 files changed, 11 insertions(+), 89 deletions(-)

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

chezscheme 9.5.8

commit dfd49f8423e6ba5c285dcf9562f6949a75d381dc
Author: Ismael Luceno <ismael AT sourcemage.org>
Commit: Ismael Luceno <ismael AT sourcemage.org>

reposurgeon 4.32

diff --git a/devel/chezscheme/DETAILS b/devel/chezscheme/DETAILS
index a45cee3..decedb8 100755
--- a/devel/chezscheme/DETAILS
+++ b/devel/chezscheme/DETAILS
@@ -1,8 +1,8 @@
SPELL=chezscheme
- VERSION=9.5.4
+ VERSION=9.5.8
SOURCE="csv$VERSION.tar.gz"

SOURCE_URL[0]=https://github.com/cisco/ChezScheme/releases/download/v$VERSION/$SOURCE
-
SOURCE_HASH=sha512:bc377fc5a7355703193849a21fbcd633f35b56f1f898c747fbddedc63ac979c124d966bdd9ed32366bb466881abdf44e03085af16e9795b10975a72c0d0b6123
+
SOURCE_HASH=sha512:80a4e9f61ddb254bef1a249af1d32f918df88390946fbe6eeb62c3510c760bf899285be1aba70eda9b54bcb0c6fef3fe7deace648993cd9cece2d08cf0ade9c0
SOURCE_DIRECTORY="$BUILD_DIRECTORY/${SOURCE%.tar.gz}"
WEB_SITE="https://www.scheme.com/";
LICENSE[0]="Apache-2.0"
diff --git a/devel/chezscheme/HISTORY b/devel/chezscheme/HISTORY
index e76321f..1d31091 100644
--- a/devel/chezscheme/HISTORY
+++ b/devel/chezscheme/HISTORY
@@ -1,3 +1,7 @@
+2022-05-02 Ismael Luceno <ismael AT sourcemage.org>
+ * patches/0001-Fix-missing-include-in-externs.h.patch: removed, merged
+ * DETAILS: updated spell to 9.5.8
+
2021-03-12 Ismael Luceno <ismael AT sourcemage.org>
* BUILD, DEPENDS, DETAILS, PRE_BUILD, PROVIDES,
patches/0001-Fix-missing-include-in-externs.h.patch: spell created
diff --git
a/devel/chezscheme/patches/0001-Fix-missing-include-in-externs.h.patch
b/devel/chezscheme/patches/0001-Fix-missing-include-in-externs.h.patch
deleted file mode 100644
index 2e63150..0000000
--- a/devel/chezscheme/patches/0001-Fix-missing-include-in-externs.h.patch
+++ /dev/null
@@ -1,85 +0,0 @@
-From c53dc961196b0568b5af0736d52d854daf27335d Mon Sep 17 00:00:00 2001
-From: Ismael Luceno <ismael AT iodev.co.uk>
-Date: Wed, 3 Mar 2021 20:01:33 +0100
-Subject: [PATCH] Fix missing include in externs.h
-
-The time.h header file is required to make the timespec struct available
-for the prototypes.
-
-Also remove the duplication in files including the system.h header file.
-
-Upstream-Status: Accepted
-Fixes: https://github.com/cisco/ChezScheme/issues/281
-Signed-off-by: Ismael Luceno <ismael AT iodev.co.uk>
----
- c/expeditor.c | 1 -
- c/externs.h | 1 +
- c/prim5.c | 1 -
- c/scheme.c | 1 -
- c/stats.c | 2 --
- 5 files changed, 1 insertions(+), 5 deletions(-)
-
-diff --git a/c/expeditor.c b/c/expeditor.c
-index dfd0b81df23d..c148e96bf62d 100644
---- a/c/expeditor.c
-+++ b/c/expeditor.c
-@@ -547,7 +547,6 @@ static void s_ee_write_char(wchar_t c) {
- #endif /* SOLARIS */
- #include <termios.h>
- #include <signal.h>
--#include <time.h>
- #include <fcntl.h>
- #include <sys/ioctl.h>
- #include <wchar.h>
-diff --git a/c/externs.h b/c/externs.h
-index c660f5306207..cab30fe00828 100644
---- a/c/externs.h
-+++ b/c/externs.h
-@@ -23,6 +23,7 @@
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
-+#include <time.h>
-
- #ifndef WIN32
- #include <unistd.h>
-diff --git a/c/prim5.c b/c/prim5.c
-index 3abde4638b0d..fd4a63bee202 100644
---- a/c/prim5.c
-+++ b/c/prim5.c
-@@ -21,7 +21,6 @@
- #include <sys/stat.h>
- #include <limits.h>
- #include <ctype.h>
--#include <time.h>
-
- /* locally defined functions */
- static INT s_errno PROTO((void));
-diff --git a/c/scheme.c b/c/scheme.c
-index d6a5afba890d..2f56352d9bfa 100644
---- a/c/scheme.c
-+++ b/c/scheme.c
-@@ -20,7 +20,6 @@
- #include <limits.h>
- #ifdef WIN32
- #include <io.h>
--#include <time.h>
- #else
- #include <sys/time.h>
- #endif
-diff --git a/c/stats.c b/c/stats.c
-index e254546e73b1..7157974f3838 100644
---- a/c/stats.c
-+++ b/c/stats.c
-@@ -34,8 +34,6 @@
- #include <sys/resource.h>
- #endif
-
--#include <time.h>
--
- static struct timespec starting_mono_tp;
-
- static long adjust_time_zone(ptr dtvec, struct tm *tmxp, ptr given_tzoff);
---
-2.30.1
-
diff --git a/devel/reposurgeon/DETAILS b/devel/reposurgeon/DETAILS
index 05901c9..28f3684 100755
--- a/devel/reposurgeon/DETAILS
+++ b/devel/reposurgeon/DETAILS
@@ -1,8 +1,8 @@
SPELL=reposurgeon
- VERSION=4.29
+ VERSION=4.32
SOURCE="$SPELL-$VERSION.tar.xz"
SOURCE_URL[0]="http://www.catb.org/~esr/$SPELL/$SOURCE";
-
SOURCE_HASH=sha512:5fcb2b64c2e1c684b9e3e37f55bb1de07d32572d369b45104b473b45b4830cbd496438c898b83a850afe337c331081946c9733040ab45c29750729f0d9e1206b
+
SOURCE_HASH=sha512:c884a132ac654f64158a23be95582df797d463445e82fafa9f3686dffa0db91ef23439326b9fee4f31ecf066e08328605163f57d3dfb917af6411a95a3fd61d5
SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
WEB_SITE="http://catb.org/esr/reposurgeon/";
LICENSE[0]="modified-bsd"
diff --git a/devel/reposurgeon/HISTORY b/devel/reposurgeon/HISTORY
index e72eeaa..d74d69e 100644
--- a/devel/reposurgeon/HISTORY
+++ b/devel/reposurgeon/HISTORY
@@ -1,3 +1,6 @@
+2022-05-02 Ismael Luceno <ismael AT sourcemage.org>
+ * DETAILS: updated spell to 4.32
+
2021-09-21 Ismael Luceno <ismael AT sourcemage.org>
* DETAILS: updated spell to 4.29




  • [SM-Commit] GIT changes to master grimoire by Ismael Luceno (77402077f45a3941225ed213b1cf1e7a0a5aa034), Ismael Luceno, 05/02/2022

Archive powered by MHonArc 2.6.24.

Top of Page