unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51937] [PATCH 0/3] gnu: Add cl-flute.
@ 2021-11-18  6:01 Foo Chuan Wei
  2021-11-18  6:46 ` [bug#51937] [PATCH 1/3] gnu: Add cl-assoc-utils Foo Chuan Wei
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Foo Chuan Wei @ 2021-11-18  6:01 UTC (permalink / raw)
  To: 51937

Foo Chuan Wei (3):
  gnu: Add cl-assoc-utils.
  gnu: Add cl-let-over-lambda.
  gnu: Add cl-flute.

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


base-commit: 7537ec816ffe0aaa6677c53604ac12fe9d9ca250
-- 
2.25.1





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

* [bug#51937] [PATCH 1/3] gnu: Add cl-assoc-utils.
  2021-11-18  6:01 [bug#51937] [PATCH 0/3] gnu: Add cl-flute Foo Chuan Wei
@ 2021-11-18  6:46 ` Foo Chuan Wei
  2021-11-18  6:47 ` [bug#51937] [PATCH 2/3] gnu: Add cl-let-over-lambda Foo Chuan Wei
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Foo Chuan Wei @ 2021-11-18  6:46 UTC (permalink / raw)
  To: 51937

* gnu/packages/lisp-xyz.scm (cl-assoc-utils, ecl-assoc-utils,
  sbcl-assoc-utils): New variables.
---
 gnu/packages/lisp-xyz.scm | 40 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index da03624c4a..6f6de0d7d6 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -17385,6 +17385,46 @@ computing and event based message handling.")
 (define-public cl-gserver
   (sbcl-package->cl-source-package sbcl-cl-gserver))
 
+(define-public sbcl-assoc-utils
+  (let ((commit "74af16a3c0f10ad35e406167de02984744fc7854")
+        (revision "1"))
+    (package
+      (name "sbcl-assoc-utils")
+      (version (git-version "0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/fukamachi/assoc-utils")
+               (commit commit)))
+         (file-name (git-file-name "cl-assoc-utils" version))
+         (sha256
+          (base32 "1yac1v7zmdxj0p6rvwrrhyqvy7yjfhmqbchkwqhhr89gpjvvaick"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       ;; All test cases pass, but tests successfully fail at the end:
+       ;;
+       ;; Summary:
+       ;;   All 1 file passed.
+       ;; Unhandled ASDF/FIND-COMPONENT:MISSING-DEPENDENCY in thread
+       ;; #<SB-THREAD:THREAD "main thread" RUNNING {1001858103}>:
+       ;;   Component ASSOC-UTILS-ASD::ASSOC-UTILS-TEST not found, required by
+       ;;   #<SYSTEM "assoc-utils">
+       `(#:tests? #f))
+      (native-inputs `(("prove" ,sbcl-prove)))
+      (home-page "https://github.com/fukamachi/assoc-utils")
+      (synopsis "Utilities for manipulating association lists in Common Lisp")
+      (description
+       "@{assoc-utils} provides utilities for manipulating association lists in
+Common Lisp.")
+      (license license:public-domain))))
+
+(define-public cl-assoc-utils
+  (sbcl-package->cl-source-package sbcl-assoc-utils))
+
+(define-public ecl-assoc-utils
+  (sbcl-package->ecl-package sbcl-assoc-utils))
+
 (define-public sbcl-cl-posix-mqueue
   (let ((commit "8977370c7206d1f62bd1be80f4254af40654b83f")
         (revision "1"))
-- 
2.25.1





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

* [bug#51937] [PATCH 2/3] gnu: Add cl-let-over-lambda.
  2021-11-18  6:01 [bug#51937] [PATCH 0/3] gnu: Add cl-flute Foo Chuan Wei
  2021-11-18  6:46 ` [bug#51937] [PATCH 1/3] gnu: Add cl-assoc-utils Foo Chuan Wei
@ 2021-11-18  6:47 ` Foo Chuan Wei
  2021-11-18  6:48 ` [bug#51937] [PATCH 3/3] gnu: Add cl-flute Foo Chuan Wei
  2021-11-20 13:58 ` bug#51937: [PATCH 0/3] " Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Foo Chuan Wei @ 2021-11-18  6:47 UTC (permalink / raw)
  To: 51937

* gnu/packages/lisp-xyz.scm (cl-let-over-lambda, ecl-let-over-lambda,
  sbcl-let-over-lambda): New variables.
---
 gnu/packages/lisp-xyz.scm | 47 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 6f6de0d7d6..86050a9482 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -17425,6 +17425,53 @@ Common Lisp.")
 (define-public ecl-assoc-utils
   (sbcl-package->ecl-package sbcl-assoc-utils))
 
+(define-public sbcl-let-over-lambda
+  (let ((commit "481b2e3ab4646186451dfdd2062113203287d520")
+        (revision "1"))
+    (package
+      (name "sbcl-let-over-lambda")
+      (version (git-version "1.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/thephoeron/let-over-lambda")
+               (commit commit)))
+         (file-name (git-file-name "cl-let-over-lambda" version))
+         (sha256
+          (base32 "114p781lwi9lrbzg27dnkymz9m4cvm1k430j7qsykwd0b58d8qbk"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       ;; All test cases pass, but tests successfully fail at the end:
+       ;;
+       ;; Summary:
+       ;; All 1 file passed.
+       ;; Unhandled ASDF/FIND-COMPONENT:MISSING-DEPENDENCY in thread
+       ;; #<SB-THREAD:THREAD "main thread" RUNNING {1001860103}>:
+       ;;   Component LET-OVER-LAMBDA-ASD::LET-OVER-LAMBDA-TEST not found,
+       ;;   required by #<SYSTEM "let-over-lambda">
+       `(#:tests? #f))
+      (inputs
+       `(("alexandria" ,sbcl-alexandria)
+         ("cl-ppcre" ,sbcl-cl-ppcre)
+         ("named-readtables" ,sbcl-named-readtables)))
+      (native-inputs
+       `(("named-readtables" ,sbcl-named-readtables)
+         ("prove" ,sbcl-prove)))
+      (home-page "https://github.com/thephoeron/let-over-lambda")
+      (synopsis
+       "Doug Hoyte's \"Production\" version of macros from Let Over Lambda")
+      (description
+       "Doug Hoyte's \"Production\" version of macros from Let Over Lambda,
+including community updates.")
+      (license license:bsd-3))))
+
+(define-public cl-let-over-lambda
+  (sbcl-package->cl-source-package sbcl-let-over-lambda))
+
+(define-public ecl-let-over-lambda
+  (sbcl-package->ecl-package sbcl-let-over-lambda))
+
 (define-public sbcl-cl-posix-mqueue
   (let ((commit "8977370c7206d1f62bd1be80f4254af40654b83f")
         (revision "1"))
-- 
2.25.1





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

* [bug#51937] [PATCH 3/3] gnu: Add cl-flute.
  2021-11-18  6:01 [bug#51937] [PATCH 0/3] gnu: Add cl-flute Foo Chuan Wei
  2021-11-18  6:46 ` [bug#51937] [PATCH 1/3] gnu: Add cl-assoc-utils Foo Chuan Wei
  2021-11-18  6:47 ` [bug#51937] [PATCH 2/3] gnu: Add cl-let-over-lambda Foo Chuan Wei
@ 2021-11-18  6:48 ` Foo Chuan Wei
  2021-11-20 13:58 ` bug#51937: [PATCH 0/3] " Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Foo Chuan Wei @ 2021-11-18  6:48 UTC (permalink / raw)
  To: 51937

* gnu/packages/lisp-xyz.scm (cl-flute, ecl-flute, sbcl-flute):
  New variables.
---
 gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 86050a9482..59bc5debc2 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -17472,6 +17472,40 @@ including community updates.")
 (define-public ecl-let-over-lambda
   (sbcl-package->ecl-package sbcl-let-over-lambda))
 
+(define-public sbcl-flute
+  (let ((commit "90ebcd6e82f637f49b6de7d625ccc51ec4c92900")
+        (revision "1"))
+    (package
+      (name "sbcl-flute")
+      (version (git-version "0.2-dev" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/ailisp/flute")
+               (commit commit)))
+         (file-name (git-file-name "cl-flute" version))
+         (sha256
+          (base32 "0q8jhp040cvpppyn820mm6a550yfxyr1lar298x13c42mm807f4f"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       `(("assoc-utils" ,sbcl-assoc-utils)
+         ("let-over-lambda" ,sbcl-let-over-lambda)))
+      (native-inputs
+       `(("fiveam" ,sbcl-fiveam)))
+      (home-page "https://github.com/ailisp/flute")
+      (synopsis "HTML5 generation library in Common Lisp")
+      (description
+       "Flute is a beautiful, easily composable HTML5 generation library in
+Common Lisp.")
+      (license license:expat))))
+
+(define-public cl-flute
+  (sbcl-package->cl-source-package sbcl-flute))
+
+(define-public ecl-flute
+  (sbcl-package->ecl-package sbcl-flute))
+
 (define-public sbcl-cl-posix-mqueue
   (let ((commit "8977370c7206d1f62bd1be80f4254af40654b83f")
         (revision "1"))
-- 
2.25.1





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

* bug#51937: [PATCH 0/3] gnu: Add cl-flute.
  2021-11-18  6:01 [bug#51937] [PATCH 0/3] gnu: Add cl-flute Foo Chuan Wei
                   ` (2 preceding siblings ...)
  2021-11-18  6:48 ` [bug#51937] [PATCH 3/3] gnu: Add cl-flute Foo Chuan Wei
@ 2021-11-20 13:58 ` Guillaume Le Vaillant
  3 siblings, 0 replies; 5+ messages in thread
From: Guillaume Le Vaillant @ 2021-11-20 13:58 UTC (permalink / raw)
  To: Foo Chuan Wei; +Cc: 51937-done

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

Patches pushed as 740854ff06fbde8a3f3554ae4591f0944671e4ee and
following.
Thanks.

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

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

end of thread, other threads:[~2021-11-20 14:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-18  6:01 [bug#51937] [PATCH 0/3] gnu: Add cl-flute Foo Chuan Wei
2021-11-18  6:46 ` [bug#51937] [PATCH 1/3] gnu: Add cl-assoc-utils Foo Chuan Wei
2021-11-18  6:47 ` [bug#51937] [PATCH 2/3] gnu: Add cl-let-over-lambda Foo Chuan Wei
2021-11-18  6:48 ` [bug#51937] [PATCH 3/3] gnu: Add cl-flute Foo Chuan Wei
2021-11-20 13:58 ` bug#51937: [PATCH 0/3] " Guillaume Le Vaillant

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).