all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#46011] [PATCH] gnu: Add sbcl-claw-utils.
@ 2021-01-21  0:04 guix-patches--- via
  2021-01-21 10:51 ` Guillaume Le Vaillant
  2021-01-21 13:01 ` [bug#46011] well, not really, here is a new commit guix-patches--- via
  0 siblings, 2 replies; 4+ messages in thread
From: guix-patches--- via @ 2021-01-21  0:04 UTC (permalink / raw)
  To: 46011

From 4f2d2866690fa00b5fccc6cab15b97aabd4b8416 Mon Sep 17 00:00:00 2001
From: Adam Kandur <rndd@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







^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#46011] [PATCH] gnu: Add sbcl-claw-utils.
  2021-01-21  0:04 [bug#46011] [PATCH] gnu: Add sbcl-claw-utils guix-patches--- via
@ 2021-01-21 10:51 ` Guillaume Le Vaillant
  2021-01-21 13:01 ` [bug#46011] well, not really, here is a new commit guix-patches--- via
  1 sibling, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2021-01-21 10:51 UTC (permalink / raw)
  To: Adam Kandur; +Cc: 46011

[-- Attachment #1: Type: text/plain, Size: 621 bytes --]


guix-patches--- via <guix-patches@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?

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#46011] well, not really, here is a new commit
  2021-01-21  0:04 [bug#46011] [PATCH] gnu: Add sbcl-claw-utils guix-patches--- via
  2021-01-21 10:51 ` Guillaume Le Vaillant
@ 2021-01-21 13:01 ` guix-patches--- via
  2021-01-21 13:36   ` bug#46011: [PATCH] gnu: Add sbcl-claw-utils Guillaume Le Vaillant
  1 sibling, 1 reply; 4+ messages in thread
From: guix-patches--- via @ 2021-01-21 13:01 UTC (permalink / raw)
  To: 46011

From cc450bb85b138bcb72915a32bfeb9eab27481c40 Mon Sep 17 00:00:00 2001
From: Adam Kandur <rndd@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






^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#46011: [PATCH] gnu: Add sbcl-claw-utils.
  2021-01-21 13:01 ` [bug#46011] well, not really, here is a new commit guix-patches--- via
@ 2021-01-21 13:36   ` Guillaume Le Vaillant
  0 siblings, 0 replies; 4+ messages in thread
From: Guillaume Le Vaillant @ 2021-01-21 13:36 UTC (permalink / raw)
  To: Adam Kandur; +Cc: 46011-done

[-- Attachment #1: Type: text/plain, Size: 67 bytes --]


Patch pushed as ef9c5247a34580d82a1675eea6242bbe065440cd.
Thanks.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-01-21 13:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-21  0:04 [bug#46011] [PATCH] gnu: Add sbcl-claw-utils guix-patches--- via
2021-01-21 10:51 ` Guillaume Le Vaillant
2021-01-21 13:01 ` [bug#46011] well, not really, here is a new commit guix-patches--- via
2021-01-21 13:36   ` bug#46011: [PATCH] gnu: Add sbcl-claw-utils Guillaume Le Vaillant

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.