[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/07: gnu: rust-parking-lot-core-0.8: Move code changes to snippet.
From: |
guix-commits |
Subject: |
01/07: gnu: rust-parking-lot-core-0.8: Move code changes to snippet. |
Date: |
Wed, 11 May 2022 05:21:38 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit ef1d3d44d0f53917772cdb42f4dc380baec4eb7c
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed May 11 09:41:56 2022 +0300
gnu: rust-parking-lot-core-0.8: Move code changes to snippet.
This allows the changes to propagate through the cargo-build-system.
* gnu/packages/crates-io.scm (rust-parking-lot-core-0.8)[source]: Add
snippet to relax version dependencies.
[arguments]: Remove 'relax-dependencies phase.
---
gnu/packages/crates-io.scm | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index cf8fc9a2ca..2b67033775 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -40646,7 +40646,14 @@ synchronization primitives.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "08n7w09q6b2prvazbzgwrc9ml7aaf8yg3132ifsayrkwy1nwwzs6"))))
+ "08n7w09q6b2prvazbzgwrc9ml7aaf8yg3132ifsayrkwy1nwwzs6"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; XXX: The file demands 0.3.60; we have 0.3.56, but
+ ;; that works well, really.
+ (substitute* "Cargo.toml"
+ (("0\\.3\\.60") "0.3.56"))))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
@@ -40658,15 +40665,7 @@ synchronization primitives.")
("rust-redox-syscall" ,rust-redox-syscall-0.2)
("rust-smallvec" ,rust-smallvec-1)
("rust-thread-id" ,rust-thread-id-4)
- ("rust-winapi" ,rust-winapi-0.3))
- #:phases (modify-phases %standard-phases
- (add-after 'unpack 'relax-dependencies
- (lambda _
- ;; XXX: The file demands 0.3.60; we have 0.3.56, but
- ;; that works well, really.
- (substitute* "Cargo.toml"
- (("0\\.3\\.60")
- ,(package-version rust-backtrace-0.3))))))))
+ ("rust-winapi" ,rust-winapi-0.3))))
(home-page "https://github.com/Amanieu/parking_lot")
(synopsis "API for creating custom synchronization primitives")
(description "This package provides an advanced API for creating custom
- branch master updated (aaa981f7c5 -> 427dbce3a8), guix-commits, 2022/05/11
- 01/07: gnu: rust-parking-lot-core-0.8: Move code changes to snippet.,
guix-commits <=
- 06/07: gnu: rust-nalgebra-macros-0.1: Move code changes to snippet., guix-commits, 2022/05/11
- 02/07: gnu: rust-proc-macro-error-1: Move code changes to snippet., guix-commits, 2022/05/11
- 03/07: gnu: rust-pyo3-0.15: Adjust version dependency relaxing code., guix-commits, 2022/05/11
- 04/07: gnu: rust-average-0.13: Move code changes to snippet., guix-commits, 2022/05/11
- 07/07: gnu: rust-rand-distr-0.4: Move code changes to snippet., guix-commits, 2022/05/11
- 05/07: gnu: rust-nalgebra-0.26: Move code changes to snippet., guix-commits, 2022/05/11