From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 75325@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#75325] [PATCH rust-team 1/2] build-system: cargo: Add add-dependencies procedure.
Date: Fri, 3 Jan 2025 20:40:58 +0100 [thread overview]
Message-ID: <ce89ce8f0b871c0bbe13fe284c3bc72e4c15e3ad.1735932581.git.herman@rimm.ee> (raw)
In-Reply-To: <cover.1735932581.git.herman@rimm.ee>
* guix/build-system/cargo.scm (add-dependencies): Add procedure.
Change-Id: I5385d136697bb6d41a5bd4f6120150f841369a04
---
guix/build-system/cargo.scm | 17 +++++++++++++++--
1 file changed, 15 insertions(+), 2 deletions(-)
diff --git a/guix/build-system/cargo.scm b/guix/build-system/cargo.scm
index 452f7f78d01..b22b9247a1c 100644
--- a/guix/build-system/cargo.scm
+++ b/guix/build-system/cargo.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2019 Ivan Petkov <ivanppetkov@gmail.com>
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;; Copyright © 2021, 2024 Efraim Flashner <efraim@flashner.co.il>
-;;; Copyright © 2024 Herman Rimm <herman@rimm.ee>
+;;; Copyright © 2024-2025 Herman Rimm <herman@rimm.ee>
;;; Copyright © 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
@@ -38,7 +38,8 @@ (define-module (guix build-system cargo)
#:use-module (ice-9 vlist)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26)
- #:export (%cargo-build-system-modules
+ #:export (add-dependencies
+ %cargo-build-system-modules
%cargo-utils-modules
cargo-build-system
%crate-base-url
@@ -46,6 +47,18 @@ (define-module (guix build-system cargo)
crate-url?
crate-uri))
+;; TODO: Move to (guix build cargo-utils).
+(define* (add-dependencies dependencies)
+ "DEPENDENCIES is a list of (crate version features). It is formatted
+and appendended to Cargo.toml."
+ #~(let ((port (open-file "Cargo.toml" "a")))
+ (format port "
+~:{[dev-dependencies.~a]
+version = ~s
+~@[features = [~{~s~^,~}]~]~%~}"
+ '#$dependencies)
+ (close port)))
+
(define %crate-base-url
(make-parameter "https://crates.io"))
(define crate-url
--
2.45.2
next prev parent reply other threads:[~2025-01-03 19:43 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-03 19:38 [bug#75325] [PATCH rust-team 0/2] Add add-dependencies procedure Herman Rimm via Guix-patches via
2025-01-03 19:40 ` Herman Rimm via Guix-patches via [this message]
2025-01-03 19:40 ` [bug#75325] [PATCH rust-team 2/2] build-system: cargo: add-dependencies: Silence warning Herman Rimm via Guix-patches via
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ce89ce8f0b871c0bbe13fe284c3bc72e4c15e3ad.1735932581.git.herman@rimm.ee \
--to=guix-patches@gnu.org \
--cc=75325@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=herman@rimm.ee \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).