unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#51909] [PATCH] gnu: Add cl-routes.
@ 2021-11-17  5:42 Foo Chuan Wei
  2021-11-19  9:57 ` bug#51909: " Guillaume Le Vaillant
  0 siblings, 1 reply; 2+ messages in thread
From: Foo Chuan Wei @ 2021-11-17  5:42 UTC (permalink / raw)
  To: 51909

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

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 4b17c173c9..8e148821aa 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -18286,6 +18286,52 @@ formats within this framework.")
 (define-public cl-feeder
   (sbcl-package->cl-source-package sbcl-feeder))
 
+(define-public sbcl-cl-routes
+  (let ((commit "1b79e85aa653e1ec87e21ca745abe51547866fa9")
+        (revision "1"))
+    (package
+      (name "sbcl-cl-routes")
+      (version (git-version "0.2.5" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/archimag/cl-routes")
+               (commit commit)))
+         (file-name (git-file-name "cl-routes" version))
+         (sha256
+          (base32 "1zpk3cp2v8hm50ppjl10yxr437vv4552r8hylvizglzrq2ibsbr1"))))
+      (build-system asdf-build-system/sbcl)
+      (arguments `(#:asd-systems '("routes")
+                   #:phases
+                   (modify-phases %standard-phases
+                     (add-after 'unpack 'fix-tests
+                       (lambda* (#:key inputs #:allow-other-keys)
+                         ;; Fix: :FORCE and :FORCE-NOT arguments not allowed in
+                         ;; a nested call to ASDF/OPERATE:OPERATE unless
+                         ;; identically to toplevel
+                         (substitute* "routes.asd"
+                           ((" :force t") "")))))))
+      (inputs
+       `(("iterate" ,sbcl-iterate)
+         ("puri" ,sbcl-puri)
+         ("split-sequence" ,sbcl-split-sequence)))
+      (native-inputs
+       `(("lift" ,sbcl-lift)))
+      (home-page "https://github.com/archimag/cl-routes")
+      (synopsis
+       "Common Lisp re-implementation of the Rails routes system for mapping URLs")
+      (description
+       "Common Lisp re-implementation of the Rails routes system for mapping
+URLs.")
+      (license license:llgpl))))
+
+(define-public cl-routes
+  (sbcl-package->cl-source-package sbcl-cl-routes))
+
+(define-public ecl-cl-routes
+  (sbcl-package->ecl-package sbcl-cl-routes))
+
 (define-public sbcl-terminfo
   (let ((commit "b8b2e3ed786bfcf9f1aa4a264cee2e93135080f5")
         (revision "1"))

base-commit: 02a67810e566e8402e0b927c81ae39391762767d
-- 
2.25.1





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

* bug#51909: [PATCH] gnu: Add cl-routes.
  2021-11-17  5:42 [bug#51909] [PATCH] gnu: Add cl-routes Foo Chuan Wei
@ 2021-11-19  9:57 ` Guillaume Le Vaillant
  0 siblings, 0 replies; 2+ messages in thread
From: Guillaume Le Vaillant @ 2021-11-19  9:57 UTC (permalink / raw)
  To: Foo Chuan Wei; +Cc: 51909-done

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

Patch pushed as a5185d9b64798b3a2f4a133354a1da1b62f492fe with a modified
description, and sbcl-cl-routes renamed as sbcl-routes as it allows
getting rid of the 'asd-systems' argument.
Thanks.

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

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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-17  5:42 [bug#51909] [PATCH] gnu: Add cl-routes Foo Chuan Wei
2021-11-19  9:57 ` bug#51909: " 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).