gnu: lhasa: Update to 0.4.0.

* gnu/packages/compression.scm (lhasa): Update to 0.4.0.
[arguments]: Use G-expressions.
[home-page]: Switch to github.io.
[description]: Add Texinfo markup.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Hendursaga 2023-09-25 13:48:43 -04:00 committed by Christopher Baines
parent d05af1dbaf
commit 5c3e4c826f
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -542,7 +542,7 @@ (define-public xz
(define-public lhasa (define-public lhasa
(package (package
(name "lhasa") (name "lhasa")
(version "0.3.1") (version "0.4.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -550,26 +550,25 @@ (define-public lhasa
version "/lhasa-" version ".tar.gz")) version "/lhasa-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z")))) "1cy5429c7h1dp4l5y9ncdy40qarl9ix31ylkzdi8al2c60y8iz57"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases (list #:phases #~(modify-phases %standard-phases
(modify-phases %standard-phases (add-before 'check 'set-up-test-environment
(add-before 'check 'set-up-test-environment (lambda* (#:key inputs #:allow-other-keys)
(lambda* (#:key inputs #:allow-other-keys) (setenv "TZDIR"
(setenv "TZDIR" (search-input-directory inputs
(search-input-directory inputs "share/zoneinfo")))))))
"share/zoneinfo"))))))) (native-inputs (list tzdata-for-tests))
(native-inputs (home-page "https://fragglet.github.io/lhasa/")
(list tzdata-for-tests))
(home-page "https://fragglet.github.com/lhasa/")
(synopsis "LHA archive decompressor") (synopsis "LHA archive decompressor")
(description "Lhasa is a replacement for the Unix LHA tool, for (description
decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for the "Lhasa is a replacement for the Unix LHa tool, for decompressing
tool is a library, so that it can be reused for other purposes. Lhasa aims to @file{.lzh} (LHA / LHarc) and .lzs (LArc) archives. The backend for the tool is
be compatible with as many types of lzh/lzs archives as possible. It also aims a library, so that it can be reused for other purposes. Lhasa aims to be
to generate the same output as the (non-free) Unix LHA tool, so that it will compatible with as many types of @file{.lzh}/@file{lzs} archives as possible.
act as a free drop-in replacement.") It also aims to generate the same output as the (non-free) Unix @command{lha}
tool, so that it will act as a free drop-in replacement.")
(license license:isc))) (license license:isc)))
(define-public lzo (define-public lzo