gnu: sbcl-trivial-features: Update to 20200403.

* gnu/packages/lisp-xyz.scm (sbcl-trivial-features): Update to 20200403.
This commit is contained in:
Pierre Neidhardt 2020-05-06 16:10:39 +02:00
parent 36ceab7da0
commit c75e349467
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -1157,25 +1157,27 @@ 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 "0.8") (version (git-version "0.8" "1" commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/trivial-features/trivial-features.git") (url "https://github.com/trivial-features/trivial-features.git")
(commit (string-append "v" version)))) (commit commit)))
(file-name (git-file-name "trivial-features" version)) (file-name (git-file-name "trivial-features" version))
(sha256 (sha256
(base32 "0ccv7dqyrk55xga78i5vzlic7mdwp28in3g1a8fqhlk6626scsq9")))) (base32 "14pcahr8r2j3idhyy216zyw8jnj1dnrx0qbkkbdqkvwzign1ah4j"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(arguments '(#:tests? #f)) (arguments '(#:tests? #f))
(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))