~ruther/guix-local

f48719a5856d144690f0eaca5f5ad71154365c5f — Zheng Junjie 1 year, 5 months ago 2498c4d
gnu: zstd: Update to 1.5.6.

* gnu/packages/compression.scm (zstd): Update to 1.5.6
(zstd-1.5.6): Remove variable.
(pzstd): Inherit from zstd.

Change-Id: If0020d61c5516222f6a80bdc7b41c19732f359e1
1 files changed, 8 insertions(+), 8 deletions(-)

M gnu/packages/compression.scm
M gnu/packages/compression.scm => gnu/packages/compression.scm +8 -8
@@ 41,7 41,7 @@
;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2024, 2025 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 1764,14 1764,14 @@ or junctions, and always follows hard links.")
(define-public zstd
  (package
    (name "zstd")
    (version "1.5.2")
    (version "1.5.6")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/facebook/zstd/releases/download/"
                           "v" version "/zstd-" version ".tar.gz"))
       (sha256
        (base32 "1l1zm1imcc2ixayykyh4y421shdj3pzp7g2xm2k2js8jmipxahkw"))))
        (base32 "1h83si7s70jy7mcy0mv1c9mbkz66qqpawxs0zkmc3b1ayinf0acc"))))
    (build-system gnu-build-system)
    (outputs '("out"                    ;1.5MiB executables and documentation
               "lib"                    ;1.2MiB shared library and headers


@@ 1808,7 1808,7 @@ or junctions, and always follows hard links.")
                       (rename-file (string-append shared-libs "/libzstd.a")
                                    (string-append static-libs "/libzstd_static.lib"))
                       (delete-file-recursively
                         (string-append shared-libs "/pkgconfig"))
                        (string-append shared-libs "/pkgconfig"))
                       ;; no binary for interpreter `sh' found in $PATH
                       (delete-file (string-append out "/bin/zstdgrep"))
                       (delete-file (string-append out "/bin/zstdless"))


@@ 1886,12 1886,12 @@ speed.")
    (outputs '("out"))
    (inputs
     `(,@(if (%current-target-system)
           `(("googletest" ,googletest))
           '())))
             `(("googletest" ,googletest))
             '())))
    (native-inputs
     `(,@(if (%current-system)
           `(("googletest" ,googletest))
           '())))
             `(("googletest" ,googletest))
             '())))
    (arguments
     `(#:phases
       (modify-phases %standard-phases