gnu: sbcl-puri: Fix source and license.
* gnu/packages/lisp-xyz.scm (sbcl-puri)[source]: Use main repository instead of Quicklisp archive. [description]: Fix typo. [license]: Source code indicates LLGPL license.
This commit is contained in:
parent
d9d8e3c22c
commit
ff6cf9faa7
1 changed files with 23 additions and 24 deletions
|
@ -2327,30 +2327,29 @@ tester module.")
|
||||||
(sbcl-package->ecl-package sbcl-ptester))
|
(sbcl-package->ecl-package sbcl-ptester))
|
||||||
|
|
||||||
(define-public sbcl-puri
|
(define-public sbcl-puri
|
||||||
|
(let ((commit "ef5afb9e5286c8e952d4344f019c1a636a717b97")
|
||||||
|
(revision "1"))
|
||||||
(package
|
(package
|
||||||
(name "sbcl-puri")
|
(name "sbcl-puri")
|
||||||
(version "20180228")
|
(version (git-version "1.5.7" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "http://beta.quicklisp.org/archive/puri/"
|
(uri (git-reference
|
||||||
(date->string (string->date version "~Y~m~d") "~Y-~m-~d")
|
(url "http://git.kpe.io/puri.git")
|
||||||
"/puri-"
|
(commit commit)))
|
||||||
version
|
(file-name (git-file-name name version))
|
||||||
"-git.tgz"))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1vm25pdl92laj72p5vyd538kf3cjy2655z6bdc99h20ana2p231s"))))
|
||||||
"1s4r5adrjy5asry45xbcbklxhdjydvf6n55z897nvyw33bigrnbz"))))
|
|
||||||
(build-system asdf-build-system/sbcl)
|
(build-system asdf-build-system/sbcl)
|
||||||
;; REVIEW: Webiste down?
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ptester" ,sbcl-ptester)))
|
`(("ptester" ,sbcl-ptester)))
|
||||||
(home-page "http://files.kpe.io/puri/")
|
(home-page "http://quickdocs.org/puri/")
|
||||||
(synopsis "Portable URI Library")
|
(synopsis "Portable URI Library")
|
||||||
(description
|
(description
|
||||||
"This is portable Universal Resource Identifier library for Common Lisp
|
"This is a portable Universal Resource Identifier library for Common
|
||||||
programs. It parses URI according to the RFC 2396 specification")
|
Lisp programs. It parses URI according to the RFC 2396 specification.")
|
||||||
(license license:lgpl3+)))
|
(license license:llgpl))))
|
||||||
|
|
||||||
(define-public cl-puri
|
(define-public cl-puri
|
||||||
(sbcl-package->cl-source-package sbcl-puri))
|
(sbcl-package->cl-source-package sbcl-puri))
|
||||||
|
|
Reference in a new issue