[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: sbcl-lisp-critic: Update to 1.1-ea19f82.
From: |
guix-commits |
Subject: |
branch master updated: gnu: sbcl-lisp-critic: Update to 1.1-ea19f82. |
Date: |
Thu, 23 Nov 2023 11:57:19 -0500 |
This is an automated email from the git hooks/post-receive script.
jgart pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 0083a22659 gnu: sbcl-lisp-critic: Update to 1.1-ea19f82.
0083a22659 is described below
commit 0083a2265960f8228112c36e0d10eb974ff9d1f1
Author: jgart <jgart@dismail.de>
AuthorDate: Thu Nov 23 10:33:44 2023 -0600
gnu: sbcl-lisp-critic: Update to 1.1-ea19f82.
* gnu/packages/lisp-xyz.scm (sbcl-lisp-critic): Update to 1.1-ea19f82.
[define-public]: Refactor to use let block for getting commit and
revision.
[version]: Add in version mentioned in ASD file.
[source]: Pass in commit variable.
Change-Id: Ie2ee4b77aab815c69445a8800e25631b6c9ab4a7
---
gnu/packages/lisp-check.scm | 41 +++++++++++++++++++++--------------------
1 file changed, 21 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/lisp-check.scm b/gnu/packages/lisp-check.scm
index 7ce74316eb..5f5e39c193 100644
--- a/gnu/packages/lisp-check.scm
+++ b/gnu/packages/lisp-check.scm
@@ -1151,29 +1151,30 @@ on the XPTest package by Craig Brozensky and the JUnit
package by Kent Beck.")
(sbcl-package->ecl-package sbcl-xlunit))
(define-public sbcl-lisp-critic
- (package
- (name "sbcl-lisp-critic")
- (version "0.0.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/g000001/lisp-critic")
- (commit "fb70c69dc61a53fb069b24edebcfb0de813a176b")))
- (file-name (git-file-name name version))
- (sha256
- (base32 "059vfdn8ds44hihhjmylp059zl2gzghiipcigvjd51sb6zc6f0zy"))))
- (build-system asdf-build-system/sbcl)
- (synopsis "Common Lisp linter")
- (description "The Lisp Critic scans your code for instances of bad
-Lisp programming practice.")
- (home-page
- "https://courses.cs.northwestern.edu/325/exercises/critic.html#critic")
- (license license:expat)))
+ (let ((commit "ea19f82a168a6119ac1b10d0f457c01a7119602f")
+ (revision "1"))
+ (package
+ (name "sbcl-lisp-critic")
+ (version (git-version "1.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/g000001/lisp-critic")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "15zg05pqfs2dhc5j7gfkwjmxawaizjpyb0p7386mpl4w93l9h84l"))))
+ (build-system asdf-build-system/sbcl)
+ (synopsis "Common Lisp linter")
+ (description "The Lisp Critic scans your code for instances of bad
+ Lisp programming practice.")
+ (home-page
+ "https://courses.cs.northwestern.edu/325/exercises/critic.html#critic")
+ (license license:expat))))
(define-public cl-lisp-critic
(sbcl-package->cl-source-package sbcl-lisp-critic))
(define-public ecl-lisp-critic
(sbcl-package->ecl-package sbcl-lisp-critic))
-
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: sbcl-lisp-critic: Update to 1.1-ea19f82.,
guix-commits <=