gnu: cl-hunchentoot: Update to 1.3.0-1.7686239.
* gnu/packages/lisp-xyz.scm (sbcl-hunchentoot): Update to 1.3.0-1.7686239. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
parent
a375964603
commit
1ff8fc7926
|
@ -4242,44 +4242,44 @@ sockets, SSL, continuable uploads, file uploads, cookies, and more.")
|
||||||
(sbcl-package->ecl-package sbcl-drakma))
|
(sbcl-package->ecl-package sbcl-drakma))
|
||||||
|
|
||||||
(define-public sbcl-hunchentoot
|
(define-public sbcl-hunchentoot
|
||||||
(package
|
;; NOTE: (Sharlatan-20220520T213309+0100): The latest commit fixed tests,
|
||||||
(name "sbcl-hunchentoot")
|
;; switch to the version tag when release is ready.
|
||||||
(version "1.3.0")
|
(let ((commit "76862391040c20255c7275e815c2175e46bfd080")
|
||||||
(source
|
(revision "1"))
|
||||||
(origin
|
(package
|
||||||
(method git-fetch)
|
(name "sbcl-hunchentoot")
|
||||||
(uri (git-reference
|
(version (git-version "1.3.0" revision commit))
|
||||||
(url "https://github.com/edicl/hunchentoot")
|
(source
|
||||||
(commit (string-append "v" version))))
|
(origin
|
||||||
(file-name (git-file-name "hunchentoot" version))
|
(method git-fetch)
|
||||||
(sha256
|
(uri (git-reference
|
||||||
(base32 "1z0m45lp6rv59g69l44gj3q3d2bmjlhqzpii0vgkniam21dcimy9"))))
|
(url "https://github.com/edicl/hunchentoot")
|
||||||
(build-system asdf-build-system/sbcl)
|
(commit commit)))
|
||||||
(native-inputs
|
(file-name (git-file-name "cl-hunchentoot" version))
|
||||||
(list sbcl-cl-who sbcl-drakma))
|
(sha256
|
||||||
(inputs
|
(base32 "1h7ggmmzvgwr4p6j3ai0dqrw30q5309l13w4c03gqrapvwrb65l0"))))
|
||||||
(list sbcl-chunga
|
(build-system asdf-build-system/sbcl)
|
||||||
sbcl-cl-base64
|
(native-inputs
|
||||||
sbcl-cl-fad
|
(list sbcl-cl-who sbcl-drakma))
|
||||||
sbcl-cl-ppcre
|
(inputs
|
||||||
sbcl-flexi-streams
|
(list sbcl-chunga
|
||||||
sbcl-cl+ssl
|
sbcl-cl-base64
|
||||||
sbcl-md5
|
sbcl-cl-fad
|
||||||
sbcl-rfc2388
|
sbcl-cl-ppcre
|
||||||
sbcl-trivial-backtrace
|
sbcl-flexi-streams
|
||||||
sbcl-usocket))
|
sbcl-cl+ssl
|
||||||
(arguments
|
sbcl-md5
|
||||||
`(;; FIXME: Tests fail because they fail to open the file
|
sbcl-rfc2388
|
||||||
;; "/proc/sys/kernel/osrelease"
|
sbcl-trivial-backtrace
|
||||||
#:tests? #f))
|
sbcl-usocket))
|
||||||
(home-page "https://edicl.github.io/hunchentoot/")
|
(home-page "https://edicl.github.io/hunchentoot/")
|
||||||
(synopsis "Web server written in Common Lisp")
|
(synopsis "Web server written in Common Lisp")
|
||||||
(description
|
(description
|
||||||
"Hunchentoot is a web server written in Common Lisp and at the same
|
"Hunchentoot is a web server written in Common Lisp and at the same
|
||||||
time a toolkit for building dynamic websites. As a stand-alone web server,
|
time a toolkit for building dynamic websites. As a stand-alone web server,
|
||||||
Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
|
Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
|
||||||
connections (keep-alive), and SSL.")
|
connections (keep-alive), and SSL.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2))))
|
||||||
|
|
||||||
(define-public cl-hunchentoot
|
(define-public cl-hunchentoot
|
||||||
(sbcl-package->cl-source-package sbcl-hunchentoot))
|
(sbcl-package->cl-source-package sbcl-hunchentoot))
|
||||||
|
|
Reference in New Issue