unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 69904@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Guillaume Le Vaillant <glv@posteo.net>,
	Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>,
	Munyoki Kilyungi <me@bonfacemunyoki.com>,
	Sharlatan Hellseher <sharlatanus@gmail.com>,
	jgart <jgart@dismail.de>
Subject: [bug#69904] [PATCH 07/10] gnu: Add cl-easy-routes.
Date: Tue, 19 Mar 2024 21:41:33 +0000	[thread overview]
Message-ID: <08205512dd11fa2c19d91a7d9dcb9f09ff58e01f.1710883391.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1710883390.git.sharlatanus@gmail.com>

* gnu/packages/lisp-xyz.scm (cl-easy-routes, ecl-easy-routes,
sbcl-easy-routes): New variables.

Change-Id: Ic8d7413faf4b7e23775cc9c10b1b3da6494433d0
---
 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 a22aef345f..6c59dd915e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -2986,6 +2986,46 @@ (define-public cl-eager-future2
 (define-public ecl-eager-future2
   (sbcl-package->ecl-package sbcl-eager-future2))
 
+(define-public sbcl-easy-routes
+  (let ((commit "7832f8bf3d07825b5eb967a2ef04da7c40c18248")
+        (revision "0"))
+    (package
+      (name "sbcl-easy-routes")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/mmontone/easy-routes")
+               (commit commit)))
+         (file-name (git-file-name "cl-easy-routes" version))
+         (sha256
+          (base32 "1banw54kz2llzb9h5sm47ckfc9l348m7qncm0npsy0w837rxkyzx"))))
+      (build-system asdf-build-system/sbcl)
+      (native-inputs (list sbcl-stefil))
+      (inputs
+        (list sbcl-djula sbcl-hunchentoot sbcl-routes))
+      (home-page "https://github.com/mmontone/easy-routes/")
+      (synopsis "Routes handling utility on top of Hunchentoot")
+      (description
+       "EASY-ROUTES is yet another routes handling system on top of Hunchentoot.  It's
+just glue code for Restas routing subsystem (CL-ROUTES).
+
+It supports:
+@itemize
+@item dispatch based on HTTP method
+@item arguments extraction from the url path
+@item decorators
+@item URL generation from route names
+@end itemize")
+      (license license:expat ))))
+
+(define-public cl-easy-routes
+  (sbcl-package->cl-source-package sbcl-easy-routes))
+
+(define-public ecl-easy-routes
+  (sbcl-package->ecl-package sbcl-easy-routes))
+
 (define-public sbcl-jpl-util
   (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
     (package
-- 
2.41.0





  parent reply	other threads:[~2024-03-19 22:02 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-19 21:34 [bug#69904] [PATCH 00/10] gnu: Add cl-ciel Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 01/10] gnu: Add cl-arrow-macros Sharlatan Hellseher
2024-03-20 12:38   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 02/10] gnu: Add cl-trivial-utilities Sharlatan Hellseher
2024-03-20 12:44   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 03/10] gnu: Add cl-trivial-monitored-thread Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 04/10] gnu: Add cl-boost-json Sharlatan Hellseher
2024-03-20 12:56   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 05/10] gnu: Add cl-st-json Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 06/10] gnu: Add cl-json-pointer Sharlatan Hellseher
2024-03-19 21:41 ` Sharlatan Hellseher [this message]
2024-03-20 13:11   ` [bug#69904] [PATCH 07/10] gnu: Add cl-easy-routes Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 08/10] gnu: Add cl-vgplot Sharlatan Hellseher
2024-03-20 13:19   ` Guillaume Le Vaillant
2024-03-19 21:41 ` [bug#69904] [PATCH 09/10] gnu: Add cl-punch Sharlatan Hellseher
2024-03-19 21:41 ` [bug#69904] [PATCH 10/10] gnu: Add cl-ciel Sharlatan Hellseher
2024-03-20 13:29 ` [bug#69904] [PATCH 00/10] " Guillaume Le Vaillant
2024-03-21 22:01 ` bug#69904: " Sharlatan Hellseher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=08205512dd11fa2c19d91a7d9dcb9f09ff58e01f.1710883391.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=69904@debbugs.gnu.org \
    --cc=cox.katherine.e+guix@gmail.com \
    --cc=glv@posteo.net \
    --cc=jgart@dismail.de \
    --cc=me@bonfacemunyoki.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).