[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#74551] [PATCH rust-team v3 59/73] gnu: Add rust-shadow-rs-0.36
From: |
Aaron Covrig |
Subject: |
[bug#74551] [PATCH rust-team v3 59/73] gnu: Add rust-shadow-rs-0.36 |
Date: |
Mon, 2 Dec 2024 22:00:39 -0500 |
From: Jordan Moore <lockbox@struct.foo>
* gnu/packages/crates-io.scm (rust-shadow-rs-0.36): New variable.
---
gnu/packages/crates-io.scm | 50 +++++++++++++++++++++++++++++++-------
1 file changed, 41 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2fab9106b1..2b693951c0 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -74564,8 +74564,48 @@ (define-public rust-sevenz-rust-0.5
"This package provides a 7z decompressor/compressor written in pure
rust.")
(license license:asl2.0)))
+(define-public rust-shadow-rs-0.36
+ (package
+ (name "rust-shadow-rs")
+ (version "0.36.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "shadow-rs" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "064srz17klcgxqjzsj29pqn238y4pkn3l1h20mw9yyj98c3cvksq"))))
+ (build-system cargo-build-system)
+ (native-inputs `(,pkg-config))
+ (inputs `(,zlib ,libgit2-1.8))
+ (arguments
+ `(#:cargo-test-flags '("--"
+ ;; Skip tests with missing files
+
"--skip=date_time::tests::test_local_now_human_format"
+ ;; Broken tests
+ "--skip=git::tests::test_command_last_tag"
+ "--skip=git::tests::test_current_branch"
+ "--skip=git::tests::test_git")
+ #:cargo-inputs (("rust-cargo-metadata" ,rust-cargo-metadata-0.18)
+ ("rust-const-format" ,rust-const-format-0.2)
+ ("rust-document-features" ,rust-document-features-0.2)
+ ("rust-git2" ,rust-git2-0.19)
+ ("rust-is-debug" ,rust-is-debug-1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-time" ,rust-time-0.3)
+ ("rust-tzdb" ,rust-tzdb-0.6))
+ #:cargo-development-inputs (("rust-winnow" ,rust-winnow-0.6))))
+ (home-page "https://github.com/baoyachi/shadow-rs")
+ (synopsis "Store build-time information in your rust project")
+ (description
+ "@code{shadow-rs} allows you to recall properties of the build process
+and environment at run time. You can use this tool to check in production
+exactly where a binary came from and how it was built.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-shadow-rs-0.26
(package
+ (inherit rust-shadow-rs-0.36)
(name "rust-shadow-rs")
(version "0.26.1")
(source
@@ -74575,7 +74615,6 @@ (define-public rust-shadow-rs-0.26
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "15xrlf66f10773k9kwpvz8909akfjspyy0yy9ss665wrfs15qp1y"))))
- (build-system cargo-build-system)
(arguments
`(#:cargo-test-flags
'("--release" "--"
@@ -74591,14 +74630,7 @@ (define-public rust-shadow-rs-0.26
("rust-tzdb" ,rust-tzdb-0.6))
#:cargo-development-inputs (("rust-winnow" ,rust-winnow-0.5))))
(native-inputs (list pkg-config))
- (inputs (list libgit2-1.7 zlib))
- (home-page "https://github.com/baoyachi/shadow-rs")
- (synopsis "Recall properties of the build process at run time")
- (description
- "@code{shadow-rs} allows you to recall properties of the build process
-and environment at run time. You can use this tool to check in production
-exactly where a binary came from and how it was built.")
- (license (list license:expat license:asl2.0))))
+ (inputs (list libgit2-1.7 zlib))))
(define-public rust-shadow-rs-0.8
(package
--
2.47.0
- [bug#74551] [PATCH rust-team v3 49/73] gnu: Add rust-ordered-multimap-0.7., (continued)
- [bug#74551] [PATCH rust-team v3 49/73] gnu: Add rust-ordered-multimap-0.7., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 50/73] gnu: rust-pest-2: Update to 2.7.14., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 51/73] gnu: rust-miette-derive: Upgrade to v7.4.0, Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 52/73] gnu: rust-miette: Upgrade to v7.4.0, Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 53/73] gnu: rust-pest-meta-2: Update to 2.7.14., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 54/73] gnu: rust-pest-generator-2: Update to 2.7.14., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 55/73] gnu: rust-pest-derive-2: Update to 2.7.14., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 56/73] gnu: Add rust-process-control-5., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 57/73] gnu: Add rust-rust-ini-0.21., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 58/73] gnu: rust-serde-json-1: Update to 1.0.133., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 59/73] gnu: Add rust-shadow-rs-0.36,
Aaron Covrig <=
- [bug#74551] [PATCH rust-team v3 61/73] gnu: Add rust-uom-0.36., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 60/73] gnu: Add rust-shadow-rs-0.35, Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 62/73] gnu: rust-strsim-0.11: Update to 0.11.1., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 63/73] gnu: Add rust-starship-battery-0.10., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 64/73] gnu: Add rust-systemstat-0.2., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 65/73] gnu: rust-toml-edit-0.22: Update to 0.22.22., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 66/73] gnu: Add rust-versions-6., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 67/73] gnu: Add rust-wasite-0.1., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 68/73] gnu: rust-which-6: Update to 6.0.3., Aaron Covrig, 2024/12/02
- [bug#74551] [PATCH rust-team v3 69/73] gnu: rust-which-7: Add v7.0.0, Aaron Covrig, 2024/12/02