[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/26: gnu: Add cl-try.
From: |
guix-commits |
Subject: |
19/26: gnu: Add cl-try. |
Date: |
Thu, 3 Mar 2022 10:22:42 -0500 (EST) |
glv pushed a commit to branch master
in repository guix.
commit 8a8caa60e18c13260b75fb928f9c7a57df62b78a
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Thu Mar 3 14:17:58 2022 +0100
gnu: Add cl-try.
* gnu/packages/lisp-check.scm (cl-try, ecl-try, sbcl-try): New variables.
---
gnu/packages/lisp-check.scm | 45 ++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 44 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/lisp-check.scm b/gnu/packages/lisp-check.scm
index 4e6334ff86..dd8ef90892 100644
--- a/gnu/packages/lisp-check.scm
+++ b/gnu/packages/lisp-check.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2018 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019, 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
-;;; Copyright © 2019, 2020, 2021 Guillaume Le Vaillant <glv@posteo.net>
+;;; Copyright © 2019, 2020, 2021, 2022 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
;;; Copyright © 2021 Charles Jackson <charles.b.jackson@protonmail.com>
;;; Copyright © 2022 jgart <jgart@dismail.de>
@@ -844,6 +844,49 @@ interactive development.")
(define-public ecl-stefil
(sbcl-package->ecl-package sbcl-stefil))
+(define-public sbcl-try
+ (let ((commit "a1fffad2ca328b3855f629b633ab1daaeec929c2")
+ (revision "1"))
+ (package
+ (name "sbcl-try")
+ (version (git-version "0.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/melisgl/try")
+ (commit commit)))
+ (file-name (git-file-name "cl-try" version))
+ (sha256
+ (base32 "03dm2i2y4wiyzz9d25zdxm6gdglnvwali0ylp0rfwpk6wf29sj09"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs
+ (list sbcl-cl-ppcre))
+ (inputs
+ (list sbcl-alexandria
+ sbcl-closer-mop
+ sbcl-ieee-floats
+ sbcl-mgl-pax
+ sbcl-trivial-gray-streams))
+ (arguments
+ `(#:asd-files '("try.asdf.asd" "try.asd")
+ ;; FIXME: Get tests to work
+ #:tests? #f))
+ (home-page "https://github.com/melisgl/try")
+ (synopsis "Common Lisp test framework")
+ (description
+ "@code{Try} is a library for unit testing with equal support for
+interactive and non-interactive workflows. Tests are functions, and almost
+everything else is a condition, whose types feature prominently in
+parameterization.")
+ (license license:expat))))
+
+(define-public cl-try
+ (sbcl-package->cl-source-package sbcl-try))
+
+(define-public ecl-try
+ (sbcl-package->ecl-package sbcl-try))
+
(define-public sbcl-unit-test
(let ((commit "266afaf4ac091fe0e8803bac2ae72d238144e735")
(revision "1"))
- 09/26: gnu: cl-strings: Update to 0.0.1-1.93ec417., (continued)
- 09/26: gnu: cl-strings: Update to 0.0.1-1.93ec417., guix-commits, 2022/03/03
- 21/26: gnu: cl-opticl: Update to 0.0.0-1.f6fc4dc., guix-commits, 2022/03/03
- 22/26: gnu: cl-retrospectiff: Update to 0.2-1.2fbf8c6., guix-commits, 2022/03/03
- 23/26: gnu: cl-zpb-exif: Update to 1.2.5., guix-commits, 2022/03/03
- 25/26: gnu: cl-mcclim: Update to 0.9.7-2.292343f., guix-commits, 2022/03/03
- 03/26: gnu: cl-zpb-ttf: Update to 1.0.4., guix-commits, 2022/03/03
- 06/26: gnu: cl-parse-js: Improve package definition., guix-commits, 2022/03/03
- 10/26: gnu: cl-babel: Update to 0.5.0-2.f892d05., guix-commits, 2022/03/03
- 13/26: gnu: cl+ssl: Update to 0.0.0-3.046d698., guix-commits, 2022/03/03
- 18/26: gnu: cl-mgl-pax: Update to 0.1.0-0.ed82a80., guix-commits, 2022/03/03
- 19/26: gnu: Add cl-try.,
guix-commits <=
- 20/26: gnu: cl-slime-swank: Update to 2.27., guix-commits, 2022/03/03
- 24/26: gnu: Add cl-dejavu., guix-commits, 2022/03/03
- 26/26: gnu: cl-caveman: Update to 2.4.0.35cd8bc., guix-commits, 2022/03/03
- 17/26: gnu: cl-esrap: Update to 0.18-3.4c82a86., guix-commits, 2022/03/03