gnu: Update cabextract.org.uk home pages.

* gnu/packages/compression.scm (libmspack, cabextract)[home-page, source]: Use
HTTPS.
This commit is contained in:
Marius Bakke 2018-07-25 18:23:45 +02:00
parent 03c16bb59a
commit 27b2f34cda
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 4 additions and 6 deletions

View File

@ -642,18 +642,17 @@ sfArk file format to the uncompressed sf2 format.")
(define-public libmspack (define-public libmspack
(package (package
(name "libmspack") (name "libmspack")
(home-page "https://cabextract.org.uk/libmspack/")
(version "0.7") (version "0.7")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "http://www.cabextract.org.uk/libmspack/libmspack-" (uri (string-append home-page name "-" version "alpha.tar.gz"))
version "alpha.tar.gz"))
(sha256 (sha256
(base32 "0wi7ydq8vjiq0kfnpkj2d6vll2s49x38bywnsdqphqb0vdn53q1n")))) (base32 "0wi7ydq8vjiq0kfnpkj2d6vll2s49x38bywnsdqphqb0vdn53q1n"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:configure-flags '("--disable-static"))) `(#:configure-flags '("--disable-static")))
(home-page "http://www.cabextract.org.uk/libmspack/")
(synopsis "Compression tools for some formats used by Microsoft") (synopsis "Compression tools for some formats used by Microsoft")
(description (description
"The purpose of libmspack is to provide both compression and "The purpose of libmspack is to provide both compression and
@ -1023,11 +1022,11 @@ smaller than those produced by @code{Xdelta}.")
(define-public cabextract (define-public cabextract
(package (package
(name "cabextract") (name "cabextract")
(home-page "https://cabextract.org.uk/")
(version "1.6") (version "1.6")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append home-page name "-" version ".tar.gz"))
"http://cabextract.org.uk/cabextract-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1ysmmz25fjghq7mxb2anyyvr1ljxqxzi4piwjhk0sdamcnsn3rnf")))) "1ysmmz25fjghq7mxb2anyyvr1ljxqxzi4piwjhk0sdamcnsn3rnf"))))
@ -1037,7 +1036,6 @@ smaller than those produced by @code{Xdelta}.")
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))
(inputs (inputs
`(("libmspack" ,libmspack))) `(("libmspack" ,libmspack)))
(home-page "http://www.cabextract.org.uk/")
(synopsis "Tool to unpack Cabinet archives") (synopsis "Tool to unpack Cabinet archives")
(description "Extracts files out of Microsoft Cabinet (.cab) archives") (description "Extracts files out of Microsoft Cabinet (.cab) archives")
;; Some source files specify gpl2+, lgpl2+, however COPYING is gpl3. ;; Some source files specify gpl2+, lgpl2+, however COPYING is gpl3.