mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 10:30:43 +02:00
gnu: rust-ruzstd: Move to (gnu packages crates-compression).
* gnu/packages/crates-io.scm (rust-ruzstd-0.7, rust-ruzstd-0.5, rust-ruzstd-0.4): Move from here ... * gnu/packages/crates-compression.scm: ... to here. Change-Id: I999a71a5985df1775f47fc5c810fe7fa38a9cbd2
This commit is contained in:
parent
50b6074fe2
commit
f571b76bae
2 changed files with 89 additions and 89 deletions
|
@ -847,6 +847,95 @@ algorithm and related formats (ZLIB, GZIP).")
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-libflate" ,rust-libflate-1))))))
|
(("rust-libflate" ,rust-libflate-1))))))
|
||||||
|
|
||||||
|
(define-public rust-ruzstd-0.7
|
||||||
|
(package
|
||||||
|
(name "rust-ruzstd")
|
||||||
|
(version "0.7.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ruzstd" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "17z83lw00pd3190yvdk2lksdi7my6wc0psgg07is6gf7pyb2kl7s"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ;missing data files
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
|
||||||
|
("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
|
||||||
|
("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
|
||||||
|
("rust-twox-hash" ,rust-twox-hash-1))
|
||||||
|
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.5)
|
||||||
|
("rust-rand" ,rust-rand-0.8))))
|
||||||
|
(home-page "https://github.com/KillingSpark/zstd-rs")
|
||||||
|
(synopsis "Decoder for the zstd compression format")
|
||||||
|
(description
|
||||||
|
"This package provides a decoder for the zstd compression format.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-ruzstd-0.5
|
||||||
|
(package
|
||||||
|
(inherit rust-ruzstd-0.7)
|
||||||
|
(name "rust-ruzstd")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ruzstd" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ga8jciw7ka3mxrzl39skmsbdslajghzglcil10g0z4rh65fpi2q"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-test-flags
|
||||||
|
'("--release" "--"
|
||||||
|
;; not all files included
|
||||||
|
"--skip=tests::decode_corpus::test_decode_corpus_files"
|
||||||
|
"--skip=tests::dict_test::test_dict_decoding"
|
||||||
|
"--skip=tests::fuzz_regressions::test_all_artifacts"
|
||||||
|
"--skip=tests::test_block_header_reading"
|
||||||
|
"--skip=tests::test_decode_from_to"
|
||||||
|
"--skip=tests::test_frame_decoder"
|
||||||
|
"--skip=tests::test_frame_header_reading"
|
||||||
|
"--skip=tests::test_specific_file"
|
||||||
|
"--skip=tests::test_streaming")
|
||||||
|
#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
|
||||||
|
("rust-derive-more" ,rust-derive-more-0.99)
|
||||||
|
("rust-twox-hash" ,rust-twox-hash-1))
|
||||||
|
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
|
||||||
|
("rust-rand" ,rust-rand-0.8))))))
|
||||||
|
|
||||||
|
(define-public rust-ruzstd-0.4
|
||||||
|
(package
|
||||||
|
(inherit rust-ruzstd-0.5)
|
||||||
|
(name "rust-ruzstd")
|
||||||
|
(version "0.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "ruzstd" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1p4ghqzkq36dy1x1ijnk7jmml4wi3v9bkfzlbm2hsnkiz6wglgxc"))))
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-test-flags
|
||||||
|
'("--release" "--"
|
||||||
|
;; not all files included
|
||||||
|
"--skip=tests::decode_corpus::test_decode_corpus_files"
|
||||||
|
"--skip=tests::dict_test::test_dict_decoding"
|
||||||
|
"--skip=tests::fuzz_regressions::test_all_artifacts"
|
||||||
|
"--skip=tests::test_block_header_reading"
|
||||||
|
"--skip=tests::test_decode_from_to"
|
||||||
|
"--skip=tests::test_frame_decoder"
|
||||||
|
"--skip=tests::test_frame_header_reading"
|
||||||
|
"--skip=tests::test_specific_file"
|
||||||
|
"--skip=tests::test_streaming")
|
||||||
|
#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
|
||||||
|
("rust-thiserror-core" ,rust-thiserror-core-1)
|
||||||
|
("rust-twox-hash" ,rust-twox-hash-1))
|
||||||
|
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
|
||||||
|
("rust-rand" ,rust-rand-0.8))))))
|
||||||
|
|
||||||
(define-public rust-sevenz-rust-0.5
|
(define-public rust-sevenz-rust-0.5
|
||||||
(package
|
(package
|
||||||
(name "rust-sevenz-rust")
|
(name "rust-sevenz-rust")
|
||||||
|
|
|
@ -69979,95 +69979,6 @@ sub-processes using a fork-like interface.")
|
||||||
(("rust-quote" ,rust-quote-1)
|
(("rust-quote" ,rust-quote-1)
|
||||||
("rust-syn" ,rust-syn-1))))))
|
("rust-syn" ,rust-syn-1))))))
|
||||||
|
|
||||||
(define-public rust-ruzstd-0.7
|
|
||||||
(package
|
|
||||||
(name "rust-ruzstd")
|
|
||||||
(version "0.7.3")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "ruzstd" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "17z83lw00pd3190yvdk2lksdi7my6wc0psgg07is6gf7pyb2kl7s"))))
|
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:tests? #f ;missing data files
|
|
||||||
#:cargo-inputs
|
|
||||||
(("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
|
|
||||||
("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
|
|
||||||
("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
|
|
||||||
("rust-twox-hash" ,rust-twox-hash-1))
|
|
||||||
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.5)
|
|
||||||
("rust-rand" ,rust-rand-0.8))))
|
|
||||||
(home-page "https://github.com/KillingSpark/zstd-rs")
|
|
||||||
(synopsis "Decoder for the zstd compression format")
|
|
||||||
(description
|
|
||||||
"This package provides a decoder for the zstd compression format.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-ruzstd-0.5
|
|
||||||
(package
|
|
||||||
(inherit rust-ruzstd-0.7)
|
|
||||||
(name "rust-ruzstd")
|
|
||||||
(version "0.5.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "ruzstd" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "0ga8jciw7ka3mxrzl39skmsbdslajghzglcil10g0z4rh65fpi2q"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-test-flags
|
|
||||||
'("--release" "--"
|
|
||||||
;; not all files included
|
|
||||||
"--skip=tests::decode_corpus::test_decode_corpus_files"
|
|
||||||
"--skip=tests::dict_test::test_dict_decoding"
|
|
||||||
"--skip=tests::fuzz_regressions::test_all_artifacts"
|
|
||||||
"--skip=tests::test_block_header_reading"
|
|
||||||
"--skip=tests::test_decode_from_to"
|
|
||||||
"--skip=tests::test_frame_decoder"
|
|
||||||
"--skip=tests::test_frame_header_reading"
|
|
||||||
"--skip=tests::test_specific_file"
|
|
||||||
"--skip=tests::test_streaming")
|
|
||||||
#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
|
|
||||||
("rust-derive-more" ,rust-derive-more-0.99)
|
|
||||||
("rust-twox-hash" ,rust-twox-hash-1))
|
|
||||||
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
|
|
||||||
("rust-rand" ,rust-rand-0.8))))))
|
|
||||||
|
|
||||||
(define-public rust-ruzstd-0.4
|
|
||||||
(package
|
|
||||||
(inherit rust-ruzstd-0.5)
|
|
||||||
(name "rust-ruzstd")
|
|
||||||
(version "0.4.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (crate-uri "ruzstd" version))
|
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
|
||||||
(sha256
|
|
||||||
(base32 "1p4ghqzkq36dy1x1ijnk7jmml4wi3v9bkfzlbm2hsnkiz6wglgxc"))))
|
|
||||||
(arguments
|
|
||||||
`(#:cargo-test-flags
|
|
||||||
'("--release" "--"
|
|
||||||
;; not all files included
|
|
||||||
"--skip=tests::decode_corpus::test_decode_corpus_files"
|
|
||||||
"--skip=tests::dict_test::test_dict_decoding"
|
|
||||||
"--skip=tests::fuzz_regressions::test_all_artifacts"
|
|
||||||
"--skip=tests::test_block_header_reading"
|
|
||||||
"--skip=tests::test_decode_from_to"
|
|
||||||
"--skip=tests::test_frame_decoder"
|
|
||||||
"--skip=tests::test_frame_header_reading"
|
|
||||||
"--skip=tests::test_specific_file"
|
|
||||||
"--skip=tests::test_streaming")
|
|
||||||
#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
|
|
||||||
("rust-thiserror-core" ,rust-thiserror-core-1)
|
|
||||||
("rust-twox-hash" ,rust-twox-hash-1))
|
|
||||||
#:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.3)
|
|
||||||
("rust-rand" ,rust-rand-0.8))))))
|
|
||||||
|
|
||||||
(define-public rust-ryu-1
|
(define-public rust-ryu-1
|
||||||
(package
|
(package
|
||||||
(name "rust-ryu")
|
(name "rust-ryu")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue