GNU bug report logs - #58911
[PATCH 1/2] gnu: Add cl-airship-scheme.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Mon, 31 Oct 2022 00:07:02 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 58911 in the body.
You can then email your comments to 58911 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#58911; Package guix-patches. (Mon, 31 Oct 2022 00:07:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to jgart <jgart <at> dismail.de>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 31 Oct 2022 00:07:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: Guix Patches <guix-patches <at> gnu.org>
Subject: [PATCH 1/2] gnu: Add cl-airship-scheme.
Date: Sun, 30 Oct 2022 19:06:11 -0500



Information forwarded to guix-patches <at> gnu.org:
bug#58911; Package guix-patches. (Mon, 31 Oct 2022 00:14:02 GMT) Full text and rfc822 format available.

Message #8 received at 58911 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 58911 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 1/2] gnu: Add cl-zr-utils.
Date: Sun, 30 Oct 2022 19:08:45 -0500
* gnu/packages/lisp-xyz.scm (cl-zr-utils, ecl-zr-utils, sbcl-zr-utils): New variables.

---
 gnu/packages/lisp-xyz.scm | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 9a7821a129..95a0a49863 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24269,6 +24269,45 @@ (define-public cl-definitions-systems
 (define-public ecl-definitions-systems
   (sbcl-package->ecl-package sbcl-definitions-systems))
 
+(define-public sbcl-zr-utils
+  (let ((commit "e7eaffcb71811f6e1ab85fb15a079bcac4038eeb")
+        (revision "0"))
+    (package
+      (name "sbcl-zr-utils")
+      (version (git-version "0.0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://gitlab.com/zombie-raptor/zr-utils.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+           (base32
+            "1nx388974wdc49h3simr1jnv4rw1mcs2llv4xai88qwjf4y66hsy"))))
+      (build-system asdf-build-system/sbcl)
+      ;; No test or package found for :ZR-UTILS/TESTS/ALL.
+      (arguments '(#:tests? #f))
+      (native-inputs (list sbcl-parachute))
+      (inputs
+        (list sbcl-alexandria
+              sbcl-babel
+              sbcl-closer-mop
+              sbcl-cl-unicode
+              sbcl-trivial-gray-streams))
+      (synopsis "Library originating from the Zombie Raptor game engine project")
+      (description
+"A Common Lisp utilities library originating from the Zombie Raptor game
+engine project.")
+      (home-page "https://gitlab.com/zombie-raptor/zr-utils")
+      (license license:expat))))
+
+(define-public cl-zr-utils
+  (sbcl-package->cl-source-package sbcl-zr-utils))
+
+(define-public ecl-zr-utils
+  (sbcl-package->ecl-package sbcl-zr-utils))
+
 (define-public sbcl-draw-cons-tree
   (let ((commit "04334f5885a85cd7127db8dda3f6d6686a0438b1")
         (revision "0"))
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#58911; Package guix-patches. (Mon, 31 Oct 2022 00:14:02 GMT) Full text and rfc822 format available.

Message #11 received at 58911 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 58911 <at> debbugs.gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH 2/2] gnu: Add cl-airship-scheme.
Date: Sun, 30 Oct 2022 19:08:46 -0500
* gnu/packages/scheme.scm (cl-airship-scheme, ecl-airship-scheme,
sbcl-airship-scheme): New variables.
---
 gnu/packages/scheme.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index 110fdad593..79aa65482b 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -44,6 +44,7 @@ (define-module (gnu packages scheme)
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix utils)
+  #:use-module (guix build-system asdf)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system trivial)
   #:use-module (gnu packages autotools)
@@ -53,6 +54,8 @@ (define-module (gnu packages scheme)
   #:use-module (gnu packages databases)
   #:use-module (gnu packages libevent)
   #:use-module (gnu packages libunistring)
+  #:use-module (gnu packages lisp-check)
+  #:use-module (gnu packages lisp-xyz)
   #:use-module (gnu packages m4)
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages ncurses)
@@ -947,6 +950,41 @@ (define-public gauche
 and list gauche extension packages.")
     (license bsd-3)))
 
+(define-public sbcl-airship-scheme
+  (let ((commit "1862db81dfa67729444916c361f39f9f1c5a2ccd")
+        (revision "0"))
+    (package
+      (name "sbcl-airship-scheme")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://gitlab.com/mbabich/airship-scheme.git")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "1d1kvrzlx5kcfsn3rn30ww8jihjflpgcka3n3awj2k4f0sq4mplg"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs (list sbcl-fiveam))
+      (inputs
+        (list sbcl-alexandria
+              sbcl-float-features
+              sbcl-trivial-features
+              sbcl-zr-utils))
+      (synopsis "R7RS Scheme implementation in Common Lisp")
+      (description
+"R7RS Scheme implementation designed to run within a Common Lisp environment.")
+      (home-page "https://gitlab.com/mbabich/airship-scheme")
+      (license expat))))
+
+(define-public cl-airship-scheme
+  (sbcl-package->cl-source-package sbcl-airship-scheme))
+
+(define-public ecl-airship-scheme
+  (sbcl-package->ecl-package sbcl-airship-scheme))
+
 (define-public gerbil
   (package
     (name "gerbil")
-- 
2.38.1





Information forwarded to guix-patches <at> gnu.org:
bug#58911; Package guix-patches. (Mon, 31 Oct 2022 00:16:01 GMT) Full text and rfc822 format available.

Message #14 received at 58911 <at> debbugs.gnu.org (full text, mbox):

From: jgart <jgart <at> dismail.de>
To: 58911 <at> debbugs.gnu.org
Subject: Re: bug#58911: Acknowledgement ([PATCH 1/2] gnu: Add
 cl-airship-scheme.)
Date: Sun, 30 Oct 2022 19:15:28 -0500
On Mon, 31 Oct 2022 00:07:02 +0000 help-debbugs <at> gnu.org (GNU bug Tracking System) wrote:

Tonight I crash an airship. On purpose.

--
Gail Carriger




Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Mon, 31 Oct 2022 15:05:02 GMT) Full text and rfc822 format available.

Notification sent to jgart <jgart <at> dismail.de>:
bug acknowledged by developer. (Mon, 31 Oct 2022 15:05:02 GMT) Full text and rfc822 format available.

Message #19 received at 58911-done <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: jgart <jgart <at> dismail.de>
Cc: 58911-done <at> debbugs.gnu.org
Subject: Re: [bug#58911] [PATCH 1/2] gnu: Add cl-airship-scheme.
Date: Mon, 31 Oct 2022 15:02:35 +0000
[Message part 1 (text/plain, inline)]
Patches pushed as 2bff47092002ab2d6e4fd4961a79a25a4343ae45 and following
with some modifications (extra phase to fix the tests of zr-utils).
Thanks.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 29 Nov 2022 12:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 204 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.