GNU bug report logs - #46011
[PATCH] gnu: Add sbcl-claw-utils.

Previous Next

Package: guix-patches;

Reported by: Adam Kandur <rndd <at> tuta.io>

Date: Thu, 21 Jan 2021 00:05:01 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 46011 in the body.
You can then email your comments to 46011 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#46011; Package guix-patches. (Thu, 21 Jan 2021 00:05:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Adam Kandur <rndd <at> tuta.io>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 21 Jan 2021 00:05:01 GMT) Full text and rfc822 format available.

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

From: Adam Kandur <rndd <at> tuta.io>
To: Guix Patches <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: Add sbcl-claw-utils.
Date: Thu, 21 Jan 2021 01:04:10 +0100 (CET)
From 4f2d2866690fa00b5fccc6cab15b97aabd4b8416 Mon Sep 17 00:00:00 2001
From: Adam Kandur <rndd <at> tuta.io>
Date: Thu, 21 Jan 2021 03:02:32 +0300
Subject: [PATCH] gnu: Add sbcl-claw-utils.

* gnu/packages/lisp-xyz.scm (sbcl-claw-utils): New variable.
---
 gnu/packages/lisp-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 36725eb..f4eeaed 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -12231,6 +12231,42 @@ and lean bindings to C libraries.")
 (define-public ecl-claw
   (sbcl-package->ecl-package sbcl-claw))
 
+(define-public sbcl-claw-utils
+  (let ((revision "0")
+        (commit "efe25016501973dc369f067a64c7d225802bc56f"))
+    (package
+      (name "sbcl-claw-utils")
+      ;; version is not specified
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/borodust/claw-utils")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "01df3kyf2qs3czi332dnz2s35x2j0fq46vgmsw7wjrrvnqc22mk5"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       '(#:asd-files '("claw-utils.asd")
+         #:asd-systems '("claw-utils")))
+      (inputs
+       `(("alexandria" ,sbcl-alexandria)
+     ("cffi" ,sbcl-cffi)
+     ("sbcl-claw" ,sbcl-claw)
+     ("sbcl-cl-autowrap" ,sbcl-cl-autowrap)))
+      (home-page "https://github.com/borodust/claw-utils")
+      (synopsis "Utilities for easier autowrapping.")
+      (description "Various handy utilties to help autowrapping with @code{:claw}.")
+      (license license:expat))))
+
+(define-public cl-claw-utils
+  (sbcl-package->cl-source-package sbcl-claw-utils))
+
+(define-public ecl-claw-utils
+  (sbcl-package->ecl-package sbcl-claw-utils))
+
 (define-public sbcl-array-operations
   (let ((commit "75cbc3b1adb2e3ce2109489753d0f290b071e81b")
         (revision "0"))
-- 
2.30.0







Information forwarded to guix-patches <at> gnu.org:
bug#46011; Package guix-patches. (Thu, 21 Jan 2021 10:52:02 GMT) Full text and rfc822 format available.

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

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Adam Kandur <rndd <at> tuta.io>
Cc: 46011 <at> debbugs.gnu.org
Subject: Re: [bug#46011] [PATCH] gnu: Add sbcl-claw-utils.
Date: Thu, 21 Jan 2021 11:51:43 +0100
[Message part 1 (text/plain, inline)]
guix-patches--- via <guix-patches <at> gnu.org> skribis:

> +(define-public sbcl-claw-utils
> +  (let ((revision "0")
> +        (commit "efe25016501973dc369f067a64c7d225802bc56f"))
> +    (package
> +      (name "sbcl-claw-utils")
>        ...
> +      (inputs
> +       `(("alexandria" ,sbcl-alexandria)
> +     ("cffi" ,sbcl-cffi)
> +     ("sbcl-claw" ,sbcl-claw)
> +     ("sbcl-cl-autowrap" ,sbcl-cl-autowrap)))

Is the cl-autowrap package really necessary here? It is not in the
dependency list of the asd file, and it looks like the package compiles
fine without it. Or is there a case where it is required at runtime?
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#46011; Package guix-patches. (Thu, 21 Jan 2021 13:02:01 GMT) Full text and rfc822 format available.

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

From: Adam Kandur <rndd <at> tuta.io>
To: 46011 <at> debbugs.gnu.org
Subject: well, not really, here is a new commit
Date: Thu, 21 Jan 2021 14:01:12 +0100 (CET)
From cc450bb85b138bcb72915a32bfeb9eab27481c40 Mon Sep 17 00:00:00 2001
From: Adam Kandur <rndd <at> tuta.io>
Date: Thu, 21 Jan 2021 15:57:09 +0300
Subject: [PATCH] gnu: Add sbcl-claw-utils.

* gnu/packages/lisp-xyz.scm (sbcl-claw-utils): New variable.
---
 gnu/packages/lisp-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 36725eb..e2a208a 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -12225,6 +12225,35 @@ package.")
 and lean bindings to C libraries.")
       (license license:bsd-2))))
 
+(define-public sbcl-claw-utils
+  (let ((revision "0")
+        (commit "efe25016501973dc369f067a64c7d225802bc56f"))
+    (package
+      (name "sbcl-claw-utils")
+      ;; version is not specified
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/borodust/claw-utils")
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "01df3kyf2qs3czi332dnz2s35x2j0fq46vgmsw7wjrrvnqc22mk5"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       '(#:asd-files '("claw-utils.asd")
+         #:asd-systems '("claw-utils")))
+      (inputs
+       `(("alexandria" ,sbcl-alexandria)
+     ("cffi" ,sbcl-cffi)
+     ("sbcl-claw" ,sbcl-claw)))
+      (home-page "https://github.com/borodust/claw-utils")
+      (synopsis "Utilities for easier autowrapping.")
+      (description "Various handy utilties to help autowrapping with @code{:claw}.")
+      (license license:expat))))
+
 (define-public cl-claw
   (sbcl-package->cl-source-package sbcl-claw))
 
-- 
2.30.0






Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Thu, 21 Jan 2021 13:37:01 GMT) Full text and rfc822 format available.

Notification sent to Adam Kandur <rndd <at> tuta.io>:
bug acknowledged by developer. (Thu, 21 Jan 2021 13:37:01 GMT) Full text and rfc822 format available.

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

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Adam Kandur <rndd <at> tuta.io>
Cc: 46011-done <at> debbugs.gnu.org
Subject: Re: [bug#46011] [PATCH] gnu: Add sbcl-claw-utils.
Date: Thu, 21 Jan 2021 14:36:16 +0100
[Message part 1 (text/plain, inline)]
Patch pushed as ef9c5247a34580d82a1675eea6242bbe065440cd.
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. (Fri, 19 Feb 2021 12:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 4 years and 179 days ago.

Previous Next


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