[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/34: build: chicken-build-system: Update for 5.4.0.
From: |
guix-commits |
Subject: |
03/34: build: chicken-build-system: Update for 5.4.0. |
Date: |
Tue, 12 Nov 2024 03:42:39 -0500 (EST) |
apteryx pushed a commit to branch master
in repository guix.
commit 0b60708ee03ca54b51d688f2f10fe7df31202212
Author: Ashish SHUKLA <ashish.is@lostca.se>
AuthorDate: Thu Jul 25 17:41:15 2024 +0000
build: chicken-build-system: Update for 5.4.0.
* guix/build/chicken-build-system (build): chdir to the directory containing
sources, and let chicken-install process the current directory.
(install): Switch to define as we do not need any keys.
(check): Remove unused egg-name from the arguments.
Change-Id: I4adf5e2378deab6e3f3b3c128c3cc75ce43f0e8a
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
guix/build/chicken-build-system.scm | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/guix/build/chicken-build-system.scm
b/guix/build/chicken-build-system.scm
index 8f9f59cc25..fd5a33fd22 100644
--- a/guix/build/chicken-build-system.scm
+++ b/guix/build/chicken-build-system.scm
@@ -93,13 +93,14 @@ unpacking."
(define* (build #:key egg-name #:allow-other-keys)
"Build the Chicken egg named by EGG-NAME"
- (invoke "chicken-install" "-cached" "-no-install" egg-name))
+ (chdir egg-name)
+ (invoke "chicken-install" "-cached" "-no-install"))
-(define* (install #:key egg-name #:allow-other-keys)
+(define (install . _)
"Install the already built egg named by EGG-NAME"
- (invoke "chicken-install" "-cached" egg-name))
+ (invoke "chicken-install" "-cached"))
-(define* (check #:key egg-name tests? #:allow-other-keys)
+(define* (check #:key tests? #:allow-other-keys)
"Build and run tests for the Chicken egg EGG-NAME"
;; there is no "-test-only" option, but we've already run install
;; so this just runs tests.
@@ -109,7 +110,7 @@ unpacking."
":"
(getenv "CHICKEN_REPOSITORY_PATH")))
(when tests?
- (invoke "chicken-install" "-cached" "-test" "-no-install" egg-name)))
+ (invoke "chicken-install" "-cached" "-test" "-no-install")))
(define* (stamp-egg-version #:key egg-name name #:allow-other-keys)
"Check if EGG-NAME.egg contains version information and add some if not."
- 17/34: gnu: sendmail: Remove trailing #t from phases., (continued)
- 17/34: gnu: sendmail: Remove trailing #t from phases., guix-commits, 2024/11/12
- 16/34: gnu: curl: Update home page., guix-commits, 2024/11/12
- 26/34: gnu: yosys: Update to 0.47., guix-commits, 2024/11/12
- 13/34: gnu: unicorn: Update to 2.1.1. [security fixes], guix-commits, 2024/11/12
- 27/34: gnu: yosys: Sort inputs., guix-commits, 2024/11/12
- 21/34: gnu: Remove allegro-5.0. [security fixes], guix-commits, 2024/11/12
- 20/34: gnu: postgresql-15: Update to 16.4. [security fixes], guix-commits, 2024/11/12
- 30/34: gnu: iverilog: Update home page., guix-commits, 2024/11/12
- 33/34: gnu: plib: Build with -fPIC., guix-commits, 2024/11/12
- 34/34: gnu: Add torcs., guix-commits, 2024/11/12
- 03/34: build: chicken-build-system: Update for 5.4.0.,
guix-commits <=
- 11/34: gnu: sendmail: Update to 8.18.1. [security fixes], guix-commits, 2024/11/12
- 15/34: gnu: rnp: Update to 0.17.1. [security fixes], guix-commits, 2024/11/12
- 18/34: gnu: postgresql-13: Update to 13.16. [security fixes], guix-commits, 2024/11/12
- 19/34: gnu: postgresql-14: Update to 14.13., guix-commits, 2024/11/12
- 22/34: gnu: Add emacs-color-theme-sanityinc-tomorrow., guix-commits, 2024/11/12
- 04/34: gnu: ffmpeg-5: Update to 5.1.6 [fixes CVE-2024-7055, CVE-2024-7272]., guix-commits, 2024/11/12
- 10/34: gnu: pam-u2f: Update to 1.3.0. [security fixes], guix-commits, 2024/11/12
- 14/34: gnu: Add sexpp., guix-commits, 2024/11/12
- 23/34: gnu: iverilog: Remove extraneous #:test-target argument., guix-commits, 2024/11/12
- 28/34: gnu: yosys: Do not hard-code CC and CXX make flags., guix-commits, 2024/11/12