diff options
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 76 |
1 files changed, 8 insertions, 68 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 1e8ed923bd..64680c59ab 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -71,7 +71,6 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system go) #:use-module (guix build-system meson) - #:use-module (guix build-system python) #:use-module (guix build-system trivial) #:use-module (gnu packages) #:use-module (gnu packages algebra) @@ -1461,53 +1460,6 @@ for most inputs, but the resulting compressed files are anywhere from 20% to (license license:asl2.0) (properties '((cpe-vendor . "google"))))) -;; We need this for irods. -(define-public snappy-with-clang6 - (package - (inherit snappy) - (name "snappy-with-clang") - ;; XXX 1.1.9 fails to build with clang with - ;; error: invalid output constraint '=@ccz' in asm - (version "1.1.8") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/snappy") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1j0kslq2dvxgkcxl1gakhvsa731yrcvcaipcp5k8k7ayicvkv9jv")))) - (arguments - `(#:configure-flags - '("-DBUILD_SHARED_LIBS=ON" - "-DCMAKE_CXX_COMPILER=clang++" - "-DCMAKE_CXX_FLAGS=-stdlib=libc++" - "-DCMAKE_EXE_LINKER_FLAGS=-lc++abi") - #:phases - (modify-phases %standard-phases - (add-after 'set-paths 'adjust-CPLUS_INCLUDE_PATH - (lambda* (#:key native-inputs inputs #:allow-other-keys) - (let ((gcc (assoc-ref (or native-inputs inputs) "gcc"))) - (setenv "CPLUS_INCLUDE_PATH" - (string-join - (cons* (search-input-directory inputs - "/include/c++/v1") - ;; Hide GCC's C++ headers so that they do not interfere with - ;; the Clang headers. - (delete (string-append gcc "/include/c++") - (string-split (getenv "CPLUS_INCLUDE_PATH") - #\:))) - ":")) - (format #true - "environment variable `CPLUS_INCLUDE_PATH' changed to ~a~%" - (getenv "CPLUS_INCLUDE_PATH")))))))) - (properties `((hidden? . #true))) - (native-inputs - `(("clang" ,clang-toolchain-6))) - (inputs - (list libcxx+libcxxabi-6 libcxxabi-6)))) - (define-public p7zip (package (name "p7zip") @@ -2387,17 +2339,16 @@ non-Windows systems without running the actual installer using wine.") (define-public isa-l (package (name "isa-l") - (version "2.30.0") + (version "2.31.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/intel/isa-l") - ;; Corresponds to tag v2.30.0 - (commit "2df39cf5f1b9ccaa2973f6ef273857e4dc46f0cf"))) + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "06ymkrf3hkkd94i59ahm79545rk709y8rd0v2l86w38z6is942q0")))) + (base32 "17k679glx05v23n8kxbg9vmbf89i2252g5xj6w3dkz19asmh1zd6")))) (build-system gnu-build-system) (native-inputs (list autoconf automake libtool nasm)) (home-page "https://github.com/intel/isa-l") @@ -2475,19 +2426,6 @@ The specification of the Brotli Compressed Data Format is defined in RFC 7932.") (define-public google-brotli (deprecated-package "google-brotli" brotli)) -(define-public python-brotli - (package - (inherit brotli) - (name "python-brotli") - (build-system python-build-system) - (arguments '()) - (synopsis "Python interface to Brotli") - (description "This package provides a Python interface to the @code{brotli} -package, an implementation of the Brotli lossless compression algorithm."))) - -(define-public python-google-brotli - (deprecated-package "python-google-brotli" python-brotli)) - (define-public java-brotli (package (inherit brotli) @@ -2553,7 +2491,9 @@ download times, and other distribution and storage costs.") (define-public quazip (package (name "quazip") - (version "1.4") + ;; When updating, change also the version in quazip-qt5, + ;; which shares the same source. + (version "1.5") (source (origin (method git-fetch) @@ -2562,7 +2502,7 @@ download times, and other distribution and storage costs.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1jsw4xm5wyaqcj1pma5zzd8f5xbgd5lcjh18ah3kg36xz5i69yi4")))) + (base32 "0ni1656g2xf0cspwjp645hhd2p4iaqki4z26xhkxz04l5nzsdrh0")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) ;no test @@ -2590,7 +2530,7 @@ reading from and writing to ZIP archives.") (package (inherit quazip) (name "quazip-qt5") - (version "1.4") + (version "1.5") (inputs (list qtbase-5 zlib)))) (define-public zchunk |