summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-09-22 15:56:10 +0300
committerEfraim Flashner <efraim@flashner.co.il>2024-11-28 11:04:40 +0200
commit612a211f90720254ece7f1a11e8d19b59555db2f (patch)
treed0e1d1ebcb136df4c91f7711ae35ef084655ac20
parent76e32359bfc2fbbaba7183aafdaffc561a9c23c4 (diff)
gnu: rust-object-0.28: Update to 0.28.4.
* gnu/packages/crates-io.scm (rust-object-0.28): Update to 0.28.4. [arguments]: Don't skip the build. Add cargo-test-flags. Remove custom phases. Change-Id: I254066ad9499ef89f904db9d32c80d68c2115f83
-rw-r--r--gnu/packages/crates-io.scm32
1 files changed, 10 insertions, 22 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 5031d7e995e..0960c9a30b4 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -49376,41 +49376,29 @@ file formats.")
(package
(inherit rust-object-0.29)
(name "rust-object")
- (version "0.28.2")
+ (version "0.28.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "object" version))
- (file-name
- (string-append name "-" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "1wgv6gx69rpn4jjqs24kvafwsic1q06iaafs5mb9hy34hp7c3x89"))))
+ "0964501nlfh806mik3f9v6n05mx74qa0w7byvn0sqpwm5lprhb74"))))
(arguments
- `(#:skip-build? #t
+ `(#:cargo-test-flags
+ (list "--release" "--"
+ "--skip=read::coff::coff_extended_relocations")
#:cargo-inputs
- (("rust-compiler-builtins"
- ,rust-compiler-builtins-0.1)
+ (("rust-compiler-builtins" ,rust-compiler-builtins-0.1)
("rust-crc32fast" ,rust-crc32fast-1)
("rust-flate2" ,rust-flate2-1)
("rust-hashbrown" ,rust-hashbrown-0.11)
("rust-indexmap" ,rust-indexmap-1)
("rust-memchr" ,rust-memchr-2)
- ("rust-rustc-std-workspace-alloc"
- ,rust-rustc-std-workspace-alloc-1)
- ("rust-rustc-std-workspace-core"
- ,rust-rustc-std-workspace-core-1)
- ("rust-wasmparser" ,rust-wasmparser-0.57))
- #:cargo-development-inputs
- (("rust-memmap" ,rust-memmap-0.7))
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-version-requirements
- (lambda _
- (substitute* "Cargo.toml"
- (("1.6.\\*")
- ,(package-version rust-indexmap-1)))
- #t)))))))
+ ("rust-rustc-std-workspace-alloc" ,rust-rustc-std-workspace-alloc-1)
+ ("rust-rustc-std-workspace-core" ,rust-rustc-std-workspace-core-1)
+ ("rust-wasmparser" ,rust-wasmparser-0.57))))))
(define-public rust-object-0.27
(package