[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/03: gnu: cl-quri: Update to 0.7.0-0.03ecaf3.
From: |
guix-commits |
Subject: |
01/03: gnu: cl-quri: Update to 0.7.0-0.03ecaf3. |
Date: |
Mon, 3 Jun 2024 11:06:03 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit 78ecc653b841b329cde93f4d176f510306e3a808
Author: Andre A. Gomes <andremegafone@gmail.com>
AuthorDate: Fri May 31 17:02:18 2024 +0300
gnu: cl-quri: Update to 0.7.0-0.03ecaf3.
* gnu/packages/lisp-xyz.scm (sbcl-quri): Update to 0.7.0-0.03ecaf3.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Change-Id: I688d5d696ac88eff16fa806c4dab747b58653201
---
gnu/packages/lisp-xyz.scm | 44 +++++++++++++++++++++++---------------------
1 file changed, 23 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index adcd06aa3f..4551dc96ad 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -24472,28 +24472,30 @@ function @code{?} is abbreviation wrapper for
@code{quicksearch}.")
(sbcl-package->ecl-package sbcl-quicksearch))
(define-public sbcl-quri
- (package
- (name "sbcl-quri")
- (version "0.7.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/fukamachi/quri")
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0l1jnvvkyaxbf08lnqfdbv6lrkq02iqr3y3rwvqxm4fvnzp7mnpz"))))
- (build-system asdf-build-system/sbcl)
- (native-inputs (list sbcl-prove))
- (inputs (list sbcl-babel sbcl-split-sequence sbcl-cl-utilities
- sbcl-alexandria))
- (home-page "https://github.com/fukamachi/quri")
- (synopsis "Yet another URI library for Common Lisp")
- (description
- "QURI (pronounced \"Q-ree\") is yet another URI library for Common
+ (let ((commit "03ecaf3771561d713e58a9c5c22b4d95a7592527")
+ (revision "0"))
+ (package
+ (name "sbcl-quri")
+ (version (git-version "0.7.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fukamachi/quri")
+ (commit commit)))
+ (file-name (git-file-name "cl-quri" version))
+ (sha256
+ (base32 "1dd96mvgwbs799qzh7amc7kgwy84qhi1gw1yj08n83wmy5k4b9k2"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs (list sbcl-prove))
+ (inputs (list sbcl-babel sbcl-split-sequence sbcl-cl-utilities
+ sbcl-alexandria))
+ (home-page "https://github.com/fukamachi/quri")
+ (synopsis "Yet another URI library for Common Lisp")
+ (description
+ "QURI (pronounced \"Q-ree\") is yet another URI library for Common
Lisp. It is intended to be a replacement of PURI.")
- (license license:bsd-3)))
+ (license license:bsd-3))))
(define-public cl-quri
(sbcl-package->cl-source-package sbcl-quri))