lang/chicken: update to 5.4.0

Changes: https://code.call-cc.org/releases/5.4.0/NEWS
This commit is contained in:
Pietro Cerutti 2024-07-16 10:23:28 +00:00
parent 10a97a7b95
commit fcde585fc4
3 changed files with 5 additions and 34 deletions

View file

@ -1,6 +1,5 @@
PORTNAME= chicken
DISTVERSION= 5.3.0
PORTREVISION= 4
DISTVERSION= 5.4.0
PORTEPOCH= 1
CATEGORIES= lang scheme
MASTER_SITES= https://code.call-cc.org/releases/${DISTVERSION}/
@ -28,10 +27,8 @@ MAKE_ARGS= C_COMPILER="${CC}" \
LIBRARIAN="${AR}" \
LINKER_OPTIONS="${LDFLAGS}" \
MANDIR=${PREFIX}/share/man \
PREFIX=${PREFIX} \
CHICKEN=./chicken
PREFIX=${PREFIX}
MAKE_JOBS_UNSAFE= yes
TEST_TARGET= check
TEST_ARGS= ${MAKE_ARGS} PROGRAM_PREFIX=chicken-

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1637825548
SHA256 (chicken-5.3.0.tar.gz) = c3ad99d8f9e17ed810912ef981ac3b0c2e2f46fb0ecc033b5c3b6dca1bdb0d76
SIZE (chicken-5.3.0.tar.gz) = 4069549
TIMESTAMP = 1721112689
SHA256 (chicken-5.4.0.tar.gz) = 3c5d4aa61c1167bf6d9bf9eaf891da7630ba9f5f3c15bf09515a7039bfcdec5f
SIZE (chicken-5.4.0.tar.gz) = 4109135

View file

@ -1,26 +0,0 @@
From 360e1c423b5475fa2c1caba1f19d652538a8f322 Mon Sep 17 00:00:00 2001
From: Peter Bex <peter@more-magic.net>
Date: Mon, 31 Oct 2022 13:06:26 +0100
Subject: [PATCH 1/1] Do not double call normalize-destination on share dir
In install-random-files, don't call normalize-destination on the
destination directory - this is already done in compile-egg-info
Before, we'd see things like in the install script like:
mkdir -p /path/to/chicken/path/to/chicken/share
With this patch, it becomes:
mkdir -p /path/to/chicken/share
which is as it should be.
Signed-off-by: felix <felix@call-with-current-continuation.org>
--- egg-compile.scm.orig 2021-11-18 06:32:06 UTC
+++ egg-compile.scm
@@ -1051,7 +1051,7 @@
(root (string-append srcdir "/"))
(mkdir (mkdir-command platform))
(sfiles (map (cut prefix srcdir <>) files))
- (dfile (qs* (normalize-destination dest mode) platform #t))
+ (dfile (qs* dest platform #t))
(ddir (shell-variable "DESTDIR" platform)))
(print "\n" mkdir " " ddir dfile)
(let-values (((ds fs) (partition directory? sfiles)))