[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#53878] [PATCH v6 05/24] gnu: racket-minimal: Don't configure non-ex
From: |
Philip McGrath |
Subject: |
[bug#53878] [PATCH v6 05/24] gnu: racket-minimal: Don't configure non-existant catalogs. |
Date: |
Sat, 26 Feb 2022 21:34:31 -0500 |
* gnu/packages/racket.scm (racket-minimal)[arguments]<#:phases>: Change
'initialize-config.rktd' to only add a release catalog when the package
version is a release version.
---
gnu/packages/racket.scm | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/racket.scm b/gnu/packages/racket.scm
index 55fdb28fdd..b828bbbd3d 100644
--- a/gnu/packages/racket.scm
+++ b/gnu/packages/racket.scm
@@ -231,6 +231,15 @@ (define (write-racket-hash alist)
(format #t "(~s . ~s)" k v)))
alist)
(display ")\n"))
+ (define maybe-release-catalog
+ (let ((v #$(package-version this-package)))
+ (if (string-match "^[0-9]+\\.[0-9]+($|\\.[0-8][0-9]*$)"
+ v)
+ `(,(string-append
+ "https://download.racket-lang.org/releases/"
+ v
+ "/catalog/"))
+ '())))
(mkdir-p "racket/etc")
(with-output-to-file "racket/etc/config.rktd"
(lambda ()
@@ -239,12 +248,8 @@ (define (write-racket-hash alist)
. (#f #$(file-append (this-package-input "openssl")
"/lib")
#$(file-append (this-package-input "sqlite")
"/lib")))
(build-stamp . "")
- (catalogs
- . (,(string-append
- "https://download.racket-lang.org/releases/"
- #$(package-version this-package)
- "/catalog/")
- #f))))))))
+ (catalogs ,@maybe-release-catalog
+ #f)))))))
(add-before 'configure 'chdir
(lambda _
(chdir "racket/src")))
--
2.32.0
- [bug#53878] [PATCH v5 00/22] Update Racket to 8.4. Adjust Chez Scheme packages., (continued)
[bug#53878] [PATCH v6 00/24] Update Racket to 8.4. Adjust Chez Scheme packages., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 04/24] gnu: racket-minimal: Use new package style., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 05/24] gnu: racket-minimal: Don't configure non-existant catalogs.,
Philip McGrath <=
[bug#53878] [PATCH v6 06/24] gnu: racket-minimal: Change inheritance to follow bootstrapping., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 08/24] gnu: racket-minimal: Add "debug" output., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 07/24] gnu: racket-minimal: Adjust indentation., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 09/24] gnu: configure-layer.rkt: Adjust indentation., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 10/24] gnu: racket-minimal: Separate from the Racket VM., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 11/24] gnu: racket: Move Chez bootfiles to (gnu packages chez)., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 12/24] gnu: chez: Add utilities for Chez machine types., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 13/24] gnu: racket: Add 'racket-vm-for-system'., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 15/24] gnu: chez-scheme: Use "lib/chez-scheme" for search path., Philip McGrath, 2022/02/26
[bug#53878] [PATCH v6 15/24] gnu: chez-scheme: Use "lib/chez-scheme" for search path., Liliana Marie Prikler, 2022/02/27