GNU bug report logs - #53919
[PATCH] gnu: Add cl-hamcrest.

Previous Next

Package: guix-patches;

Reported by: jgart <jgart <at> dismail.de>

Date: Thu, 10 Feb 2022 16:25:01 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: jgart <jgart <at> dismail.de>
Subject: bug#53919: closed (Re: [bug#53919] [PATCH] gnu: Add cl-hamcrest.)
Date: Fri, 11 Feb 2022 14:23:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#53919: [PATCH] gnu: Add cl-hamcrest.

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 53919 <at> debbugs.gnu.org.

-- 
53919: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=53919
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Guillaume Le Vaillant <glv <at> posteo.net>
To: jgart <jgart <at> dismail.de>
Cc: 53919-done <at> debbugs.gnu.org
Subject: Re: [bug#53919] [PATCH] gnu: Add cl-hamcrest.
Date: Fri, 11 Feb 2022 14:20:31 +0000
[Message part 3 (text/plain, inline)]
Given that this package is about testing, I moved it to
"lisp-check.scm". I also simplified the package definition a little.
Pushed as 4ba7aab96503aa8e4b450fca1e68ca79eef3a534.
Thanks.
[signature.asc (application/pgp-signature, inline)]
[Message part 5 (message/rfc822, inline)]
From: jgart <jgart <at> dismail.de>
To: guix-patches <at> gnu.org
Cc: jgart <jgart <at> dismail.de>
Subject: [PATCH] gnu: Add cl-hamcrest.
Date: Thu, 10 Feb 2022 11:23:20 -0500
* gnu/packages/lisp-xyz.scm (cl-hamcrest): New variable.
---
 gnu/packages/lisp-xyz.scm | 43 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e40a215158..2493253a3b 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -20454,6 +20454,49 @@ (define-public cl-css-lite
 (define-public ecl-css-lite
   (sbcl-package->ecl-package sbcl-css-lite))
 
+(define-public sbcl-cl-hamcrest
+  (let ((commit "a54553e59a70dc5a539b683e79bfcdb0e8bae5c8")
+        (revision "0"))
+    (package
+      (name "sbcl-cl-hamcrest")
+      (version "0.4.4")
+      (source
+        (origin
+          (method git-fetch)
+          (uri (git-reference
+                (url "https://github.com/40ants/cl-hamcrest")
+                (commit commit)))
+          (sha256
+           (base32 "181nnb2fjbsdqjqdvwg2x9n1jjalkfzszwdgqcap4py2q63q1kxj"))
+          (file-name (git-file-name name commit))))
+      (build-system asdf-build-system/sbcl)
+      (arguments
+       `(#:asd-files '("hamcrest.asd"
+                       "hamcrest-test.asd")
+         #:asd-systems '("hamcrest"
+                         "hamcrest-test")))
+      (inputs
+        (list sbcl-iterate
+              sbcl-split-sequence
+              sbcl-cl-ppcre
+              sbcl-alexandria
+              sbcl-rove
+              sbcl-prove))
+      (home-page "http://40ants.com/cl-hamcrest/")
+      (synopsis "Make CL unittests more readable")
+      (description
+"@code{sbcl-cl-hamcrest} is an implementation of the Hamcrest idea in Common
+Lisp.  It simplifes unittests and make them more readable.  Hamcrest uses
+idea of pattern-matching, to construct matchers from different pieces
+and to apply them to the data.")
+      (license license:bsd-3))))
+
+(define-public cl-hamcrest
+  (sbcl-package->cl-source-package sbcl-cl-hamcrest))
+
+(define-public ecl-cl-hamcrest
+  (sbcl-package->ecl-package sbcl-cl-hamcrest))
+
 (define-public sbcl-nhooks
   (package
     (name "sbcl-nhooks")
-- 
2.35.0




This bug report was last modified 3 years and 99 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.