From 648b1605dd252bdbe875d88e454078fb9a2966f4 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sat, 10 Dec 2022 17:27:53 -0500 Subject: gnu: gauche: Update to 0.9.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/scheme.scm (gauche): Update to 0.9.12. [source]: Project migrated to GitHub. libatomic-ops is no longer in the Gauche source tree. [arguments]: Renamed network test file. Signed-off-by: 宋文武 --- gnu/packages/scheme.scm | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) (limited to 'gnu/packages/scheme.scm') diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index cbe9d1d948..c13de9d65b 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -19,6 +19,7 @@ ;;; Copyright © 2021 Foo Chuan Wei ;;; Copyright © 2022 Morgan Smith ;;; Copyright © 2022 jgart +;;; Copyright © 2022 Robby Zambito ;;; ;;; This file is part of GNU Guix. ;;; @@ -887,21 +888,17 @@ (define-public femtolisp (define-public gauche (package (name "gauche") - (version "0.9.10") + (version "0.9.12") (home-page "https://practical-scheme.net/gauche/index.html") (source (origin (method url-fetch) (uri (string-append - "mirror://sourceforge/gauche/Gauche/Gauche-" - version ".tgz")) + "https://github.com/shirok/Gauche/releases/download/release" + (string-replace-substring version "." "_") + "/Gauche-" version ".tgz")) (sha256 - (base32 "0ci57ak5cp3lkmfy3nh50hifh8nbg58hh6r18asq0rn5mqfxyf8g")) - (modules '((guix build utils))) - (snippet '(begin - ;; Remove libatomic-ops. - (delete-file-recursively "gc/libatomic_ops") - #t)))) + (base32 "05xnym1phg8i14bacip5d0d3v0gc1nn5mgayd5hnda873f969bml")))) (build-system gnu-build-system) (inputs (list libatomic-ops slib zlib)) @@ -932,8 +929,8 @@ (define-public gauche (add-before 'check 'patch-network-tests ;; Remove net checks. (lambda _ - (delete-file "ext/net/test.scm") - (invoke "touch" "ext/net/test.scm") + (delete-file "test/net.scm") + (invoke "touch" "test/net.scm") #t)) (add-after 'install 'install-docs (lambda _ -- cgit v1.2.3