Archived
1
0
Fork 0

gnu: cl-fad: Update to 0.7.6-1.3f4d32d.

* gnu/packages/lisp-xyz.scm (sbcl-cl-fad): Update to 0.7.6-1.3f4d32d.
  [native-inputs]: Add cl-ppcre and unit-test.
  [inputs]: Add alexandria.
This commit is contained in:
Guillaume Le Vaillant 2022-03-03 11:51:08 +01:00
parent 02f50df8e3
commit fef3df8919
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -1861,31 +1861,35 @@ for parsing, and grammar based on @command{peg-markdown}.")
(sbcl-package->ecl-package sbcl-3bmd)) (sbcl-package->ecl-package sbcl-3bmd))
(define-public sbcl-cl-fad (define-public sbcl-cl-fad
(package ;; No release since 2019
(name "sbcl-cl-fad") (let ((commit "3f4d32d3aa1093966046d001411a852eb8f4b535")
(version "0.7.6") (revision "1"))
(source (package
(origin (name "sbcl-cl-fad")
(method git-fetch) (version (git-version "0.7.6" revision commit))
(uri (git-reference (source
(url "https://github.com/edicl/cl-fad/") (origin
(commit (string-append "v" version)))) (method git-fetch)
(sha256 (uri (git-reference
(base32 (url "https://github.com/edicl/cl-fad/")
"1gc8i82v6gks7g0lnm54r4prk2mklidv2flm5fvbr0a7rsys0vpa")) (commit commit)))
(file-name (string-append "cl-fad" version "-checkout")))) (sha256
(build-system asdf-build-system/sbcl) (base32 "0a1xqldrq170lflnns3xp6swpnvsvllf5vq0h7sz8jqh4riqlny6"))
(inputs (file-name (git-file-name "cl-fad" version))))
(list sbcl-bordeaux-threads)) (build-system asdf-build-system/sbcl)
(synopsis "Portable pathname library for Common Lisp") (native-inputs
(description (list sbcl-cl-ppcre sbcl-unit-test))
"CL-FAD (for \"Files and Directories\") is a thin layer atop Common (inputs
(list sbcl-alexandria sbcl-bordeaux-threads))
(synopsis "Portable pathname library for Common Lisp")
(description
"CL-FAD (for \"Files and Directories\") is a thin layer atop Common
Lisp's standard pathname functions. It is intended to provide some Lisp's standard pathname functions. It is intended to provide some
unification between current CL implementations on Windows, OS X, Linux, and unification between current CL implementations on Windows, OS X, Linux, and
Unix. Most of the code was written by Peter Seibel for his book Practical Unix. Most of the code was written by Peter Seibel for his book Practical
Common Lisp.") Common Lisp.")
(home-page "https://edicl.github.io/cl-fad/") (home-page "https://edicl.github.io/cl-fad/")
(license license:bsd-2))) (license license:bsd-2))))
(define-public cl-fad (define-public cl-fad
(sbcl-package->cl-source-package sbcl-cl-fad)) (sbcl-package->cl-source-package sbcl-cl-fad))