2016-10-17 03:05:39 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
|
2016-11-23 05:37:17 -05:00
|
|
|
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
2019-02-16 09:25:32 -05:00
|
|
|
|
;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2019-12-24 22:56:40 -05:00
|
|
|
|
;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
|
2020-08-31 03:26:17 -04:00
|
|
|
|
;;; Copyright © 2020 Brendan Tildesley <mail@brendan.scot>
|
2023-02-03 20:14:12 -05:00
|
|
|
|
;;; Copyright © 2021, 2022, 2023 Philip McGrath <philip@philipmcgrath.com>
|
2016-10-17 03:05:39 -04:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages chez)
|
|
|
|
|
#:use-module (gnu packages)
|
|
|
|
|
#:use-module ((guix licenses)
|
2016-10-22 04:55:36 -04:00
|
|
|
|
#:select (gpl2+ gpl3+ lgpl2.0+ lgpl2.1+ asl2.0 bsd-3 expat
|
2016-10-16 09:59:49 -04:00
|
|
|
|
public-domain))
|
2016-10-17 03:05:39 -04:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2016-10-16 09:59:49 -04:00
|
|
|
|
#:use-module (guix git-download)
|
2016-10-17 03:05:39 -04:00
|
|
|
|
#:use-module (guix utils)
|
2021-03-19 14:24:51 -04:00
|
|
|
|
#:use-module (guix gexp)
|
2022-02-27 16:29:07 -05:00
|
|
|
|
#:use-module (guix build-system copy)
|
2016-10-17 03:05:39 -04:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2022-02-27 16:29:14 -05:00
|
|
|
|
#:use-module (guix build-system copy)
|
2016-10-17 03:05:39 -04:00
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
|
#:use-module (gnu packages ghostscript)
|
2022-08-27 14:55:52 -04:00
|
|
|
|
#:use-module (gnu packages libffi)
|
2019-12-24 22:56:40 -05:00
|
|
|
|
#:use-module (gnu packages linux)
|
2016-10-17 03:05:39 -04:00
|
|
|
|
#:use-module (gnu packages netpbm)
|
2022-02-27 16:29:07 -05:00
|
|
|
|
#:use-module (gnu packages racket)
|
2016-10-17 03:05:39 -04:00
|
|
|
|
#:use-module (gnu packages tex)
|
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
|
#:use-module (gnu packages image)
|
|
|
|
|
#:use-module (gnu packages xorg)
|
2016-11-23 05:42:36 -05:00
|
|
|
|
#:use-module (ice-9 match)
|
2022-02-27 16:29:08 -05:00
|
|
|
|
#:use-module (srfi srfi-1)
|
2022-02-27 16:29:16 -05:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2022-02-27 16:29:19 -05:00
|
|
|
|
#:export (chez-scheme-for-system
|
2022-05-09 02:02:49 -04:00
|
|
|
|
racket-cs-native-supported-system?
|
2022-08-27 14:55:52 -04:00
|
|
|
|
nix-system->pbarch-machine-type
|
2022-02-27 16:29:15 -05:00
|
|
|
|
unpack-nanopass+stex))
|
2022-02-27 16:29:08 -05:00
|
|
|
|
|
2022-02-27 16:29:18 -05:00
|
|
|
|
;; Commentary:
|
|
|
|
|
;;
|
|
|
|
|
;; The bootstrapping paths for Chez Scheme and Racket are closely
|
|
|
|
|
;; entwined. Racket CS (the default Racket implementation) is based on (a fork
|
|
|
|
|
;; of) Chez Scheme. Racket's variant of Chez Scheme shares sources for
|
|
|
|
|
;; nanopass and stex with upstream Chez Scheme.
|
|
|
|
|
;;
|
|
|
|
|
;; Racket's variant of Chez Scheme can be bootstrapped by an older Racket
|
|
|
|
|
;; implementation, Racket BC, which can be bootstrapped from C. Porting that
|
|
|
|
|
;; code to work with upstream Chez Scheme (or finding an old version that
|
|
|
|
|
;; does) is our best hope for some day bootstrapping upstream Chez Scheme from
|
|
|
|
|
;; source.
|
|
|
|
|
;;
|
|
|
|
|
;; Code:
|
|
|
|
|
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(define* (chez-scheme-for-system #:optional
|
|
|
|
|
(system (or (%current-target-system)
|
|
|
|
|
(%current-system))))
|
2022-05-09 02:02:50 -04:00
|
|
|
|
"Return 'chez-scheme' if it fully supports SYSTEM, including support for
|
|
|
|
|
bootstrapping and native threads. Otherwise, return
|
|
|
|
|
'chez-scheme-for-racket'."
|
|
|
|
|
(if (and=> (chez-upstream-features-for-system system)
|
|
|
|
|
(lambda (features)
|
|
|
|
|
(every (cut memq <> features)
|
|
|
|
|
'(threads
|
|
|
|
|
;; We can cross-compile for platforms without
|
|
|
|
|
;; bootstrap bootfiles, but we can't self-host
|
|
|
|
|
;; on them short of adding more binary seeds.
|
|
|
|
|
bootstrap-bootfiles))))
|
2022-02-27 16:29:19 -05:00
|
|
|
|
chez-scheme
|
|
|
|
|
chez-scheme-for-racket))
|
|
|
|
|
|
2022-05-09 02:02:48 -04:00
|
|
|
|
(define* (target-chez-arch #:optional (system
|
|
|
|
|
(or (%current-target-system)
|
|
|
|
|
(%current-system))))
|
|
|
|
|
"Return a string representing the architecture of SYSTEM as used in Chez
|
|
|
|
|
Scheme machine types, or '#f' if none is defined."
|
|
|
|
|
(cond
|
|
|
|
|
((target-x86-64? system)
|
|
|
|
|
"a6")
|
|
|
|
|
((target-x86-32? system)
|
|
|
|
|
"i3")
|
|
|
|
|
((target-aarch64? system)
|
|
|
|
|
"arm64")
|
|
|
|
|
((target-arm32? system)
|
|
|
|
|
"arm32")
|
|
|
|
|
((target-ppc64le? system)
|
|
|
|
|
#f)
|
|
|
|
|
((target-ppc32? system)
|
|
|
|
|
"ppc32")
|
|
|
|
|
((target-riscv64? system)
|
2022-11-17 19:45:31 -05:00
|
|
|
|
"rv64")
|
2022-05-09 02:02:48 -04:00
|
|
|
|
(else
|
|
|
|
|
#f)))
|
2022-02-27 16:29:08 -05:00
|
|
|
|
|
2022-05-09 02:02:48 -04:00
|
|
|
|
(define* (target-chez-os #:optional (system (or (%current-target-system)
|
|
|
|
|
(%current-system))))
|
|
|
|
|
"Return a string representing the operating system kernel of SYSTEM as used
|
|
|
|
|
in Chez Scheme machine types, or '#f' if none is defined."
|
|
|
|
|
;; e.g. "le" includes both GNU/Linux and Android
|
|
|
|
|
(cond
|
|
|
|
|
((target-linux? system)
|
|
|
|
|
"le")
|
|
|
|
|
((target-hurd? system)
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
"gnu")
|
2022-05-09 02:02:48 -04:00
|
|
|
|
((target-mingw? system)
|
|
|
|
|
"nt")
|
|
|
|
|
;; missing (guix utils) predicates
|
|
|
|
|
;; cf. https://github.com/NixOS/nixpkgs/blob/master/lib/systems/doubles.nix
|
|
|
|
|
((string-suffix? "-darwin" system)
|
|
|
|
|
"osx")
|
|
|
|
|
((string-suffix? "-freebsd" system)
|
|
|
|
|
"fb")
|
|
|
|
|
((string-suffix? "-openbsd" system)
|
|
|
|
|
"ob")
|
|
|
|
|
((string-suffix? "-netbsd" system)
|
|
|
|
|
"nb")
|
|
|
|
|
;; Nix says "x86_64-solaris", but accommodate "-solaris2"
|
|
|
|
|
((string-contains system "solaris")
|
|
|
|
|
"s2")
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
((string-suffix? "-qnx" system)
|
|
|
|
|
"qnx")
|
2022-05-09 02:02:48 -04:00
|
|
|
|
;; unknown
|
|
|
|
|
(else
|
|
|
|
|
#f)))
|
2022-02-27 16:29:08 -05:00
|
|
|
|
|
2022-05-09 02:02:48 -04:00
|
|
|
|
(define %chez-features-table
|
|
|
|
|
;; An alist of alists mapping:
|
|
|
|
|
;; os -> arch -> (or/c #f (listof symbol?))
|
|
|
|
|
;; where:
|
|
|
|
|
;; - `os` is a string for the OS part of a Chez Scheme machine type; and
|
|
|
|
|
;; - `arch` is a string for the architecture part of a Chez machine type.
|
|
|
|
|
;;
|
|
|
|
|
;; The absence of an entry for a given arch--os pair means that neither
|
|
|
|
|
;; upstream Chez Scheme nor the Racket variant can generate native code for
|
|
|
|
|
;; that system. (The Racket variant can still provide support via its
|
|
|
|
|
;; ``portable bytecode'' backends and optional compilation to C.) A value
|
|
|
|
|
;; of `#f` means that upstream Chez Scheme does not support the arch--os
|
|
|
|
|
;; pair at all, but the Racket variant does. A list has the same meaning as
|
|
|
|
|
;; a result from `chez-upstream-features-for-system`.
|
|
|
|
|
;;
|
|
|
|
|
;; The arch--os pairs marked "commented out" have been commented out in the
|
|
|
|
|
;; STeX source for the upstream release notes since the initial release as
|
|
|
|
|
;; free software, but they are reported to work and/or have been described
|
|
|
|
|
;; as supported by upstream maintainers.
|
|
|
|
|
;;
|
|
|
|
|
;; For this overall approach to make sense, we assume that Racket's variant
|
|
|
|
|
;; of Chez Scheme can generate native code for a superset of the platforms
|
|
|
|
|
;; supported upstream, supports threads on all platforms it supports at all
|
|
|
|
|
;; (because they are needed for Racket), and doesn't need bootstrap
|
|
|
|
|
;; bootfiles. Those assumptions have held for several years.
|
|
|
|
|
'(;; Linux
|
|
|
|
|
("le"
|
|
|
|
|
("i3" threads bootstrap-bootfiles)
|
|
|
|
|
("a6" threads bootstrap-bootfiles)
|
|
|
|
|
("arm32" bootstrap-bootfiles)
|
|
|
|
|
("arm64" . #f)
|
2022-11-17 19:45:31 -05:00
|
|
|
|
("rv64" . #f)
|
2022-05-09 02:02:48 -04:00
|
|
|
|
("ppc32" threads))
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
;; Hurd
|
|
|
|
|
("gnu"
|
|
|
|
|
("i3" . #f))
|
2022-05-09 02:02:48 -04:00
|
|
|
|
;; FreeBSD
|
|
|
|
|
("fb"
|
|
|
|
|
("i3" threads) ;; commented out
|
|
|
|
|
("a6" threads) ;; commented out
|
|
|
|
|
("arm32" . #f)
|
|
|
|
|
("arm64" . #f)
|
|
|
|
|
("ppc32" . #f))
|
|
|
|
|
;; OpenBSD
|
|
|
|
|
("ob"
|
|
|
|
|
("i3" threads) ;; commented out
|
|
|
|
|
("a6" threads) ;; commented out
|
|
|
|
|
("arm32" . #f)
|
|
|
|
|
("arm64" . #f)
|
|
|
|
|
("ppc32" . #f))
|
|
|
|
|
;; NetBSD
|
|
|
|
|
("nb"
|
|
|
|
|
("i3" threads) ;; commented out
|
|
|
|
|
("a6" threads) ;; commented out
|
|
|
|
|
("arm32" . #f)
|
|
|
|
|
("arm64" . #f)
|
|
|
|
|
("ppc32" . #f))
|
|
|
|
|
;; OpenSolaris / OpenIndiana / Illumos
|
|
|
|
|
("s2"
|
|
|
|
|
("i3" threads) ;; commented out
|
|
|
|
|
("a6" threads)) ;; commented out
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
;; QNX
|
|
|
|
|
("qnx"
|
|
|
|
|
("i3" . #f))
|
2022-05-09 02:02:48 -04:00
|
|
|
|
;; Windows
|
|
|
|
|
("nt"
|
|
|
|
|
("i3" threads bootstrap-bootfiles)
|
|
|
|
|
("a6" threads bootstrap-bootfiles)
|
|
|
|
|
;; ^ threads "experiemental", but reportedly fine
|
|
|
|
|
("arm64" . #f))
|
|
|
|
|
;; Darwin
|
|
|
|
|
("osx"
|
|
|
|
|
("i3" threads bootstrap-bootfiles)
|
|
|
|
|
("a6" threads bootstrap-bootfiles)
|
|
|
|
|
("arm64" . #f)
|
|
|
|
|
("ppc32" . #f))))
|
|
|
|
|
|
2022-02-27 16:29:08 -05:00
|
|
|
|
(define* (chez-upstream-features-for-system #:optional
|
|
|
|
|
(system
|
|
|
|
|
(or (%current-target-system)
|
|
|
|
|
(%current-system))))
|
|
|
|
|
"Return a list of symbols naming features supported by upstream Chez Scheme
|
|
|
|
|
for the Nix system identifier SYSTEM, or @code{#f} if upstream Chez Scheme
|
|
|
|
|
does not support SYSTEM at all.
|
|
|
|
|
|
|
|
|
|
If native threads are supported, the returned list will include
|
2022-05-09 02:02:48 -04:00
|
|
|
|
@code{'threads}. If bootstrap bootfiles for SYSTEM are distributed in the
|
|
|
|
|
upstream Chez Scheme repository, the returned list will include
|
|
|
|
|
@code{'bootstrap-bootfiles}. Other feature symbols may be added in the
|
|
|
|
|
future."
|
|
|
|
|
(let ((chez-arch (target-chez-arch system))
|
|
|
|
|
(chez-os (target-chez-os system)))
|
|
|
|
|
(and=> (assoc-ref %chez-features-table chez-os)
|
|
|
|
|
(cut assoc-ref <> chez-arch))))
|
2022-02-27 16:29:08 -05:00
|
|
|
|
|
2022-08-27 14:55:52 -04:00
|
|
|
|
(define* (nix-system->pbarch-machine-type #:optional
|
|
|
|
|
(system
|
|
|
|
|
(or (%current-target-system)
|
|
|
|
|
(%current-system)))
|
|
|
|
|
#:key (threads? #t))
|
|
|
|
|
"Return a string naming the pseudo–machine type used by Racket's variant of
|
|
|
|
|
Chez Scheme to represent the appropriate ``pbarch'' backend for SYSTEM: that
|
|
|
|
|
is, the ``portable bytecode'' backend specialized for SYSTEM's word size and
|
|
|
|
|
endianness. The result will name the threaded machine type unless THREADS? is
|
|
|
|
|
provided and is #f."
|
|
|
|
|
(string-append (if threads?
|
|
|
|
|
"t"
|
|
|
|
|
"")
|
|
|
|
|
"pb"
|
|
|
|
|
(if (target-64bit? system)
|
|
|
|
|
"64"
|
|
|
|
|
"32")
|
2023-02-03 20:14:12 -05:00
|
|
|
|
(if (target-little-endian? system)
|
|
|
|
|
"l"
|
|
|
|
|
"b")))
|
2022-08-27 14:55:52 -04:00
|
|
|
|
|
2022-05-09 02:02:49 -04:00
|
|
|
|
(define* (racket-cs-native-supported-system? #:optional
|
|
|
|
|
(system
|
|
|
|
|
(or (%current-target-system)
|
|
|
|
|
(%current-system))))
|
2022-08-27 14:55:50 -04:00
|
|
|
|
"Can Racket's variant of Chez Scheme generate native code for SYSTEM? If
|
|
|
|
|
so, return the applicable machine type as a string. Otherwise, when SYSTEM
|
|
|
|
|
can use only the ``portable bytecode'' backends, return #f."
|
2022-05-09 02:02:49 -04:00
|
|
|
|
(let ((chez-arch (target-chez-arch system))
|
|
|
|
|
(chez-os (target-chez-os system)))
|
|
|
|
|
(and (and=> (assoc-ref %chez-features-table chez-os)
|
|
|
|
|
;; NOT assoc-ref: supported even if cdr is #f
|
|
|
|
|
(cut assoc chez-arch <>))
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(string-append "t" chez-arch chez-os))))
|
2022-05-09 02:02:49 -04:00
|
|
|
|
|
2022-02-27 16:29:08 -05:00
|
|
|
|
;;
|
|
|
|
|
;; Chez Scheme:
|
|
|
|
|
;;
|
2016-10-17 03:05:39 -04:00
|
|
|
|
|
2022-02-27 16:29:15 -05:00
|
|
|
|
|
|
|
|
|
(define unpack-nanopass+stex
|
|
|
|
|
#~(begin
|
|
|
|
|
(copy-recursively
|
|
|
|
|
(dirname (search-input-file %build-inputs
|
|
|
|
|
"lib/chez-scheme/nanopass.ss"))
|
|
|
|
|
"nanopass"
|
|
|
|
|
#:keep-mtime? #t)
|
|
|
|
|
(mkdir-p "stex")
|
|
|
|
|
(with-output-to-file "stex/Mf-stex"
|
|
|
|
|
(lambda ()
|
|
|
|
|
;; otherwise, it will try to download submodules
|
|
|
|
|
(display "# to placate ../configure")))))
|
|
|
|
|
|
2016-10-17 03:05:39 -04:00
|
|
|
|
(define-public chez-scheme
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-scheme")
|
2022-02-27 16:29:13 -05:00
|
|
|
|
;; The version should match `(scheme-version-number)`.
|
|
|
|
|
;; See s/cmacros.ss c. line 360.
|
2022-05-09 02:02:44 -04:00
|
|
|
|
(version "9.5.8")
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/cisco/ChezScheme")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2022-05-09 02:02:44 -04:00
|
|
|
|
"0xchqq8cm0ka5wgpn18sjs0hh15rc3nb7xrjqbbc9al3asq0d7gc"))
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(file-name (git-file-name name version))
|
2022-08-27 14:55:46 -04:00
|
|
|
|
(patches (search-patches "chez-scheme-bin-sh.patch"))
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(snippet #~(begin
|
|
|
|
|
(use-modules (guix build utils))
|
2022-02-27 16:29:15 -05:00
|
|
|
|
;; TODO: consider putting this in a (guix ...) or
|
|
|
|
|
;; (guix build ...) module so it can be shared
|
|
|
|
|
;; with the Racket origin without cyclic issues.
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(for-each (lambda (dir)
|
|
|
|
|
(when (directory-exists? dir)
|
|
|
|
|
(delete-file-recursively dir)))
|
|
|
|
|
'("stex"
|
|
|
|
|
"nanopass"
|
|
|
|
|
"lz4"
|
|
|
|
|
"zlib"))))))
|
2016-10-17 03:05:39 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(list
|
2022-08-27 14:55:49 -04:00
|
|
|
|
chez-scheme-bootstrap-bootfiles
|
2022-02-27 16:29:13 -05:00
|
|
|
|
`(,util-linux "lib") ;<-- libuuid
|
|
|
|
|
zlib
|
|
|
|
|
lz4
|
|
|
|
|
ncurses ;<-- for expeditor
|
|
|
|
|
;; for X11 clipboard support in expeditor:
|
|
|
|
|
;; https://github.com/cisco/ChezScheme/issues/9#issuecomment-222057232
|
|
|
|
|
libx11))
|
2022-08-27 14:55:49 -04:00
|
|
|
|
(native-inputs (list chez-nanopass-bootstrap
|
2022-02-27 16:29:16 -05:00
|
|
|
|
stex-bootstrap))
|
2016-10-17 03:05:39 -04:00
|
|
|
|
(native-search-paths
|
|
|
|
|
(list (search-path-specification
|
|
|
|
|
(variable "CHEZSCHEMELIBDIRS")
|
2022-02-27 16:29:11 -05:00
|
|
|
|
(files '("lib/chez-scheme")))))
|
2016-10-17 03:05:39 -04:00
|
|
|
|
(outputs '("out" "doc"))
|
|
|
|
|
(arguments
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(list
|
|
|
|
|
#:modules
|
|
|
|
|
'((guix build gnu-build-system)
|
2021-03-19 14:24:51 -04:00
|
|
|
|
(guix build utils)
|
|
|
|
|
(ice-9 ftw)
|
|
|
|
|
(ice-9 match))
|
2022-02-27 16:29:13 -05:00
|
|
|
|
#:test-target "test"
|
2022-05-09 02:02:46 -04:00
|
|
|
|
#:configure-flags
|
|
|
|
|
#~`(,(string-append "--installprefix=" #$output)
|
|
|
|
|
#$@(if (and=> (chez-upstream-features-for-system)
|
|
|
|
|
(cut memq 'threads <>))
|
|
|
|
|
#~("--threads")
|
|
|
|
|
#~())
|
|
|
|
|
"ZLIB=-lz"
|
|
|
|
|
"LZ4=-llz4"
|
|
|
|
|
"--libkernel"
|
|
|
|
|
;; Guix will do 'compress-man-pages',
|
|
|
|
|
;; and letting Chez try causes an error
|
|
|
|
|
"--nogzip-man-pages")
|
2022-02-27 16:29:13 -05:00
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'unpack-nanopass+stex
|
|
|
|
|
(lambda args
|
2022-02-27 16:29:15 -05:00
|
|
|
|
#$unpack-nanopass+stex))
|
2022-02-27 16:29:16 -05:00
|
|
|
|
(add-after 'unpack-nanopass+stex 'unpack-bootfiles
|
|
|
|
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
|
|
|
|
(when (directory-exists? "boot")
|
|
|
|
|
(delete-file-recursively "boot"))
|
|
|
|
|
(copy-recursively
|
2022-08-27 14:55:49 -04:00
|
|
|
|
(search-input-directory inputs
|
2022-02-27 16:29:16 -05:00
|
|
|
|
"lib/chez-scheme-bootfiles")
|
|
|
|
|
"boot")))
|
2022-05-09 02:02:46 -04:00
|
|
|
|
;; NOTE: The custom Chez 'configure' script doesn't allow
|
2022-02-27 16:29:13 -05:00
|
|
|
|
;; unrecognized flags, such as those automatically added
|
2022-05-09 02:02:46 -04:00
|
|
|
|
;; by `gnu-build-system`. This replacement phase uses only
|
|
|
|
|
;; the explicitly provided `#:configure-flags`.
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(replace 'configure
|
2022-05-09 02:02:46 -04:00
|
|
|
|
(lambda* (#:key inputs (configure-flags '()) out-of-source?
|
|
|
|
|
#:allow-other-keys)
|
|
|
|
|
(let* ((abs-srcdir (getcwd))
|
|
|
|
|
(srcdir (if out-of-source?
|
|
|
|
|
(string-append "../" (basename abs-srcdir))
|
|
|
|
|
".")))
|
|
|
|
|
(format #t "source directory: ~s (relative from build: ~s)~%"
|
|
|
|
|
abs-srcdir srcdir)
|
|
|
|
|
(if out-of-source?
|
|
|
|
|
(begin
|
|
|
|
|
(mkdir "../build")
|
|
|
|
|
(chdir "../build")))
|
|
|
|
|
(format #t "build directory: ~s~%" (getcwd))
|
|
|
|
|
(format #t "configure flags: ~s~%" configure-flags)
|
|
|
|
|
(apply invoke
|
|
|
|
|
(string-append srcdir "/configure")
|
|
|
|
|
configure-flags))))
|
|
|
|
|
(add-after 'configure 'configure-environment-variables
|
|
|
|
|
(lambda args
|
|
|
|
|
;; Some makefiles (for tests) don't seem to propagate CC
|
|
|
|
|
;; properly, so we take it out of their hands:
|
|
|
|
|
(setenv "CC" #$(cc-for-target))
|
|
|
|
|
;; Likewise, some tests have needed HOME to be set:
|
|
|
|
|
(setenv "HOME" "/tmp")))
|
2022-02-27 16:29:13 -05:00
|
|
|
|
;; The binary file name is called "scheme" as is the one from
|
|
|
|
|
;; MIT/GNU Scheme. We add a symlink to use in case both are
|
|
|
|
|
;; installed.
|
|
|
|
|
(add-after 'install 'install-symlink
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((scheme (search-input-file outputs "/bin/scheme"))
|
|
|
|
|
(bin-dir (dirname scheme)))
|
|
|
|
|
(symlink scheme
|
|
|
|
|
(string-append bin-dir "/chez-scheme"))
|
|
|
|
|
(match (find-files (string-append bin-dir "/../lib")
|
|
|
|
|
"scheme.boot")
|
|
|
|
|
((scheme.boot)
|
|
|
|
|
(symlink scheme.boot
|
|
|
|
|
(string-append (dirname scheme.boot)
|
|
|
|
|
"/chez-scheme.boot")))))))
|
|
|
|
|
;; Building the documentation requires stex and a running scheme.
|
2022-05-09 02:02:45 -04:00
|
|
|
|
(add-after 'install-symlink 'install-docs
|
2022-02-27 16:29:13 -05:00
|
|
|
|
(lambda* (#:key native-inputs inputs outputs #:allow-other-keys)
|
2022-05-09 02:02:45 -04:00
|
|
|
|
(let* ((doc-prefix (or (assoc-ref outputs "doc")
|
|
|
|
|
(assoc-ref outputs "out")))
|
|
|
|
|
(chez+version (strip-store-file-name #$output))
|
|
|
|
|
(scheme (search-input-file outputs "/bin/scheme"))
|
|
|
|
|
(stexlib (search-input-directory (or native-inputs
|
|
|
|
|
inputs)
|
|
|
|
|
"/lib/stex"))
|
|
|
|
|
(doc-dir (string-append doc-prefix
|
|
|
|
|
"/share/doc/"
|
|
|
|
|
chez+version)))
|
|
|
|
|
(define* (stex-make #:optional (suffix ""))
|
|
|
|
|
(invoke "make" "install"
|
|
|
|
|
(string-append "Scheme=" scheme)
|
|
|
|
|
(string-append "STEXLIB=" stexlib)
|
|
|
|
|
(string-append "installdir=" doc-dir suffix)))
|
|
|
|
|
(with-directory-excursion "csug"
|
|
|
|
|
(stex-make "/csug"))
|
|
|
|
|
(with-directory-excursion "release_notes"
|
|
|
|
|
(stex-make "/release_notes")))))
|
|
|
|
|
(add-after 'install-docs 'link-doc-pdfs
|
|
|
|
|
;; otherwise, it's hard to notice them in a forest of HTML files
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(with-directory-excursion
|
|
|
|
|
(string-append (or (assoc-ref outputs "doc")
|
|
|
|
|
(assoc-ref outputs "out"))
|
|
|
|
|
"/share/doc/"
|
|
|
|
|
(strip-store-file-name #$output))
|
|
|
|
|
(symlink "release_notes/release_notes.pdf"
|
|
|
|
|
"release_notes.pdf")
|
|
|
|
|
(match (find-files "csug"
|
|
|
|
|
"csug.*\\.pdf$" ;; embeded version number
|
|
|
|
|
#:fail-on-error? #t)
|
|
|
|
|
((pth)
|
|
|
|
|
(symlink pth
|
|
|
|
|
"csug.pdf")))))))))
|
2022-02-27 16:29:08 -05:00
|
|
|
|
(supported-systems
|
|
|
|
|
(delete
|
2022-05-09 02:02:48 -04:00
|
|
|
|
"armhf-linux" ;; XXX reportedly broken, needs checking
|
2022-02-27 16:29:08 -05:00
|
|
|
|
(filter chez-upstream-features-for-system
|
|
|
|
|
%supported-systems)))
|
2019-12-24 22:58:16 -05:00
|
|
|
|
(home-page "https://cisco.github.io/ChezScheme/")
|
2016-10-17 03:05:39 -04:00
|
|
|
|
(synopsis "R6RS Scheme compiler and run-time")
|
|
|
|
|
(description
|
|
|
|
|
"Chez Scheme is a compiler and run-time system for the language of the
|
|
|
|
|
Revised^6 Report on Scheme (R6RS), with numerous extensions. The compiler
|
|
|
|
|
generates native code for each target processor, with support for x86, x86_64,
|
|
|
|
|
and 32-bit PowerPC architectures.")
|
|
|
|
|
(license asl2.0)))
|
2016-10-16 09:49:36 -04:00
|
|
|
|
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(define-public chez-scheme-for-racket
|
|
|
|
|
(package
|
|
|
|
|
(inherit chez-scheme)
|
|
|
|
|
(name "chez-scheme-for-racket")
|
gnu: racket: Update to 8.9.
* gnu/packages/chez.scm (chez-scheme-for-racket): Update to
9.9.9-pre-release.16.
* gnu/packages/racket.scm (%racket-version): Update to 8.9.
(racket)[inputs]<deinprogramm, draw, drracket, future-visualizer, gui>
<htdp, macro-debugger, math, pict, plot, rackunit, redex, scribble>
<slideshow, snip, typed-racket, srfi, swindle, syntax-color>
<web-server>: Update checksums.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2023-06-23 06:32:51 -04:00
|
|
|
|
(version "9.9.9-pre-release.16")
|
gnu: racket: Update to 8.7.
Also, update 'chez-scheme-for-racket' to 9.5.9.8.
Note that racket-backport-8.6-cross-install.patch,
racket-backport-8.6-docindex-write.patch, and
racket-backport-8.6-hurd.patch were missing from dist_patch_DATA.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch,
gnu/packages/patches/racket-backport-8.6-zuo.patch: Remove patches.
* gnu/packages/patches/racket-backport-8.7-pkg-strip.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/racket.scm (%racket-origin)[patches]: Likewise.
(%racket-version): Update to 8.7.
(racket)[inputs]: Add 'scheme-doc' source package from '%racket-origin'.
(racket)[inputs]<compatibility, db, deinprogramm, draw, drracket>
<eopl, errortrace, gui, htdp, mzscheme, parser-tools, pict, plai, plot>
<r6rs, redex, scribble, slideshow, snip, typed-racket, srfi>
<string-constants>: Update checksums.
* gnu/packages/chez.scm (chez-scheme-for-racket): Update to 9.5.9.8.
[arguments]: Enable tests.
[description]: Update.
(chez-scheme-for-racket-bootstrap-bootfiles)[arguments]: Update path to
'rktboot'.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2022-11-17 19:45:30 -05:00
|
|
|
|
;; The version should match `scheme-version`.
|
2022-02-27 16:29:18 -05:00
|
|
|
|
;; See racket/src/ChezScheme/s/cmacros.ss c. line 360.
|
|
|
|
|
;; It will always be different than the upstream version!
|
|
|
|
|
;; When updating, remember to also update %racket-version in racket.scm.
|
|
|
|
|
(source #f) ; avoid problematic cycle with racket.scm
|
|
|
|
|
(inputs
|
2022-08-27 14:55:52 -04:00
|
|
|
|
(let ((inputs (modify-inputs (package-inputs chez-scheme)
|
|
|
|
|
(replace "chez-scheme-bootstrap-bootfiles"
|
|
|
|
|
chez-scheme-for-racket-bootstrap-bootfiles)
|
|
|
|
|
(delete "libx11" "util-linux:lib"))))
|
|
|
|
|
(if (racket-cs-native-supported-system?)
|
|
|
|
|
inputs
|
|
|
|
|
(modify-inputs inputs
|
|
|
|
|
(prepend libffi)))))
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(native-inputs
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(let ((native-inputs (modify-inputs (package-native-inputs chez-scheme)
|
|
|
|
|
(prepend zuo))))
|
|
|
|
|
(if (%current-target-system)
|
|
|
|
|
(modify-inputs native-inputs
|
|
|
|
|
(prepend this-package))
|
|
|
|
|
native-inputs)))
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments chez-scheme)
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
((#:out-of-source? _ #f)
|
|
|
|
|
#t)
|
2022-02-27 16:29:18 -05:00
|
|
|
|
((#:configure-flags cfg-flags #~'())
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
#~`("--disable-x11"
|
|
|
|
|
"--threads" ;; ok to potentially duplicate
|
2022-08-27 14:55:52 -04:00
|
|
|
|
#$(string-append "-m=" (or (racket-cs-native-supported-system?)
|
|
|
|
|
(nix-system->pbarch-machine-type)))
|
|
|
|
|
;; ^ could skip -m= for non-cross non-pbarch builds
|
|
|
|
|
#$@(if (racket-cs-native-supported-system?)
|
|
|
|
|
#~()
|
|
|
|
|
;; not inferred on non-native platforms: see
|
|
|
|
|
;; https://racket.discourse.group/t/950/9
|
|
|
|
|
#~("--enable-libffi"
|
|
|
|
|
"CFLAGS=-g -O2 -D_REENTRANT -pthread"
|
|
|
|
|
"LIBS=-lm -ldl -lrt -lffi -lncurses"))
|
2022-08-27 14:55:50 -04:00
|
|
|
|
#$@(if (%current-target-system)
|
|
|
|
|
(list (string-append "--toolprefix="
|
|
|
|
|
(%current-target-system)
|
|
|
|
|
"-"))
|
|
|
|
|
'())
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
,@(let* ((chez+version (strip-store-file-name #$output))
|
|
|
|
|
(doc-prefix (assoc-ref %outputs "doc"))
|
|
|
|
|
(doc-dir (string-append doc-prefix
|
|
|
|
|
"/share/doc/"
|
|
|
|
|
chez+version)))
|
|
|
|
|
(list (string-append "--installcsug="
|
|
|
|
|
doc-dir
|
|
|
|
|
"/csug")
|
|
|
|
|
(string-append "--installreleasenotes="
|
|
|
|
|
doc-dir
|
|
|
|
|
"/release_notes")))
|
|
|
|
|
,@#$cfg-flags))
|
|
|
|
|
((#:make-flags mk-flags #~'())
|
|
|
|
|
#~(cons* (string-append "ZUO="
|
|
|
|
|
#+(this-package-native-input "zuo")
|
|
|
|
|
"/bin/zuo")
|
|
|
|
|
(string-append "STEXLIB="
|
|
|
|
|
#+(this-package-native-input "stex")
|
|
|
|
|
"/lib/stex")
|
|
|
|
|
#$mk-flags))
|
2022-02-27 16:29:18 -05:00
|
|
|
|
((#:phases those-phases #~%standard-phases)
|
|
|
|
|
#~(let* ((those-phases #$those-phases)
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(gnu:unpack (assoc-ref those-phases 'unpack))
|
|
|
|
|
(gnu:build (assoc-ref those-phases 'build)))
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(modify-phases those-phases
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(replace 'build
|
|
|
|
|
;; need to override target for cross-compilation
|
|
|
|
|
;; https://racket.discourse.group/t/950/19
|
|
|
|
|
(lambda* (#:key target (make-flags '()) (parallel-build? #t)
|
|
|
|
|
#:allow-other-keys)
|
|
|
|
|
(gnu:build #:make-flags (if target
|
|
|
|
|
(cons "kernel" make-flags)
|
|
|
|
|
make-flags)
|
|
|
|
|
#:parallel-build? parallel-build?)))
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
(replace 'install-docs
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(lambda* (#:key native-inputs (make-flags '())
|
|
|
|
|
#:allow-other-keys)
|
|
|
|
|
;; The tests for 'native-inputs' are cross-compilation
|
|
|
|
|
;; workarounds that would be better to address upstream:
|
|
|
|
|
;; see <https://racket.discourse.group/t/950/20>.
|
|
|
|
|
(when native-inputs
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("install-docs: build \\$[(]ZUO[)]")
|
|
|
|
|
"install-docs: $(ZUO)")))
|
gnu: racket: Update to 8.6.
Also, update 'chez-scheme-for-racket' to 9.5.9.2.
* gnu/packages/patches/racket-chez-scheme-bin-sh.patch: Refresh patch.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch: New patches.
* gnu/local.mk (dist_patch_DATA): Add them.
* gnu/packages/racket.scm (%racket-origin)[patches]: Use them and the
patches for Zuo.
(%racket-version): Update to 8.6.
(zuo)[version]: Refer to '%racket-version'.
[origin]: Use '%racket-origin'.
(racket-vm-cgc)[native-inputs]: Add 'zuo'.
[arguments]<#:make-flags>: Use 'zuo' from 'native-inputs'.
(racket)[inputs]<data, db, deinprogramm, draw, drracket, errortrace,
gui, htdp, math, option-contract, parser-tools, pict, rackunit, realm,
redex, scribble, typed-racket, string-constants, swindle, syntax-color,
web-server>: Update checksums.
* gnu/packages/chez.scm (target-chez-os): Handle Hurd and QNX.
(%chez-features-table): Likewise.
(chez-scheme-for-racket): Update to 9.5.9.2.
[native-inputs]: Add 'zuo'.
[arguments]<#:out-of-source?>: Use out-of-source build.
<#:tests?>: Skip them due to ongoing problems.
<#:configure-flags>: Add '--install-csug=' and '--installreleasenotes='.
<#:make-flags>: Use 'zuo' from 'native-inputs'. Supply 'STEXLIB=' here,
rather than in a phase.
<#:phases>: Replace 'install-docs' using new 'make' target.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-08-27 14:55:48 -04:00
|
|
|
|
(apply invoke
|
|
|
|
|
"make"
|
|
|
|
|
"install-docs"
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(if native-inputs
|
|
|
|
|
(cons (string-append
|
|
|
|
|
"Scheme="
|
|
|
|
|
(search-input-file native-inputs
|
|
|
|
|
"/bin/scheme"))
|
|
|
|
|
make-flags)
|
|
|
|
|
make-flags))))
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(replace 'unpack
|
|
|
|
|
(lambda args
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(gnu:unpack #:source #$(or (package-source this-package)
|
|
|
|
|
(package-source racket-vm-bc)))))
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(add-after 'unpack 'chdir
|
|
|
|
|
(lambda args
|
|
|
|
|
(chdir "racket/src/ChezScheme"))))))))
|
2022-08-27 14:55:52 -04:00
|
|
|
|
(supported-systems %supported-systems)
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(home-page "https://github.com/racket/ChezScheme")
|
|
|
|
|
;; ^ This is downstream of https://github.com/racket/racket,
|
|
|
|
|
;; but it's designed to be a friendly landing place for people
|
|
|
|
|
;; who want a ChezScheme-shaped repositroy.
|
|
|
|
|
(synopsis "Variant of Chez Scheme extended for Racket")
|
|
|
|
|
(description "This variant of Chez Scheme is extended to support the
|
|
|
|
|
implementation of Racket. It may be useful on platforms that are not yet
|
|
|
|
|
supported by upstream Chez Scheme.
|
|
|
|
|
|
|
|
|
|
Main additions to Chez Scheme in the Racket variant:
|
|
|
|
|
@itemize @bullet
|
|
|
|
|
@item
|
gnu: racket: Update to 8.7.
Also, update 'chez-scheme-for-racket' to 9.5.9.8.
Note that racket-backport-8.6-cross-install.patch,
racket-backport-8.6-docindex-write.patch, and
racket-backport-8.6-hurd.patch were missing from dist_patch_DATA.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch,
gnu/packages/patches/racket-backport-8.6-zuo.patch: Remove patches.
* gnu/packages/patches/racket-backport-8.7-pkg-strip.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/racket.scm (%racket-origin)[patches]: Likewise.
(%racket-version): Update to 8.7.
(racket)[inputs]: Add 'scheme-doc' source package from '%racket-origin'.
(racket)[inputs]<compatibility, db, deinprogramm, draw, drracket>
<eopl, errortrace, gui, htdp, mzscheme, parser-tools, pict, plai, plot>
<r6rs, redex, scribble, slideshow, snip, typed-racket, srfi>
<string-constants>: Update checksums.
* gnu/packages/chez.scm (chez-scheme-for-racket): Update to 9.5.9.8.
[arguments]: Enable tests.
[description]: Update.
(chez-scheme-for-racket-bootstrap-bootfiles)[arguments]: Update path to
'rktboot'.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2022-11-17 19:45:30 -05:00
|
|
|
|
AArch64 and RV64G (RISC-V) code generation
|
2022-02-27 16:29:18 -05:00
|
|
|
|
@item
|
2022-08-27 14:55:52 -04:00
|
|
|
|
Portable bytecode (@code{pb}) mode, which is mainly useful for bootstrapping a
|
|
|
|
|
build on any platform, but can also be used on platforms without native-code
|
|
|
|
|
generation, compiled via Emscripten, linked with @code{libffi}, or used with
|
|
|
|
|
bytecode partially compiled to C
|
2022-02-27 16:29:18 -05:00
|
|
|
|
@item
|
|
|
|
|
Unboxed floating-point arithmetic and flvectors
|
|
|
|
|
@item
|
2022-08-27 14:55:52 -04:00
|
|
|
|
Faster multiplication and division for large exact numbers
|
|
|
|
|
@item
|
2022-02-27 16:29:18 -05:00
|
|
|
|
Type reconstruction during optimization (especially for safe code)
|
|
|
|
|
@item
|
gnu: racket: Update to 8.7.
Also, update 'chez-scheme-for-racket' to 9.5.9.8.
Note that racket-backport-8.6-cross-install.patch,
racket-backport-8.6-docindex-write.patch, and
racket-backport-8.6-hurd.patch were missing from dist_patch_DATA.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch,
gnu/packages/patches/racket-backport-8.6-zuo.patch: Remove patches.
* gnu/packages/patches/racket-backport-8.7-pkg-strip.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/racket.scm (%racket-origin)[patches]: Likewise.
(%racket-version): Update to 8.7.
(racket)[inputs]: Add 'scheme-doc' source package from '%racket-origin'.
(racket)[inputs]<compatibility, db, deinprogramm, draw, drracket>
<eopl, errortrace, gui, htdp, mzscheme, parser-tools, pict, plai, plot>
<r6rs, redex, scribble, slideshow, snip, typed-racket, srfi>
<string-constants>: Update checksums.
* gnu/packages/chez.scm (chez-scheme-for-racket): Update to 9.5.9.8.
[arguments]: Enable tests.
[description]: Update.
(chez-scheme-for-racket-bootstrap-bootfiles)[arguments]: Update path to
'rktboot'.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2022-11-17 19:45:30 -05:00
|
|
|
|
Continuation marks
|
2022-02-27 16:29:18 -05:00
|
|
|
|
@item
|
|
|
|
|
Parallel garbage collection, in-place garbage collection for old-generation
|
|
|
|
|
objects (instead of always copying), and reachability-based memory
|
|
|
|
|
accounting
|
|
|
|
|
@item
|
|
|
|
|
Ordered finalization, immobile (but collectable) objects, weak/ephemeron
|
|
|
|
|
generic hash tables, and reference bytevectors
|
gnu: racket: Update to 8.7.
Also, update 'chez-scheme-for-racket' to 9.5.9.8.
Note that racket-backport-8.6-cross-install.patch,
racket-backport-8.6-docindex-write.patch, and
racket-backport-8.6-hurd.patch were missing from dist_patch_DATA.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch,
gnu/packages/patches/racket-backport-8.6-zuo.patch: Remove patches.
* gnu/packages/patches/racket-backport-8.7-pkg-strip.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/racket.scm (%racket-origin)[patches]: Likewise.
(%racket-version): Update to 8.7.
(racket)[inputs]: Add 'scheme-doc' source package from '%racket-origin'.
(racket)[inputs]<compatibility, db, deinprogramm, draw, drracket>
<eopl, errortrace, gui, htdp, mzscheme, parser-tools, pict, plai, plot>
<r6rs, redex, scribble, slideshow, snip, typed-racket, srfi>
<string-constants>: Update checksums.
* gnu/packages/chez.scm (chez-scheme-for-racket): Update to 9.5.9.8.
[arguments]: Enable tests.
[description]: Update.
(chez-scheme-for-racket-bootstrap-bootfiles)[arguments]: Update path to
'rktboot'.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2022-11-17 19:45:30 -05:00
|
|
|
|
@item
|
|
|
|
|
Easier bootstrapping via old versions of Chez Scheme
|
2022-02-27 16:29:18 -05:00
|
|
|
|
@end itemize")
|
|
|
|
|
(license asl2.0)))
|
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Bootfiles:
|
|
|
|
|
;;
|
|
|
|
|
|
2022-02-27 16:29:16 -05:00
|
|
|
|
(define-public chez-scheme-bootstrap-bootfiles
|
|
|
|
|
(package
|
|
|
|
|
(inherit chez-scheme)
|
|
|
|
|
(name "chez-scheme-bootstrap-bootfiles")
|
|
|
|
|
(inputs '())
|
|
|
|
|
(native-inputs '())
|
|
|
|
|
(outputs '("out"))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
;; TODO: cross compilation
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:install-plan
|
|
|
|
|
#~`(("boot/" "lib/chez-scheme-bootfiles"))))
|
|
|
|
|
(supported-systems
|
|
|
|
|
(filter (lambda (system)
|
2022-05-09 02:02:48 -04:00
|
|
|
|
(and=> (chez-upstream-features-for-system system)
|
|
|
|
|
(cut memq 'bootstrap-bootfiles <>)))
|
2022-02-27 16:29:16 -05:00
|
|
|
|
%supported-systems))
|
|
|
|
|
(synopsis "Chez Scheme bootfiles (binary seed)")
|
|
|
|
|
(description
|
|
|
|
|
"Chez Scheme is a self-hosting compiler: building it requires
|
|
|
|
|
``bootfiles'' containing the Scheme-implemented portions compiled for the
|
|
|
|
|
current platform. (Chez can then cross-compile bootfiles for all other
|
|
|
|
|
supported platforms.)
|
|
|
|
|
|
|
|
|
|
This package provides bootstrap bootfiles for upstream Chez Scheme.
|
2022-05-21 20:00:01 -04:00
|
|
|
|
Currently, it simply packages the binaries checked in to the upstream
|
2022-02-27 16:29:16 -05:00
|
|
|
|
repository. Hopefully we can eventually adapt Racket's @code{cs-bootstrap} to
|
|
|
|
|
work with upstream Chez Scheme so that we can bootstrap these files from
|
|
|
|
|
source.")))
|
|
|
|
|
|
2022-02-27 16:29:07 -05:00
|
|
|
|
(define-public chez-scheme-for-racket-bootstrap-bootfiles
|
|
|
|
|
(package
|
2022-02-27 16:29:16 -05:00
|
|
|
|
(inherit chez-scheme-bootstrap-bootfiles)
|
2022-02-27 16:29:07 -05:00
|
|
|
|
(name "chez-scheme-for-racket-bootstrap-bootfiles")
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(version (package-version chez-scheme-for-racket))
|
2022-02-27 16:29:07 -05:00
|
|
|
|
(source #f) ; avoid problematic cycle with racket.scm
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(native-inputs
|
|
|
|
|
(cons* chez-nanopass-bootstrap
|
|
|
|
|
(if (%current-target-system)
|
|
|
|
|
(list zuo
|
|
|
|
|
chez-scheme-for-racket)
|
|
|
|
|
(list racket-vm-bc))))
|
2022-02-27 16:29:07 -05:00
|
|
|
|
(arguments
|
2022-02-27 16:29:16 -05:00
|
|
|
|
(substitute-keyword-arguments
|
|
|
|
|
(package-arguments chez-scheme-bootstrap-bootfiles)
|
|
|
|
|
((#:phases those-phases #~%standard-phases)
|
|
|
|
|
#~(let* ((those-phases #$those-phases)
|
|
|
|
|
(unpack (assoc-ref those-phases 'unpack)))
|
|
|
|
|
(modify-phases those-phases
|
|
|
|
|
(replace 'unpack
|
|
|
|
|
(lambda args
|
|
|
|
|
(unpack #:source #$(or (package-source this-package)
|
|
|
|
|
(package-source racket-vm-bc)))))
|
|
|
|
|
(add-after 'unpack 'chdir
|
|
|
|
|
(lambda args
|
|
|
|
|
(chdir "racket/src/ChezScheme")))
|
|
|
|
|
(add-after 'chdir 'unpack-nanopass+stex
|
|
|
|
|
(lambda args
|
|
|
|
|
#$unpack-nanopass+stex))
|
|
|
|
|
(add-before 'install 'build
|
|
|
|
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
2022-08-27 14:55:50 -04:00
|
|
|
|
#$(cond
|
|
|
|
|
((%current-target-system)
|
|
|
|
|
;; cross-compiling
|
|
|
|
|
#~(invoke
|
|
|
|
|
(search-input-file (or native-inputs inputs)
|
|
|
|
|
"/bin/zuo")
|
|
|
|
|
"makefiles/boot.zuo"
|
|
|
|
|
(search-input-file (or native-inputs inputs)
|
|
|
|
|
"/bin/scheme")
|
2022-08-27 14:55:52 -04:00
|
|
|
|
#$(or (racket-cs-native-supported-system?)
|
|
|
|
|
(nix-system->pbarch-machine-type))))
|
2022-08-27 14:55:50 -04:00
|
|
|
|
(else
|
|
|
|
|
;; bootstrapping
|
|
|
|
|
#~(invoke
|
|
|
|
|
(search-input-file (or native-inputs inputs)
|
|
|
|
|
"/opt/racket-vm/bin/racket")
|
gnu: racket: Update to 8.7.
Also, update 'chez-scheme-for-racket' to 9.5.9.8.
Note that racket-backport-8.6-cross-install.patch,
racket-backport-8.6-docindex-write.patch, and
racket-backport-8.6-hurd.patch were missing from dist_patch_DATA.
* gnu/packages/patches/racket-backport-8.6-cross-install.patch,
gnu/packages/patches/racket-backport-8.6-docindex-write.patch,
gnu/packages/patches/racket-backport-8.6-hurd.patch,
gnu/packages/patches/racket-backport-8.6-zuo.patch: Remove patches.
* gnu/packages/patches/racket-backport-8.7-pkg-strip.patch: New patch.
* gnu/local.mk (dist_patch_DATA): Update accordingly.
* gnu/packages/racket.scm (%racket-origin)[patches]: Likewise.
(%racket-version): Update to 8.7.
(racket)[inputs]: Add 'scheme-doc' source package from '%racket-origin'.
(racket)[inputs]<compatibility, db, deinprogramm, draw, drracket>
<eopl, errortrace, gui, htdp, mzscheme, parser-tools, pict, plai, plot>
<r6rs, redex, scribble, slideshow, snip, typed-racket, srfi>
<string-constants>: Update checksums.
* gnu/packages/chez.scm (chez-scheme-for-racket): Update to 9.5.9.8.
[arguments]: Enable tests.
[description]: Update.
(chez-scheme-for-racket-bootstrap-bootfiles)[arguments]: Update path to
'rktboot'.
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
2022-11-17 19:45:30 -05:00
|
|
|
|
"../rktboot/main.rkt"
|
2023-03-24 16:09:52 -04:00
|
|
|
|
;; Temporary handling of builds on non-x86 architectures,
|
|
|
|
|
;; see https://github.com/racket/racket/issues/3948
|
|
|
|
|
;; Autodetect in rktboot only addresses x86 archs, so far.
|
|
|
|
|
#$@(let ((m (or (racket-cs-native-supported-system?)
|
|
|
|
|
(nix-system->pbarch-machine-type))))
|
|
|
|
|
#~("--machine" #$m))))))))))))
|
2022-02-27 16:29:18 -05:00
|
|
|
|
(supported-systems
|
|
|
|
|
(package-supported-systems chez-scheme-for-racket))
|
2022-02-27 16:29:07 -05:00
|
|
|
|
(home-page "https://github.com/racket/ChezScheme")
|
|
|
|
|
;; ^ This is downstream of https://github.com/racket/racket,
|
|
|
|
|
;; but it's designed to be a friendly landing place for people
|
|
|
|
|
;; who want a ChezScheme-shaped repositroy.
|
|
|
|
|
(synopsis "Chez Scheme bootfiles bootstrapped by Racket")
|
|
|
|
|
(description "Chez Scheme is a self-hosting compiler: building it
|
|
|
|
|
requires ``bootfiles'' containing the Scheme-implemented portions compiled for
|
|
|
|
|
the current platform. (Chez can then cross-compile bootfiles for all other
|
|
|
|
|
supported platforms.)
|
|
|
|
|
|
|
|
|
|
The Racket package @code{cs-bootstrap} (part of the main Racket Git
|
|
|
|
|
repository) implements enough of a Chez Scheme simulation to load the Chez
|
|
|
|
|
Scheme compiler purely from source into Racket and apply the compiler to
|
|
|
|
|
itself, thus bootstrapping Chez Scheme. Bootstrapping takes about 10 times as
|
|
|
|
|
long as using an existing Chez Scheme, but @code{cs-bootstrap} supports Racket
|
|
|
|
|
7.1 and later, including the Racket BC variant.
|
|
|
|
|
|
|
|
|
|
Note that the generated bootfiles are specific to Racket's fork of Chez
|
|
|
|
|
Scheme, and @code{cs-bootstrap} does not currently support building upstream
|
2022-02-27 16:29:16 -05:00
|
|
|
|
Chez Scheme.")))
|
2022-02-27 16:29:07 -05:00
|
|
|
|
|
2022-02-27 16:29:08 -05:00
|
|
|
|
;;
|
2022-02-27 16:29:14 -05:00
|
|
|
|
;; Chez's bootstrap dependencies:
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
(define-public stex-bootstrap
|
|
|
|
|
;; This commit includes a fix which we would otherwise want to use as
|
|
|
|
|
;; patch. Let's revert to tagged releases as soon as one becomes available.
|
2022-08-27 14:55:41 -04:00
|
|
|
|
(let ((commit "afa607564a5662ffd748e824801277a6b5a3d11c")
|
|
|
|
|
(revision "2"))
|
2022-02-27 16:29:14 -05:00
|
|
|
|
(hidden-package
|
|
|
|
|
(package
|
|
|
|
|
(name "stex")
|
|
|
|
|
;; ^ Debian calls this "stex", not "chez-stex". It is a set of
|
|
|
|
|
;; command-line tools, and there isn't a Scheme API, let alone a
|
|
|
|
|
;; Chez-specific one, except perhaps that the Scheme examples are
|
|
|
|
|
;; assumed to be Chez-compatible.
|
|
|
|
|
(version (git-version "1.2.2" revision commit))
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/dybvig/stex")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(sha256
|
2022-08-27 14:55:41 -04:00
|
|
|
|
(base32 "0n6dryv5j7cw2qmsj55wqb0ph901h83a2hl4j891ppxp0xx18nkp"))
|
2022-02-27 16:29:14 -05:00
|
|
|
|
(file-name (git-file-name name version))
|
2022-08-27 14:55:42 -04:00
|
|
|
|
(patches
|
|
|
|
|
;; submitted upstream in https://github.com/dybvig/stex/pull/6
|
|
|
|
|
(search-patches "stex-copy-from-immutable-store.patch"))
|
2022-02-27 16:29:14 -05:00
|
|
|
|
(snippet
|
|
|
|
|
#~(for-each delete-file
|
|
|
|
|
'("sbin/install" "doc/stex.pdf" "doc/stex.html")))))
|
|
|
|
|
(outputs '("out"))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
;; N.B. Upstream does not seem to support cross-compilation,
|
|
|
|
|
;; though it would probably be easy to add.
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
(list xorg-rgb
|
|
|
|
|
(texlive-updmap.cfg
|
2023-05-13 09:59:14 -04:00
|
|
|
|
(list texlive-bibtex
|
|
|
|
|
texlive-ec
|
2022-02-27 16:29:14 -05:00
|
|
|
|
texlive-epsf
|
2023-05-13 09:59:14 -04:00
|
|
|
|
texlive-hyperref
|
|
|
|
|
texlive-l3backend
|
2022-02-27 16:29:14 -05:00
|
|
|
|
texlive-oberdiek))
|
|
|
|
|
ghostscript
|
|
|
|
|
netpbm))
|
|
|
|
|
;; Debian uses a versionless path for STEXLIB,
|
|
|
|
|
;; which is much more convienient.
|
|
|
|
|
(arguments
|
|
|
|
|
(list
|
|
|
|
|
#:install-plan #~`(("inputs" "lib/stex/")
|
|
|
|
|
("gifs" "lib/stex/")
|
|
|
|
|
("math" "lib/stex/")
|
|
|
|
|
("src" "lib/stex/")
|
|
|
|
|
("Mf-stex" "lib/stex/")
|
|
|
|
|
("Makefile.template" "lib/stex/"))
|
2022-05-09 02:02:47 -04:00
|
|
|
|
#:modules
|
|
|
|
|
'((guix build copy-build-system)
|
|
|
|
|
(guix build utils)
|
|
|
|
|
(ice-9 popen))
|
2022-02-27 16:29:14 -05:00
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-before 'install 'patch-sources
|
|
|
|
|
(lambda* (#:key native-inputs inputs outputs #:allow-other-keys)
|
|
|
|
|
(define scheme
|
|
|
|
|
(false-if-exception
|
|
|
|
|
(search-input-file inputs "/bin/scheme")))
|
|
|
|
|
(when scheme
|
|
|
|
|
(setenv "Scheme" scheme))
|
|
|
|
|
(substitute* '("Makefile.template"
|
|
|
|
|
"doc/Makefile")
|
|
|
|
|
(("STEXLIB=[^\n]*")
|
|
|
|
|
(string-append "STEXLIB=" #$output "/lib/stex"))
|
|
|
|
|
(("Scheme=[^\n]*")
|
|
|
|
|
(string-append "Scheme=" (or scheme "scheme"))))
|
|
|
|
|
(substitute* '("Mf-stex"
|
|
|
|
|
"math/Makefile")
|
|
|
|
|
(("/bin/rm")
|
|
|
|
|
"rm"))
|
|
|
|
|
(substitute* "Mf-stex"
|
|
|
|
|
(("SHELL=bash")
|
|
|
|
|
;; avoid Solaris workaround
|
|
|
|
|
"#SHELL=bash"))))
|
|
|
|
|
(add-after 'install 'maybe-compile
|
|
|
|
|
(lambda* (#:key native-inputs inputs outputs #:allow-other-keys)
|
|
|
|
|
(cond
|
|
|
|
|
((getenv "Scheme")
|
|
|
|
|
=> (lambda (scheme)
|
|
|
|
|
(define makefile
|
|
|
|
|
(string-append (getcwd) "/Makefile"))
|
|
|
|
|
(define machine
|
2022-05-09 02:02:47 -04:00
|
|
|
|
(let ((pipe (open-pipe* OPEN_BOTH scheme "-q")))
|
|
|
|
|
;; try to not be wrong for cross-compilation
|
|
|
|
|
;; (avoid #% reader abbreviation for Guile)
|
|
|
|
|
(write '(($primitive $target-machine)) pipe)
|
|
|
|
|
(force-output pipe)
|
|
|
|
|
(let ((sym (read pipe)))
|
|
|
|
|
(close-pipe pipe)
|
|
|
|
|
(symbol->string sym))))
|
2022-02-27 16:29:14 -05:00
|
|
|
|
(with-directory-excursion
|
|
|
|
|
(search-input-directory outputs "/lib/stex")
|
|
|
|
|
(invoke "make"
|
|
|
|
|
"-f" makefile
|
|
|
|
|
(string-append "Scheme=" scheme))
|
|
|
|
|
(for-each delete-file
|
|
|
|
|
(find-files machine "\\.")))))
|
|
|
|
|
(else
|
|
|
|
|
;; for bootstrapping, can run without ahead-of-time
|
|
|
|
|
;; compilation
|
|
|
|
|
(format #t "not compiling~%")))))
|
|
|
|
|
(add-after 'maybe-compile 'maybe-make-docs
|
|
|
|
|
(lambda* (#:key native-inputs inputs outputs #:allow-other-keys)
|
|
|
|
|
(cond
|
|
|
|
|
((assoc-ref outputs "doc")
|
|
|
|
|
=> (lambda (doc-prefix)
|
|
|
|
|
(define doc-dir
|
|
|
|
|
(string-append doc-prefix "/share/doc/stex"))
|
|
|
|
|
;; the Makefile is referenced in the documentation
|
|
|
|
|
(copy-recursively "doc" doc-dir)
|
|
|
|
|
(install-file "ReadMe" doc-dir)
|
|
|
|
|
(with-directory-excursion "doc"
|
|
|
|
|
(invoke "make")
|
|
|
|
|
(install-file "stex.html" doc-dir)
|
|
|
|
|
(install-file "stex.pdf" doc-dir))))
|
|
|
|
|
(else
|
|
|
|
|
(format #t "not making docs~%"))))))))
|
|
|
|
|
(home-page "https://github.com/dybvig/stex")
|
2022-05-21 20:00:00 -04:00
|
|
|
|
(synopsis "LaTeX with embedded Scheme code and HTML generation")
|
2022-02-27 16:29:14 -05:00
|
|
|
|
(description "The @code{stex} package extends LaTeX with a handful of
|
|
|
|
|
commands for including Scheme code (or pretty much any other kind of code, as
|
|
|
|
|
long as you don't plan to use the Scheme-specific transcript support) in a
|
|
|
|
|
document. It provides the programs @code{scheme-prep} and @code{html-prep} to
|
|
|
|
|
convert @code{stex} documents to LaTeX and HTML, respectively, plus makefile
|
|
|
|
|
templates, style files, and other resources. The @code{stex} system is used
|
|
|
|
|
to typeset @cite{The Scheme Programming Language} and the @cite{Chez Scheme
|
|
|
|
|
User's Guix}, among other documents.")
|
|
|
|
|
(license expat)))))
|
|
|
|
|
|
|
|
|
|
(define-public stex
|
|
|
|
|
(package/inherit stex-bootstrap
|
|
|
|
|
(inputs (modify-inputs (package-inputs stex-bootstrap)
|
|
|
|
|
(prepend chez-scheme)))
|
|
|
|
|
(outputs '("out" "doc"))
|
|
|
|
|
(properties '())))
|
|
|
|
|
|
2022-02-27 16:29:15 -05:00
|
|
|
|
(define-public chez-nanopass-bootstrap
|
|
|
|
|
(hidden-package
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-nanopass")
|
|
|
|
|
(version "1.9.2")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/nanopass/nanopass-framework-scheme")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "16vjsik9rrzbabbhbxbaha51ppi3f9n8rk59pc6zdyffs0vziy4i"))
|
|
|
|
|
(file-name (git-file-name "nanopass-framework-scheme" version))
|
|
|
|
|
(snippet
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
(when (file-exists? "doc/user-guide.pdf")
|
|
|
|
|
(delete-file "doc/user-guide.pdf"))
|
|
|
|
|
(substitute* "doc/Makefile"
|
|
|
|
|
(("include ~/stex/Mf-stex")
|
|
|
|
|
"include $(STEXLIB)/Mf-stex"))))))
|
|
|
|
|
(build-system copy-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
(list #:install-plan
|
|
|
|
|
#~`(("nanopass.ss" "lib/chez-scheme/")
|
|
|
|
|
("nanopass" "lib/chez-scheme/"))))
|
|
|
|
|
(home-page "https://nanopass.org")
|
|
|
|
|
(synopsis "DSL for compiler development")
|
|
|
|
|
(description "The Nanopass framework is an embedded domain-specific
|
|
|
|
|
language for writing compilers composed of several simple passes that
|
|
|
|
|
operate over well-defined intermediate languages. The goal of this
|
|
|
|
|
organization is both to simplify the understanding of each pass, because it
|
|
|
|
|
is responsible for a single task, and to simplify the addition of new passes
|
|
|
|
|
anywhere in the compiler. Nanopass reduces the boilerplate required to
|
|
|
|
|
create compilers, making them easier to understand and maintain.")
|
|
|
|
|
(license expat))))
|
|
|
|
|
|
|
|
|
|
(define-public chez-nanopass
|
|
|
|
|
(package/inherit chez-nanopass-bootstrap
|
|
|
|
|
(properties '())
|
|
|
|
|
;; TODO: cross-compilation
|
|
|
|
|
(native-inputs (list chez-scheme stex))
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments chez-nanopass-bootstrap)
|
|
|
|
|
((#:install-plan base-plan)
|
|
|
|
|
#~`(("nanopass.so" "lib/chez-scheme/")
|
|
|
|
|
("doc/user-guide.pdf" #$(string-append
|
|
|
|
|
"share/doc/"
|
|
|
|
|
(package-name this-package)
|
|
|
|
|
"-"
|
|
|
|
|
(package-version this-package)
|
|
|
|
|
"/"))
|
|
|
|
|
,@#$base-plan))
|
|
|
|
|
((#:phases base-phases #~%standard-phases)
|
|
|
|
|
#~(modify-phases #$base-phases
|
|
|
|
|
(add-before 'install 'compile-and-test
|
|
|
|
|
(lambda args
|
|
|
|
|
(invoke "scheme"
|
|
|
|
|
"--compile-imported-libraries"
|
|
|
|
|
"--program" "test-all.ss")))
|
|
|
|
|
(add-after 'compile-and-test 'build-doc
|
|
|
|
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
|
|
|
|
(with-directory-excursion "doc"
|
|
|
|
|
(invoke "make"
|
|
|
|
|
(string-append "Scheme="
|
|
|
|
|
(search-input-file
|
|
|
|
|
(or native-inputs inputs)
|
|
|
|
|
"/bin/scheme"))
|
|
|
|
|
(string-append "STEXLIB="
|
|
|
|
|
(search-input-directory
|
|
|
|
|
(or native-inputs inputs)
|
|
|
|
|
"/lib/stex"))))))))))))
|
2022-02-27 16:29:14 -05:00
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Other Chez packages:
|
2022-02-27 16:29:08 -05:00
|
|
|
|
;;
|
|
|
|
|
|
2022-02-27 16:29:10 -05:00
|
|
|
|
;; Help function for Chez Scheme to add the current path to
|
|
|
|
|
;; CHEZSCHEMELIBDIRS.
|
|
|
|
|
(define chez-configure
|
|
|
|
|
#~(lambda _
|
|
|
|
|
(let ((chez-env (getenv "CHEZSCHEMELIBDIRS")))
|
|
|
|
|
(setenv "CHEZSCHEMELIBDIRS"
|
|
|
|
|
(if chez-env
|
|
|
|
|
(string-append ".:" chez-env)
|
|
|
|
|
".")))))
|
|
|
|
|
|
|
|
|
|
;; Help function to define make flags for some Chez Scheme custom make
|
|
|
|
|
;; files.
|
|
|
|
|
(define (chez-make-flags name version)
|
|
|
|
|
#~(let ((out #$output))
|
|
|
|
|
(list
|
2022-02-27 16:29:11 -05:00
|
|
|
|
;; Set 'schemedir' so that libraries are installed in
|
|
|
|
|
;; 'lib/chez-scheme' like Chez's 'native-search-paths' expects.
|
|
|
|
|
(string-append "schemedir=" out "/lib/chez-scheme")
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(string-append "PREFIX=" out)
|
|
|
|
|
(string-append "DOCDIR=" out "/share/doc/" #$name "-" #$version))))
|
|
|
|
|
|
2016-10-16 09:49:36 -04:00
|
|
|
|
(define-public chez-srfi
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-srfi")
|
|
|
|
|
(version "1.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
2019-02-15 11:26:17 -05:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/fedeinthemix/chez-srfi")
|
2019-02-15 11:26:17 -05:00
|
|
|
|
(commit (string-append "v" version))))
|
2016-10-16 09:49:36 -04:00
|
|
|
|
(sha256
|
2019-02-15 11:26:17 -05:00
|
|
|
|
(base32 "1vgn984mj2q4w6r2q66h7qklp2hrh85wwh4k9yisga5fi0ps7myf"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
2016-10-16 09:49:36 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)))
|
2016-10-16 09:49:36 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list #:make-flags (chez-make-flags name version)
|
|
|
|
|
#:test-target "test"
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
#$chez-configure))))
|
2016-10-16 09:49:36 -04:00
|
|
|
|
(home-page "https://github.com/fedeinthemix/chez-srfi")
|
|
|
|
|
(synopsis "SRFI libraries for Chez Scheme")
|
|
|
|
|
(description
|
|
|
|
|
"This package provides a collection of SRFI libraries for Chez Scheme.")
|
|
|
|
|
(license expat)))
|
2016-10-16 09:59:49 -04:00
|
|
|
|
|
|
|
|
|
(define-public chez-web
|
|
|
|
|
(let ((commit "5fd177fe53f31f466bf88720d03c95a3711a8bea")
|
|
|
|
|
(revision "1"))
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-web")
|
2019-02-15 11:27:38 -05:00
|
|
|
|
;; Release 2.0 is different and doesn't work.
|
|
|
|
|
(version (git-version "2.0" revision commit))
|
2016-10-16 09:59:49 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/arcfide/ChezWEB")
|
2016-10-16 09:59:49 -04:00
|
|
|
|
(commit commit)))
|
2019-02-15 11:27:38 -05:00
|
|
|
|
(file-name (git-file-name name version))
|
2016-10-16 09:59:49 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1dq25qygyncbfq4kwwqqgyyakfqjwhp5q23vrf3bff1p66nyfl3b"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)
|
2022-02-27 16:29:10 -05:00
|
|
|
|
ghostscript
|
|
|
|
|
;; FIXME: This package fails to build with the error:
|
|
|
|
|
;; mktexpk: don't know how to create bitmap font for bchr8r
|
|
|
|
|
;; Replacing the following with `texlive` fixes it.
|
|
|
|
|
;; What is missing?
|
|
|
|
|
(texlive-updmap.cfg (list texlive-oberdiek
|
|
|
|
|
texlive-epsf
|
|
|
|
|
texlive-metapost
|
|
|
|
|
texlive-charter
|
|
|
|
|
texlive-pdftex
|
|
|
|
|
texlive-context
|
|
|
|
|
texlive-cm
|
2023-05-14 15:53:07 -04:00
|
|
|
|
texlive-plain))))
|
2016-10-16 09:59:49 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list
|
|
|
|
|
#:make-flags
|
|
|
|
|
#~(list (string-append "PREFIX=" #$output)
|
|
|
|
|
(string-append "DOCDIR=" #$output "/share/doc/"
|
|
|
|
|
#$name "-" #$version)
|
|
|
|
|
;; lib/chez-scheme/chezweb ???
|
|
|
|
|
(string-append "LIBDIR=" #$output "/lib/chezweb")
|
|
|
|
|
(string-append "TEXDIR=" #$output "/share/texmf-local"))
|
|
|
|
|
#:tests? #f ; no tests
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
;; This package has a custom "bootstrap" script that
|
|
|
|
|
;; is meant to be run from the Makefile.
|
|
|
|
|
(delete 'bootstrap)
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* _
|
|
|
|
|
(copy-file "config.mk.template" "config.mk")
|
|
|
|
|
(substitute* "tangleit"
|
|
|
|
|
(("\\./cheztangle\\.ss" all)
|
|
|
|
|
(string-append "scheme --program " all)))
|
|
|
|
|
(substitute* "weaveit"
|
|
|
|
|
(("mpost chezweb\\.mp")
|
|
|
|
|
"mpost --tex=tex chezweb.mp")
|
|
|
|
|
(("\\./chezweave" all)
|
|
|
|
|
(string-append "scheme --program " all)))
|
|
|
|
|
(substitute* "installit"
|
|
|
|
|
(("-g \\$GROUP -o \\$OWNER") "")))))))
|
2016-10-16 09:59:49 -04:00
|
|
|
|
(home-page "https://github.com/arcfide/ChezWEB")
|
|
|
|
|
(synopsis "Hygienic Literate Programming for Chez Scheme")
|
|
|
|
|
(description "ChezWEB is a system for doing Knuthian style WEB
|
|
|
|
|
programming in Scheme.")
|
|
|
|
|
(license expat))))
|
2016-10-18 03:14:34 -04:00
|
|
|
|
|
|
|
|
|
(define-public chez-sockets
|
|
|
|
|
(let ((commit "bce96881c06bd69a6757a6bff139744153924140")
|
|
|
|
|
(revision "1"))
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-sockets")
|
2019-02-15 11:28:28 -05:00
|
|
|
|
(version (git-version "0.0.0" revision commit))
|
2016-10-18 03:14:34 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/arcfide/chez-sockets")
|
2016-10-18 03:14:34 -04:00
|
|
|
|
(commit commit)))
|
2019-02-15 11:28:28 -05:00
|
|
|
|
(file-name (git-file-name name version))
|
2016-10-18 03:14:34 -04:00
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1n5fbwwz51fdzvjackgmnsgh363g9inyxv7kmzi0469cwavwcx5m"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)
|
2022-02-27 16:29:10 -05:00
|
|
|
|
chez-web
|
|
|
|
|
(texlive-updmap.cfg (list texlive-pdftex))))
|
2016-10-18 03:14:34 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list
|
|
|
|
|
#:tests? #f ; no tests
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key native-inputs inputs #:allow-other-keys)
|
|
|
|
|
(let* ((scheme (search-input-file (or native-inputs inputs)
|
|
|
|
|
"/bin/scheme"))
|
|
|
|
|
(lib (string-append (dirname scheme) "/../lib"))
|
|
|
|
|
(header-file (car (find-files lib "scheme\\.h")))
|
|
|
|
|
(include-dir (dirname header-file)))
|
|
|
|
|
(substitute* "Makefile"
|
|
|
|
|
(("(SCHEMEH=).*$" _ var)
|
|
|
|
|
(string-append var include-dir))))))
|
|
|
|
|
(add-before 'build 'tangle
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(setenv "TEXINPUTS"
|
|
|
|
|
(string-append
|
|
|
|
|
(getcwd) ":"
|
|
|
|
|
(assoc-ref inputs "chez-web")
|
|
|
|
|
"/share/texmf-local/tex/generic:"
|
|
|
|
|
":"))
|
|
|
|
|
;; just using "make" tries to build the .c files before
|
|
|
|
|
;; they are created.
|
|
|
|
|
(and (invoke "make" "sockets")
|
|
|
|
|
(invoke "make"))))
|
|
|
|
|
(replace 'build
|
|
|
|
|
(lambda args
|
|
|
|
|
(let ((chez-site (string-append #$output
|
2022-02-27 16:29:11 -05:00
|
|
|
|
"/lib/chez-scheme/arcfide")))
|
2022-02-27 16:29:10 -05:00
|
|
|
|
;; make sure Chez Scheme can find the shared libraries.
|
|
|
|
|
(substitute* "sockets.ss"
|
|
|
|
|
(("(object \")(socket-ffi-values\\.[sd][oy][^\"]*)(\")"
|
|
|
|
|
_ pre file post)
|
|
|
|
|
(string-append pre chez-site "/" file post))
|
|
|
|
|
(("(\")(sockets-stub\\.[sd][oy][^\"]*)(\")"
|
|
|
|
|
_ pre file post)
|
|
|
|
|
(string-append pre chez-site "/" file post)))
|
|
|
|
|
;; to compile chez-sockets, the .so files must be
|
|
|
|
|
;; installed (because of the absolute path we
|
|
|
|
|
;; inserted above).
|
|
|
|
|
(for-each (lambda (f)
|
|
|
|
|
(install-file f chez-site))
|
|
|
|
|
'("socket-ffi-values.so"
|
|
|
|
|
"sockets-stub.so"))
|
|
|
|
|
(invoke "bash"
|
|
|
|
|
"-c"
|
|
|
|
|
(format #f "echo '~s' | scheme -q"
|
|
|
|
|
'(compile-file "sockets.sls"))))))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda args
|
|
|
|
|
(install-file "sockets.so"
|
|
|
|
|
(string-append #$output
|
2022-02-27 16:29:11 -05:00
|
|
|
|
"/lib/chez-scheme/arcfide"))
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(install-file "sockets.pdf"
|
|
|
|
|
(string-append #$output
|
|
|
|
|
"/share/doc/"
|
|
|
|
|
#$name "-" #$version)))))))
|
2016-10-18 03:14:34 -04:00
|
|
|
|
(home-page "https://github.com/arcfide/chez-sockets")
|
|
|
|
|
(synopsis "Extensible sockets library for Chez Scheme")
|
|
|
|
|
(description "Chez-sockets is an extensible sockets library for
|
|
|
|
|
Chez Scheme.")
|
|
|
|
|
(license expat))))
|
2016-10-18 03:16:06 -04:00
|
|
|
|
|
|
|
|
|
(define-public chez-matchable
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-matchable")
|
|
|
|
|
(version "20160306")
|
|
|
|
|
(home-page "https://github.com/fedeinthemix/chez-matchable")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
2019-02-15 11:28:53 -05:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url home-page)
|
|
|
|
|
(commit (string-append "v" version))))
|
2016-10-18 03:16:06 -04:00
|
|
|
|
(sha256
|
2019-02-15 11:28:53 -05:00
|
|
|
|
(base32 "02qn7x348p23z1x5lwhkyj7i8z6mgwpzpnwr8dyina0yzsdkr71s"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
2016-10-18 03:16:06 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list chez-srfi)) ; for tests
|
2016-10-18 03:16:06 -04:00
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)))
|
2016-10-18 03:16:06 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list #:make-flags (chez-make-flags name version)
|
|
|
|
|
#:test-target "test"
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
#$chez-configure))))
|
2016-10-18 03:16:06 -04:00
|
|
|
|
(synopsis "Portable hygienic pattern matcher for Scheme")
|
|
|
|
|
(description "This package provides a superset of the popular Scheme
|
|
|
|
|
@code{match} package by Andrew Wright, written in fully portable
|
|
|
|
|
@code{syntax-rules} and thus preserving hygiene.")
|
|
|
|
|
(license public-domain)))
|
2016-10-16 10:10:31 -04:00
|
|
|
|
|
|
|
|
|
(define-public chez-irregex
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-irregex")
|
|
|
|
|
(version "0.9.4")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
2019-02-15 11:29:17 -05:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
gnu: Remove ".git" from "https://github/…/….git".
Until now, 'lookup-origin' and thus 'lookup-origin-revision' in (guix
swh) would sometimes return #f for these because the ".git" URLs are
redirects to the non-".git" URLs. Consequently, 'guix lint -c archival'
would keep saying "scheduled Software Heritage archival"; likewise, the
fallback download code would fail.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/aidc.scm,
gnu/packages/algebra.scm,
gnu/packages/android.scm,
gnu/packages/animation.scm,
gnu/packages/arcan.scm,
gnu/packages/assembly.scm,
gnu/packages/audio.scm,
gnu/packages/authentication.scm,
gnu/packages/avr.scm,
gnu/packages/axoloti.scm,
gnu/packages/backup.scm,
gnu/packages/bash.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioconductor.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/boost.scm,
gnu/packages/build-tools.scm,
gnu/packages/c.scm,
gnu/packages/calendar.scm,
gnu/packages/cdrom.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/chez.scm,
gnu/packages/clojure.scm,
gnu/packages/code.scm,
gnu/packages/compression.scm,
gnu/packages/compton.scm,
gnu/packages/coq.scm,
gnu/packages/cpp.scm,
gnu/packages/cran.scm,
gnu/packages/crypto.scm,
gnu/packages/curl.scm,
gnu/packages/databases.scm,
gnu/packages/datastructures.scm,
gnu/packages/debug.scm,
gnu/packages/disk.scm,
gnu/packages/distributed.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/dns.scm,
gnu/packages/docker.scm,
gnu/packages/education.scm,
gnu/packages/efi.scm,
gnu/packages/elixir.scm,
gnu/packages/emacs-xyz.scm,
gnu/packages/embedded.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/erlang.scm,
gnu/packages/fabric-management.scm,
gnu/packages/file-systems.scm,
gnu/packages/finance.scm,
gnu/packages/firmware.scm,
gnu/packages/flashing-tools.scm,
gnu/packages/fonts.scm,
gnu/packages/fontutils.scm,
gnu/packages/fpga.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/genealogy.scm,
gnu/packages/genimage.scm,
gnu/packages/geo.scm,
gnu/packages/gimp.scm,
gnu/packages/gl.scm,
gnu/packages/gnome-xyz.scm,
gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/golang.scm,
gnu/packages/gpodder.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/groff.scm,
gnu/packages/groovy.scm,
gnu/packages/gtk.scm,
gnu/packages/guile-xyz.scm,
gnu/packages/guile.scm,
gnu/packages/hardware.scm,
gnu/packages/haskell-apps.scm,
gnu/packages/haskell-xyz.scm,
gnu/packages/hexedit.scm,
gnu/packages/i2p.scm,
gnu/packages/ibus.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/ipfs.scm,
gnu/packages/java-graphics.scm,
gnu/packages/java-maths.scm,
gnu/packages/java.scm,
gnu/packages/javascript.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/jupyter.scm,
gnu/packages/kodi.scm,
gnu/packages/language.scm,
gnu/packages/lego.scm,
gnu/packages/less.scm,
gnu/packages/libusb.scm,
gnu/packages/linux.scm,
gnu/packages/lirc.scm,
gnu/packages/lisp-xyz.scm,
gnu/packages/llvm.scm,
gnu/packages/logging.scm,
gnu/packages/lolcode.scm,
gnu/packages/lua.scm,
gnu/packages/lxde.scm,
gnu/packages/lxqt.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/markup.scm,
gnu/packages/maths.scm,
gnu/packages/maven.scm,
gnu/packages/mes.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/node-xyz.scm,
gnu/packages/ocaml.scm,
gnu/packages/ocr.scm,
gnu/packages/onc-rpc.scm,
gnu/packages/opencl.scm,
gnu/packages/opencog.scm,
gnu/packages/pantheon.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/perl6.scm,
gnu/packages/phabricator.scm,
gnu/packages/popt.scm,
gnu/packages/printers.scm,
gnu/packages/prolog.scm,
gnu/packages/protobuf.scm,
gnu/packages/pulseaudio.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/python-xyz.scm,
gnu/packages/qt.scm,
gnu/packages/radio.scm,
gnu/packages/rails.scm,
gnu/packages/rdf.scm,
gnu/packages/rednotebook.scm,
gnu/packages/rpc.scm,
gnu/packages/rsync.scm,
gnu/packages/ruby.scm,
gnu/packages/rust.scm,
gnu/packages/scheme.scm,
gnu/packages/screen.scm,
gnu/packages/security-token.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/shellutils.scm,
gnu/packages/simh.scm,
gnu/packages/sml.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/stenography.scm,
gnu/packages/sync.scm,
gnu/packages/syncthing.scm,
gnu/packages/synergy.scm,
gnu/packages/telephony.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tmux.scm,
gnu/packages/tor.scm,
gnu/packages/toys.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/vim.scm,
gnu/packages/virtualization.scm,
gnu/packages/vlang.scm,
gnu/packages/vnc.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wireservice.scm,
gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm,
tests/lint.scm: Remove trailing ".git" from 'git-reference' URL.
2020-07-12 16:53:28 -04:00
|
|
|
|
(url "https://github.com/fedeinthemix/chez-irregex")
|
2019-02-15 11:29:17 -05:00
|
|
|
|
(commit (string-append "v" version))))
|
2016-10-16 10:10:31 -04:00
|
|
|
|
(sha256
|
2019-02-15 11:29:17 -05:00
|
|
|
|
(base32 "0jh6piylw545j81llay9wfivgpv6lcnwd81gm4w17lkasslir50q"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
2016-10-16 10:10:31 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list chez-matchable)) ; for tests
|
2016-10-16 10:10:31 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list chez-srfi)) ; for irregex-utils
|
2016-10-16 10:10:31 -04:00
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)))
|
2016-10-16 10:10:31 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list #:make-flags (chez-make-flags name version)
|
|
|
|
|
#:test-target "test"
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
#$chez-configure))))
|
2016-10-16 10:10:31 -04:00
|
|
|
|
(home-page "https://github.com/fedeinthemix/chez-irregex")
|
|
|
|
|
(synopsis "Portable regular expression library for Scheme")
|
|
|
|
|
(description "This package provides a portable and efficient
|
|
|
|
|
R[4567]RS implementation of regular expressions, supporting both POSIX
|
|
|
|
|
syntax with various (irregular) PCRE extensions, as well as SCSH's SRE
|
|
|
|
|
syntax, with various aliases for commonly used patterns.")
|
|
|
|
|
(license bsd-3)))
|
2016-10-16 10:12:25 -04:00
|
|
|
|
|
|
|
|
|
(define-public chez-fmt
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-fmt")
|
|
|
|
|
(version "0.8.11")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append
|
|
|
|
|
"http://synthcode.com/scheme/fmt/fmt-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1zxqlw1jyg85yzclylh8bp2b3fwcy3l3xal68jw837n5illvsjcl"))
|
|
|
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list chez-srfi)) ; for irregex-utils
|
2016-10-16 10:12:25 -04:00
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)))
|
2016-10-16 10:12:25 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list #:make-flags (chez-make-flags name version)
|
|
|
|
|
#:test-target "chez-check"
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
#$chez-configure)
|
|
|
|
|
(replace 'build
|
|
|
|
|
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
|
|
|
|
(apply invoke "make" "chez-build" make-flags)))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
|
|
|
|
(apply invoke "make" "chez-install" make-flags))))))
|
gnu: Use HTTPS package home pages wherever possible.
* gnu/packages/accessibility.scm (florence)[home-page]: Use HTTPS.
* gnu/packages/admin.scm (netcat, nmon)[home-page]: Likewise.
* gnu/packages/algebra.scm (mpfrcx, cm, flint, fftw, r-dtt)[home-page]:
Likewise.
* gnu/packages/apr.scm (apr, apr-util)[home-page]: Likewise.
* gnu/packages/aspell.scm (aspell-dict-it)[home-page]: Likewise.
* gnu/packages/astronomy.scm (casacore, sextractor, libnova)
(xplanet)[home-page]: Likewise.
* gnu/packages/audio.scm (libtimidity, alsa-modular-synth, azr3, tao)
(freepats, rakarrack, liblo, libshout-idjc, timidity++, libsbsms)
(libmodplug, libxmp, xmp, sox, drc, gsm, gnaural)
(streamripper)[home-page]: Likewise.
* gnu/packages/authentication.scm (pamtester)[home-page]: Likewise.
* gnu/packages/backup.scm (grsync)[home-page]: Likewise.
* gnu/packages/bioconductor.scm (r-nmf, r-edger, r-limma)
(r-plgem)[home-page]: Likewise.
* gnu/packages/bioinformatics.scm (python-biom-format, bowtie, bowtie1)
(bwa, crossmap, java-htsjdk, java-htsjdk-latest, java-picard)
(java-picard-2.10.3, kaiju, proteinortho, rsem, rseqc, seek, samtools)
(snap-aligner, subread, stringtie, r-centipede, prinseq, emboss, phylip)
(libsbml)[home-page]: Likewise.
* gnu/packages/build-tools.scm (tup)[home-page]: Likewise.
* gnu/packages/cdrom.scm (libcddb, cdrdao, cdrtools)
(cd-discid)[home-page]: Likewise.
* gnu/packages/check.scm (cunit, python-nose)
(python-pyhamcrest)[home-page]: Likewise.
* gnu/packages/chemistry.scm (gromacs)[home-page]: Likewise.
* gnu/packages/chez.scm (chez-fmt)[home-page]: Likewise.
* gnu/packages/code.scm (lcov, uncrustify, cscope)[home-page]: Likewise.
* gnu/packages/compression.scm (p7zip)[home-page]: Likewise.
* gnu/packages/cran.scm (r-emdist, r-proj4, r-zoo, r-ggalluvial)
(r-orgmassspecr, r-polychrome, r-partykit, r-rcpp, r-ff, r-emdbook)
(r-fitdistrplus, r-linprog, r-geometry, r-dtw, r-fst, r-rjags)
(r-intergraph, r-qualv, r-labelled, r-survey, r-coin, r-fmsb, r-tm)
(r-corpcor, r-rmpfr, r-spatialextremes, r-longitudinal, r-genenet)
(r-bayesm, r-seqinr, r-mpm, r-text2vec, r-rgdal, r-seewave, r-hdrcde)
(r-shapes, r-anytime, r-stm, r-d3network, r-tam, r-directlabels)
(r-spatstat-utils, r-spatstat-sparse, r-spatstat-data, r-spatstat-geom)
(r-spatstat-core, r-spatstat-linnet, r-spatstat-random, r-spatstat)
(r-rcpptoml, r-mlecens, r-seurat, r-mlearning, r-zooimage)[home-page]:
Likewise.
* gnu/packages/crates-io.scm (rust-nickel-0.11, rust-thrift-0.13)
(rust-trust-dns-https-0.20, rust-trust-dns-native-tls-0.20)
(rust-trust-dns-openssl-0.20, rust-trust-dns-proto-0.20)
(rust-trust-dns-resolver-0.20, rust-trust-dns-rustls-0.20)
(rust-uint-0.9, rust-yaml-rust-0.4)[home-page]: Likewise.
* gnu/packages/crypto.scm (libdecaf, ccrypt)[home-page]: Likewise.
* gnu/packages/curl.scm (curlpp)[home-page]: Likewise.
* gnu/packages/databases.scm (python-pylibmc, unixodbc, wiredtiger)
(libpqxx, mdbtools, virtuoso-ose, libdbi, libdbi-drivers)
(soci)[home-page]: Likewise.
* gnu/packages/debian.scm (apt-mirror)[home-page]: Likewise.
* gnu/packages/debug.scm (remake)[home-page]: Likewise.
* gnu/packages/disk.scm (sdparm, idle3-tools, duc)[home-page]: Likewise.
* gnu/packages/django.scm (python-django-haystack)[home-page]: Likewise.
* gnu/packages/djvu.scm (djvulibre, djview)[home-page]: Likewise.
* gnu/packages/dns.scm (dnsmasq)[home-page]: Likewise.
* gnu/packages/docbook.scm (dblatex, docbook2x)[home-page]: Likewise.
* gnu/packages/documentation.scm (scrollkeeper)[home-page]: Likewise.
* gnu/packages/ebook.scm (liblinebreak)[home-page]: Likewise.
* gnu/packages/electronics.scm (xoscope)[home-page]: Likewise.
* gnu/packages/emacs-xyz.scm (emacs-bbdb, emacs-caps-lock, emacs-djvu)
(emacs-pabbrev, emacs-twittering-mode, emacs-filladapt, emacs-rudel)
(emacs-stream, emacspeak, emacs-cc-mode, emacs-eldoc, emacs-jsonrpc)
(emacs-gtk-look, emacs-xclip, emacs-slime-volleyball, emacs-minimap)
(emacs-auto-dictionary-mode, emacs-persist, emacs-shell-command+)
(emacs-map, emacs-xref, emacs-dictionary)[home-page]: Likewise.
* gnu/packages/embedded.scm (sdcc)[home-page]: Likewise.
* gnu/packages/engineering.scm (asco, libngspice, libspnav)
(openctm)[home-page]: Likewise.
* gnu/packages/erlang.scm (erlang-erlware-commons)[home-page]: Likewise.
* gnu/packages/file-systems.scm (jfsutils, curlftpfs)[home-page]:
Likewise.
* gnu/packages/finance.scm (gbonds)[home-page]: Likewise.
* gnu/packages/flashing-tools.scm (dfu-util, srecord)[home-page]:
Likewise.
* gnu/packages/fltk.scm (ntk)[home-page]: Likewise.
* gnu/packages/fonts.scm (font-terminus, font-tex-gyre)
(font-comic-neue)[home-page]: Likewise.
* gnu/packages/fontutils.scm (ttf2pt1, potrace, libspiro)[home-page]:
Likewise.
* gnu/packages/fpga.scm (icestorm, gtkwave, gtkwave)
(python-myhdl)[home-page]: Likewise.
* gnu/packages/freedesktop.scm (libatasmart)[home-page]: Likewise.
* gnu/packages/ftp.scm (weex)[home-page]: Likewise.
* gnu/packages/game-development.scm (dds, python-tmx, sfxr, quesoglc)
(eureka, plib)[home-page]: Likewise.
* gnu/packages/games.scm (abe, alex4, armagetronad, barony)
(foobillard++, golly, ltris, pipewalker, prboom-plus, trigger-rally)
(cmatrix, pinball, pioneers, tennix, chromium-bsu, freeciv, kiki)
(quakespasm, frotz, frotz-dumb-terminal, frotz-sdl, btanks)
(flare-engine, chessx, barrage, cgoban, passage)[home-page]: Likewise.
* gnu/packages/geo.scm (python-geopandas, saga)[home-page]: Likewise.
* gnu/packages/gl.scm (freeglut, gl2ps)[home-page]: Likewise.
* gnu/packages/gnome.scm (cogl, clutter-gtk, clutter-gst, bluefish)
(workrave)[home-page]: Likewise.
* gnu/packages/gnustep.scm (wmnd, wmfire, wmfire)[home-page]: Likewise.
* gnu/packages/graph.scm (mscgen)[home-page]: Likewise.
* gnu/packages/graphics.scm (assimp, alembic, ctl, agg)
(opencsg)[home-page]: Likewise.
* gnu/packages/graphviz.scm (gts)[home-page]: Likewise.
* gnu/packages/gtk.scm (gtkspell3)[home-page]: Likewise.
* gnu/packages/guile-xyz.scm (guile-irregex)[home-page]: Likewise.
* gnu/packages/haskell-apps.scm (cpphs)[home-page]: Likewise.
* gnu/packages/haskell-check.scm (ghc-hunit)[home-page]: Likewise.
* gnu/packages/haskell-web.scm (ghc-http-client-restricted)
(ghc-blaze-html, ghc-happstack-server, ghc-sourcemap)[home-page]:
Likewise.
* gnu/packages/haskell-xyz.scm (ghc-assoc, ghc-cairo, ghc-cborg)
(ghc-csv, ghc-glob, ghc-gtk2hs-buildtools, ghc-hmatrix-gsl-stats)
(ghc-intervalmap, ghc-lens-family-core, ghc-managed, ghc-mountpoints)
(ghc-network-multicast, ghc-optional-args, ghc-regex, ghc-spoon)
(ghc-transformers, ghc-turtle, ghc-utf8-light, ghc-wizards)
(ghc-template-haskell, ghc-boot-th, ghc-binary-orphans)
(ghc-postgresql-simple)[home-page]: Likewise.
* gnu/packages/hexedit.scm (ht, bvi)[home-page]: Likewise.
* gnu/packages/hunspell.scm (hunspell-dict-hu)[home-page]: Likewise.
* gnu/packages/image-processing.scm (mia)[home-page]: Likewise.
* gnu/packages/image-viewers.scm (geeqie, gpicview, luminance-hdr)
(qiv)[home-page]: Likewise.
* gnu/packages/image.scm (libuemf, devil, steghide, optipng, niftilib)
(sng, mtpaint)[home-page]: Likewise.
* gnu/packages/java-xml.scm (java-simple-xml, java-jaxp)
(java-apache-xml-commons-resolver)[home-page]: Likewise.
* gnu/packages/java.scm (java-cisd-base, java-cisd-args4j)
(java-hamcrest-core, java-jsr305, java-eclipse-osgi)
(java-eclipse-equinox-common, java-eclipse-core-jobs)
(java-eclipse-equinox-registry, java-eclipse-equinox-app)
(java-eclipse-equinox-preferences, java-eclipse-core-contenttype)
(java-eclipse-text, java-treelayout, java-aopalliance, java-jeromq)
(java-cdi-api)[home-page]: Likewise.
* gnu/packages/jemalloc.scm (jemalloc-4.5.0)[home-page]: Likewise.
* gnu/packages/julia-xyz.scm (julia-recipespipeline)[home-page]:
Likewise.
* gnu/packages/kde-internet.scm (kget)[home-page]: Likewise.
* gnu/packages/kde-systemtools.scm (dolphin-plugins)
(konsole)[home-page]: Likewise.
* gnu/packages/kodi.scm (fstrcmp)[home-page]: Likewise.
* gnu/packages/language.scm (hime, libchewing)[home-page]: Likewise.
* gnu/packages/lego.scm (nqc)[home-page]: Likewise.
* gnu/packages/lesstif.scm (lesstif)[home-page]: Likewise.
* gnu/packages/libcanberra.scm (libcanberra)[home-page]: Likewise.
* gnu/packages/libdaemon.scm (libdaemon)[home-page]: Likewise.
* gnu/packages/libffi.scm (libffi)[home-page]: Likewise.
* gnu/packages/libreoffice.scm (libwpd, libwpg, libwps)[home-page]:
Likewise.
* gnu/packages/libusb.scm (libmtp, gmtp)[home-page]: Likewise.
* gnu/packages/linux.scm (e2fsprogs, extundelete, lsscsi, net-tools)
(kbd, sysfsutils, cpuid, libpfm4)[home-page]: Likewise.
* gnu/packages/lisp-check.scm (sbcl-ptester, sbcl-xlunit)[home-page]:
Likewise.
* gnu/packages/lisp-xyz.scm (sbcl-html-encode, sbcl-py-configparser)
(sbcl-cl-utilities, sbcl-series, sbcl-uffi, sbcl-clsql, sbcl-sycamore)
(sbcl-osicat, sbcl-hu.dwim.common, sbcl-caveman, sbcl-trivial-shell)
(sbcl-trivial-benchmark, sbcl-screamer, sbcl-smug)[home-page]: Likewise.
* gnu/packages/lisp.scm (lush2)[home-page]: Likewise.
* gnu/packages/logging.scm (log4cpp)[home-page]: Likewise.
* gnu/packages/lua.scm (lua-ldoc)[home-page]: Likewise.
* gnu/packages/machine-learning.scm (mcl, openfst, rxcpp)[home-page]:
Likewise.
* gnu/packages/mail.scm (muchsync, procmail, sendmail)
(opensmtpd-filter-dkimsign, crm114)[home-page]: Likewise.
* gnu/packages/man.scm (libpipeline, man-db)[home-page]: Likewise.
* gnu/packages/maths.scm (lapack, scalapack, hdf-eos5, itpp, gmsh)
(metamath, p4est, armadillo, suitesparse, atlas, lpsolve, wcalc, why3)
(frama-c)[home-page]: Likewise.
* gnu/packages/mcrypt.scm (mcrypt, libmcrypt, libmhash)[home-page]:
Likewise.
* gnu/packages/minetest.scm (minetest-advtrains)[home-page]: Likewise.
* gnu/packages/monitoring.scm (python-whisper, python-carbon)
(hostscope)[home-page]: Likewise.
* gnu/packages/mp3.scm (id3lib, libmp3splt, mp3splt, mpg321)
(lame)[home-page]: Likewise.
* gnu/packages/multiprecision.scm (mpc)[home-page]: Likewise.
* gnu/packages/music.scm (aria-maestosa, lingot, setbfree, bristol)
(portmidi, python-pyportmidi, zynaddsubfx, yoshimi, aj-snapshot)
(schismtracker, midicsv, midicsv, qmidiarp, qmidiroute, dssi, tap-lv2)
(shiru-lv2)[home-page]: Likewise.
* gnu/packages/ncurses.scm (stfl)[home-page]: Likewise.
* gnu/packages/networking.scm (lksctp-tools, mbuffer, ifstatus, bird)
(tunctl, traceroute)[home-page]: Likewise.
* gnu/packages/node-xyz.scm (node-mersenne)[home-page]: Likewise.
* gnu/packages/ntp.scm (openntpd)[home-page]: Likewise.
* gnu/packages/ocaml.scm (opam, hevea, ocaml-menhir, ocaml-piqilib)
(ocaml-graph, cubicle)[home-page]: Likewise.
* gnu/packages/opencl.scm (python-pyopencl)[home-page]: Likewise.
* gnu/packages/package-management.scm (xstow, modules)[home-page]:
Likewise.
* gnu/packages/parallel.scm (xjobs)[home-page]: Likewise.
* gnu/packages/pdf.scm (podofo, qpdf, xournal, impressive)[home-page]:
Likewise.
* gnu/packages/perl.scm (perl-math-vecstat, perltidy)[home-page]:
Likewise.
* gnu/packages/photo.scm (libpano13, enblend-enfuse, hugin)[home-page]:
Likewise.
* gnu/packages/plan9.scm (drawterm)[home-page]: Likewise.
* gnu/packages/plotutils.scm (guile-charting, ploticus)[home-page]:
Likewise.
* gnu/packages/popt.scm (argtable, popt)[home-page]: Likewise.
* gnu/packages/profiling.scm (otf2)[home-page]: Likewise.
* gnu/packages/pulseaudio.scm (pulseaudio)[home-page]: Likewise.
* gnu/packages/python-check.scm (python-mypy)[home-page]: Likewise.
* gnu/packages/python-web.scm (python-cssutils)
(python-translationstring)[home-page]: Likewise.
* gnu/packages/python-xyz.scm (python-diskcache, python-doxyqml)
(python-docutils, python-pexpect, python-importlib-resources)
(python-simplegeneric, python-urwid, python-xlrd, python-xlwt)
(python-pyasn1, python-pythondialog, python-tftpy, python-random2)
(python-arcp, python-pyopengl, python-sortedcollections)
(python-sortedcontainers, python-yapsy, python-pydispatcher)
(python-posix-ipc)[home-page]: Likewise.
* gnu/packages/qt.scm (qwt, libqglviewer, signond)[home-page]: Likewise.
* gnu/packages/radio.scm (unixcw, gnuais)[home-page]: Likewise.
* gnu/packages/raspberry-pi.scm (bcm2835)[home-page]: Likewise.
* gnu/packages/rdf.scm (clucene, rasqal, redland)[home-page]: Likewise.
* gnu/packages/regex.scm (tre)[home-page]: Likewise.
* gnu/packages/rsync.scm (librsync)[home-page]: Likewise.
* gnu/packages/ruby.scm (ruby-packnga, ruby-nokogiri, ruby-oj, ruby-ox)
(ruby-sinatra, ruby-citrus, ruby-cbor, ruby-roda)[home-page]: Likewise.
* gnu/packages/scheme.scm (scheme48, tinyscheme)[home-page]: Likewise.
* gnu/packages/screen.scm (dtach)[home-page]: Likewise.
* gnu/packages/scsi.scm (sg3-utils)[home-page]: Likewise.
* gnu/packages/sdl.scm (libmikmod, sdl-pango)[home-page]: Likewise.
* gnu/packages/shellutils.scm (hstr, rig)[home-page]: Likewise.
* gnu/packages/simulation.scm (python-dolfin-adjoint)[home-page]:
Likewise.
* gnu/packages/smalltalk.scm (smalltalk)[home-page]: Likewise.
* gnu/packages/speech.scm (espeak)[home-page]: Likewise.
* gnu/packages/stalonetray.scm (stalonetray)[home-page]: Likewise.
* gnu/packages/statistics.scm (jags, r-mass, r-class, r-lattice)
(r-matrix, r-nnet, r-spatial, r-bit, r-bit64, r-digest, r-xtable)
(python-statsmodels, r-ade4, r-latticeextra, r-rcurl, r-xml, r-mvtnorm)
(r-robustbase, r-minqa, r-fdrtool, java-jdistlib, xlispstat)[home-page]:
Likewise.
* gnu/packages/swig.scm (swig)[home-page]: Likewise.
* gnu/packages/task-management.scm (wtime)[home-page]: Likewise.
* gnu/packages/tcl.scm (itcl, tclxml, tclx)[home-page]: Likewise.
* gnu/packages/terminals.scm (libtermkey, mlterm, libvterm)
(libvterm)[home-page]: Likewise.
* gnu/packages/tex.scm (texlive-lm, texlive-lm-math, texlive-cs)
(texlive-csplain, biber, texmaker)[home-page]: Likewise.
* gnu/packages/text-editors.scm (joe)[home-page]: Likewise.
* gnu/packages/textutils.scm (drm-tools, docx2txt)[home-page]: Likewise.
* gnu/packages/tv.scm (tvtime)[home-page]: Likewise.
* gnu/packages/unicode.scm (libunibreak)[home-page]: Likewise.
* gnu/packages/upnp.scm (libupnp)[home-page]: Likewise.
* gnu/packages/version-control.scm (cvs)[home-page]: Likewise.
* gnu/packages/video.scm (transcode, libquicktime, mjpegtools, aalib)
(liba52, libmpeg2, x265, libdv, dvdauthor, aegisub, pitivi, gavl)
(dvdbackup, guvcview, video-contact-sheet)[home-page]: Likewise.
* gnu/packages/virtualization.scm (bochs)[home-page]: Likewise.
* gnu/packages/w3m.scm (w3m)[home-page]: Likewise.
* gnu/packages/web.scm (qjson, libquvi-scripts, libquvi, quvi)
(tidy-html, htmlcxx)[home-page]: Likewise.
* gnu/packages/wm.scm (evilwm, menumaker)[home-page]: Likewise.
* gnu/packages/wv.scm (wv)[home-page]: Likewise.
* gnu/packages/wxwidgets.scm (wxsvg)[home-page]: Likewise.
* gnu/packages/xdisorg.scm (mtdev, xsel)[home-page]: Likewise.
* gnu/packages/xfig.scm (xfig, transfig)[home-page]: Likewise.
* gnu/packages/xml.scm (openjade, python-pyxb, xmlstarlet, xmlrpc-c)
(opensp)[home-page]: Likewise.
* gnu/packages/xorg.scm (xf86-video-qxl)[home-page]: Likewise.
2023-02-11 19:00:00 -05:00
|
|
|
|
(home-page "https://synthcode.com/scheme/fmt")
|
2016-10-16 10:12:25 -04:00
|
|
|
|
(synopsis "Combinator formatting library for Chez Scheme")
|
|
|
|
|
(description "This package provides a library of procedures for
|
|
|
|
|
formatting Scheme objects to text in various ways, and for easily
|
|
|
|
|
concatenating, composing and extending these formatters efficiently
|
|
|
|
|
without resorting to capturing and manipulating intermediate
|
|
|
|
|
strings.")
|
|
|
|
|
(license bsd-3)))
|
2016-10-22 04:55:36 -04:00
|
|
|
|
|
|
|
|
|
(define-public chez-mit
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-mit")
|
|
|
|
|
(version "0.1")
|
|
|
|
|
(home-page "https://github.com/fedeinthemix/chez-mit")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
2019-02-16 10:49:36 -05:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url home-page)
|
|
|
|
|
(commit (string-append "v" version))))
|
2016-10-22 04:55:36 -04:00
|
|
|
|
(sha256
|
2019-02-16 10:49:36 -05:00
|
|
|
|
(base32 "0c7i3b6i90xk96nmxn1pc9272a4yal4v40dm1a4ybdi87x53zkk0"))
|
2022-02-27 16:29:17 -05:00
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(snippet
|
|
|
|
|
;; Workaround for chez-scheme-for-racket.
|
|
|
|
|
;; See: https://github.com/racket/racket/issues/4151
|
|
|
|
|
#~(begin
|
|
|
|
|
(use-modules (guix build utils))
|
|
|
|
|
(substitute* "mit/core.sls"
|
|
|
|
|
(("[(]import ")
|
|
|
|
|
"(import (only (chezscheme) import)\n")
|
|
|
|
|
(("[(]define string->uninterned-symbol gensym[)]")
|
|
|
|
|
(format #f "~s"
|
|
|
|
|
'(begin
|
|
|
|
|
(import (only (chezscheme)
|
|
|
|
|
meta-cond
|
|
|
|
|
library-exports))
|
|
|
|
|
(meta-cond
|
|
|
|
|
((memq 'string->uninterned-symbol
|
|
|
|
|
(library-exports '(chezscheme)))
|
|
|
|
|
(import (only (chezscheme)
|
|
|
|
|
string->uninterned-symbol)))
|
|
|
|
|
(else
|
|
|
|
|
(define string->uninterned-symbol
|
|
|
|
|
gensym)))))))))))
|
2016-10-22 04:55:36 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list chez-srfi)) ; for tests
|
2016-10-22 04:55:36 -04:00
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)))
|
2016-10-22 04:55:36 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list #:make-flags (chez-make-flags name version)
|
|
|
|
|
#:test-target "test"
|
|
|
|
|
#:phases #~(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
#$chez-configure))))
|
2016-10-22 04:55:36 -04:00
|
|
|
|
(synopsis "MIT/GNU Scheme compatibility library for Chez Scheme")
|
|
|
|
|
(description "This package provides a set of MIT/GNU Scheme compatibility
|
|
|
|
|
libraries for Chez Scheme. The main goal was to provide the functionality
|
gnu: Fix descriptions to not use quotes.
* gnu/packages/admin.scm (wpa-supplicant-minimal, mingetty, di),
* gnu/packages/audio.scm (fil-plugins),
* gnu/packages/base.scm (make-ld-wrapper, make-glibc-locales),
* gnu/packages/bioinformatics.scm (r-samtools),
* gnu/packages/chez.scm (chez-mit),
* gnu/packages/commencement.scm (make-gcc-toolchain),
* gnu/packages/compression.scm (fastjar),
* gnu/packages/cran.scm (r-maps, r-rcpp),
* gnu/packages/databases.scm (sparql-query),
* gnu/packages/dunst.scm (dunst),
* gnu/packages/ftp.scm (ncftp),
* gnu/packages/gl.scm (freeglut),
* gnu/packages/haskell-check.scm (ghc-tasty-golden),
* gnu/packages/haskell.scm (ghc-case-insensitive, ghc-text,
ghc-haskell-src, ghc-syb, ghc-deepseq-generics, ghc-network-uri,
ghc-rerebase, ghc-zlib),
* gnu/packages/image.scm (jbig2dec),
* gnu/packages/kde-frameworks.scm (kinit, karchive),
* gnu/packages/linux.scm (wireless-tools, perf, module-init-tools, kbd),
* gnu/packages/lirc.scm (lirc),
* gnu/packages/lisp.scm (uglify-js),
* gnu/packages/mate.scm (mate-netbook),
* gnu/packages/microcom.scm (microcom),
* gnu/packages/music.scm (bristol),
* gnu/packages/networking.scm (perl-geo-ip),
* gnu/packages/patchutils.scm (patches),
* gnu/packages/perl-check.scm (perl-test-more-utf8),
* gnu/packages/perl.scm (perl-log-report-optional, perl-file-which,
perl-io-tty, perl-log-any, perl-digest-sha1, perl-class-load,
perl-regexp-common, perl-module-pluggable, perl-class-modifier),
* gnu/packages/python-xyz.scm (python-backports-abc, python-natsort),
* gnu/packages/samba.scm (iniparser),
* gnu/packages/search.scm (mlocate),
* gnu/packages/spice.scm (spice),
* gnu/packages/statistics.scm (r-dt, r-lubridate, r-estimability,
r-commonmark, r-digest, r-viridislite, r-stringr),
* gnu/packages/tex.scm (texlive-latex-changebar),
* gnu/packages/version-control.scm (subversion),
* gnu/packages/w3m.scm (w3m),
* gnu/packages/web.scm (perl-http-parser,
perl-plack-middleware-reverseproxy),
* gnu/packages/xorg.scm (xkeyboard-config, mkfontdir, xcursor-theme,
mkfontscale, xinit, font-alias)[description]: Use @code instead of quotes.
2019-03-31 09:39:43 -04:00
|
|
|
|
required to port the program @code{Scmutils} to Chez Scheme.")
|
2016-10-22 04:55:36 -04:00
|
|
|
|
(license gpl3+)))
|
2016-10-22 04:58:32 -04:00
|
|
|
|
|
|
|
|
|
(define-public chez-scmutils
|
|
|
|
|
(package
|
|
|
|
|
(name "chez-scmutils")
|
|
|
|
|
(version "0.1")
|
|
|
|
|
(home-page "https://github.com/fedeinthemix/chez-scmutils")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
2019-02-16 10:49:44 -05:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url home-page)
|
|
|
|
|
(commit (string-append "v" version))))
|
2016-10-22 04:58:32 -04:00
|
|
|
|
(sha256
|
2019-02-16 10:49:44 -05:00
|
|
|
|
(base32 "0lb05wlf8qpgg8y0gdsyaxg1nbfx1qbaqdjvygrp64ndn8fnhq7l"))
|
|
|
|
|
(file-name (git-file-name name version))))
|
2016-10-22 04:58:32 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list chez-srfi)) ; for tests
|
2016-10-22 04:58:32 -04:00
|
|
|
|
(native-inputs
|
2022-02-27 16:29:19 -05:00
|
|
|
|
(list (chez-scheme-for-system)))
|
2016-10-22 04:58:32 -04:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list chez-mit chez-srfi))
|
2016-10-22 04:58:32 -04:00
|
|
|
|
(arguments
|
2022-02-27 16:29:10 -05:00
|
|
|
|
(list
|
|
|
|
|
#:make-flags (chez-make-flags name version)
|
|
|
|
|
#:tests? #f ; no test suite
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
#$chez-configure)
|
|
|
|
|
;; Since the documentation is lacking, we install the source
|
|
|
|
|
;; code. For things to work correctly we have to replace
|
|
|
|
|
;; relative paths by absolute ones in 'include' forms. This
|
|
|
|
|
;; in turn requires us to compile the files in the final
|
|
|
|
|
;; destination.
|
|
|
|
|
(delete 'build)
|
|
|
|
|
(add-after 'install 'install-src
|
|
|
|
|
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
|
|
|
|
(apply invoke "make" "install-src" make-flags)))
|
|
|
|
|
(add-after 'install-src 'absolute-path-in-scm-files
|
|
|
|
|
(lambda* (#:key #:allow-other-keys)
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(substitute* file
|
|
|
|
|
(("include +\"\\./scmutils")
|
|
|
|
|
(string-append "include \"" (dirname file)))))
|
|
|
|
|
(find-files #$output "\\.sls"))
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
(substitute* file
|
|
|
|
|
(("include +\"\\./scmutils/simplify")
|
|
|
|
|
(string-append "include \"" (dirname file)))))
|
|
|
|
|
(find-files #$output "fbe-syntax\\.scm"))))
|
|
|
|
|
(add-after 'absolute-path-in-scm-files 'build
|
|
|
|
|
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
|
|
|
|
(let ((mk-file (car (find-files #$output "Makefile"))))
|
|
|
|
|
(with-directory-excursion (dirname mk-file)
|
|
|
|
|
(apply invoke "make" "build" make-flags)))))
|
|
|
|
|
(add-after 'build 'clean-up
|
|
|
|
|
(lambda args
|
|
|
|
|
(for-each delete-file
|
|
|
|
|
(find-files #$output
|
|
|
|
|
"Makefile|compile-all\\.ss")))))))
|
2016-10-22 04:58:32 -04:00
|
|
|
|
(synopsis "Port of MIT/GNU Scheme Scmutils to Chez Scheme")
|
|
|
|
|
(description "This package provides a port of the MIT/GNU Scheme
|
|
|
|
|
Scmutils program to Chez Scheme. The port consists of a set of
|
|
|
|
|
libraries providing most of the functionality of the original.")
|
|
|
|
|
(license gpl3+)))
|