mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: cl-trivial-features: Update to 1.0.
* gnu/packages/lisp-xyz.scm (sbcl-trivial-features): Update to 1.0. [arguments]: Add comment about disabled tests. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
58b85f7f41
commit
d49402ab45
1 changed files with 24 additions and 22 deletions
|
@ -1360,29 +1360,31 @@ utilities that make it even easier to manipulate text in Common Lisp. It has
|
||||||
(sbcl-package->ecl-package sbcl-cl-strings))
|
(sbcl-package->ecl-package sbcl-cl-strings))
|
||||||
|
|
||||||
(define-public sbcl-trivial-features
|
(define-public sbcl-trivial-features
|
||||||
;; No release since 2014.
|
|
||||||
(let ((commit "870d03de0ed44067963350936856e17ee725153e"))
|
|
||||||
(package
|
(package
|
||||||
(name "sbcl-trivial-features")
|
(name "sbcl-trivial-features")
|
||||||
(version (git-version "0.8" "1" commit))
|
(version "1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/trivial-features/trivial-features")
|
(url "https://github.com/trivial-features/trivial-features")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name "trivial-features" version))
|
(file-name (git-file-name "trivial-features" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "14pcahr8r2j3idhyy216zyw8jnj1dnrx0qbkkbdqkvwzign1ah4j"))))
|
(base32 "0jsqah1znzqilxnw5vannb083ayk0d7phkackqzwwqkyg5hpn6pq"))))
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:asd-files '("trivial-features.asd")
|
'(#:asd-files '("trivial-features.asd")
|
||||||
|
;; FIXME: Tests disabled because of a circular dependency between
|
||||||
|
;; trivial-features and cffi.
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
|
;; (native-inputs
|
||||||
|
;; `(("cffi" ,sbcl-cffi)))
|
||||||
(home-page "https://cliki.net/trivial-features")
|
(home-page "https://cliki.net/trivial-features")
|
||||||
(synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
|
(synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
|
||||||
(description "Trivial-features ensures that @code{*FEATURES*} is
|
(description "Trivial-features ensures that @code{*FEATURES*} is
|
||||||
consistent across multiple Common Lisp implementations.")
|
consistent across multiple Common Lisp implementations.")
|
||||||
(license license:expat))))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public cl-trivial-features
|
(define-public cl-trivial-features
|
||||||
(sbcl-package->cl-source-package sbcl-trivial-features))
|
(sbcl-package->cl-source-package sbcl-trivial-features))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue