From: "\(unmatched-parenthesis via Guix-patches" via <guix-patches@gnu.org>
To: 52149@debbugs.gnu.org
Cc: "\(unmatched-parenthesis" <paren@disroot.org>
Subject: [bug#52149] [PATCH 01/26] gnu: Add rust-cargo-0.58.
Date: Mon, 27 Dec 2021 16:50:38 +0000 [thread overview]
Message-ID: <20211227165103.10075-1-paren@disroot.org> (raw)
In-Reply-To: <20211127204237.4195-1-paren@disroot.org>
* gnu/packages/crates-io.scm: Add copyright notice.
* gnu/packages/crates-io.scm (rust-cargo-0.58): New variable.
* gnu/packages/crates-io.scm (rust-cargo-0.53): Inherit from rust-cargo-0.58.
---
gnu/packages/crates-io.scm | 88 ++++++++++++++++++++++++++++++++++++++
1 file changed, 88 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 656fe164a5..35c39abcdd 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -23,6 +23,7 @@
;;; Copyright © 2021 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2021 Jacob Hrbek <kreyren@rixotstudio.cz>
;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
+;;; Copyright © 2021 (unmatched parenthesis <paren@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -8221,8 +8222,95 @@ (define-public rust-caps-0.3
("rust-error-chain" ,rust-error-chain-0.12)
("rust-libc" ,rust-libc-0.2))))))
+(define-public rust-cargo-0.58
+ (package
+ (name "rust-cargo")
+ (version "0.58.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "cargo" version))
+ (file-name
+ (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "011pcmmydmibq2mha19q23mn0yypcpj222fpd9zjj2bvhgm7xdya"))))
+ (arguments
+ ;; The test suite is disabled as the internal 'cargo-test-macro' and
+ ;; 'cargo-test-support' crates are not included in the release.
+ `(#:tests? #f
+ #:cargo-inputs
+ (("rust-anyhow" ,rust-anyhow-1)
+ ("rust-atty" ,rust-atty-0.2)
+ ("rust-bytesize" ,rust-bytesize-1)
+ ("rust-cargo-platform" ,rust-cargo-platform-0.1)
+ ("rust-cargo-util" ,rust-cargo-util-0.1)
+ ("rust-clap" ,rust-clap-2)
+ ("rust-core-foundation" ,rust-core-foundation-0.9)
+ ("rust-crates-io" ,rust-crates-io-0.33)
+ ("rust-crossbeam-utils-0.8" ,rust-crossbeam-utils-0.8)
+ ("rust-crypto-hash" ,rust-crypto-hash-0.3)
+ ("rust-curl" ,rust-curl-0.4)
+ ("rust-curl-sys" ,rust-curl-sys-0.4)
+ ("rust-env-logger" ,rust-env-logger-0.9)
+ ("rust-filetime" ,rust-filetime-0.2)
+ ("rust-flate2-1" ,rust-flate2-1)
+ ("rust-fwdansi" ,rust-fwdansi-1)
+ ("rust-git2" ,rust-git2-0.13)
+ ("rust-git2-curl" ,rust-git2-curl-0.14)
+ ("rust-hex" ,rust-hex-0.4)
+ ("rust-home" ,rust-home-0.5)
+ ("rust-humantime" ,rust-humantime-2)
+ ("rust-ignore" ,rust-ignore-0.4)
+ ("rust-im-rc" ,rust-im-rc-15)
+ ("rust-itertools" ,rust-itertools-0.10)
+ ("rust-jobserver" ,rust-jobserver-0.1)
+ ("rust-lazy-static" ,rust-lazy-static-1)
+ ("rust-libc" ,rust-libc-0.2)
+ ("rust-libgit2-sys" ,rust-libgit2-sys-0.12)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-memchr" ,rust-memchr-2)
+ ("rust-miow" ,rust-miow-0.3)
+ ("rust-num-cpus" ,rust-num-cpus-1)
+ ("rust-opener" ,rust-opener-0.5)
+ ("rust-openssl" ,rust-openssl-0.10)
+ ("rust-os-info" ,rust-os-info-3)
+ ("rust-percent-encoding" ,rust-percent-encoding-2)
+ ("rust-pretty-env-logger" ,rust-pretty-env-logger-0.4)
+ ("rust-proptest" ,rust-proptest-0.9)
+ ("rust-rustc-workspace-hack" ,rust-rustc-workspace-hack-1)
+ ("rust-rustfix" ,rust-rustfix-0.6)
+ ("rust-same-file" ,rust-same-file-1)
+ ("rust-security-framework" ,rust-security-framework-2)
+ ("rust-semver" ,rust-semver-1)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-serde-ignored" ,rust-serde-ignored-0.1)
+ ("rust-serde-json" ,rust-serde-json-1)
+ ("rust-shell-escape" ,rust-shell-escape-0.1)
+ ("rust-strip-ansi-escapes" ,rust-strip-ansi-escapes-0.1)
+ ("rust-tar" ,rust-tar-0.4)
+ ("rust-tempfile" ,rust-tempfile-3)
+ ("rust-termcolor" ,rust-termcolor-1)
+ ("rust-toml" ,rust-toml-0.5)
+ ("rust-unicode-width" ,rust-unicode-width-0.1)
+ ("rust-unicode-xid" ,rust-unicode-xid-0.2)
+ ("rust-url" ,rust-url-2)
+ ("rust-walkdir" ,rust-walkdir-2)
+ ("rust-winapi-0.3" ,rust-winapi-0.3))))
+ (inputs
+ (list curl libssh2 openssl zlib))
+ (native-inputs
+ (list pkg-config))
+ (build-system cargo-build-system)
+ (home-page "https://crates.io")
+ (synopsis "Package manager for Rust")
+ (description
+ "Cargo is the package manager for Rust. This package provides the library crate for Cargo.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-cargo-0.53
(package
+ (inherit rust-cargo-0.58)
(name "rust-cargo")
(version "0.53.0")
(source
--
2.34.0
next prev parent reply other threads:[~2021-12-27 16:52 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-27 20:42 [bug#52149] [PATCH] core-updates-frozen: Update `rustc` to version 1.56.1 (from 1.54.0) (unmatched-parenthesis via Guix-patches via
2021-11-27 23:16 ` [bug#52149] [PATCH v2] Update Cargo to v0.57.0 along with rustc (unmatched-parenthesis via Guix-patches via
2021-11-27 23:23 ` [bug#52149] [PATCH v3] " (unmatched-parenthesis via Guix-patches via
2021-12-24 6:05 ` [bug#52149] [PATCH] core-updates-frozen: Update `rustc` to version 1.56.1 (from 1.54.0) Maxim Cournoyer
2021-12-24 22:02 ` Parenthesis via Guix-patches via
2021-12-26 20:46 ` Parenthesis via Guix-patches via
2021-12-26 21:12 ` Parenthesis via Guix-patches via
2021-12-25 19:54 ` [bug#52149] [PATCH] feat(gnu packages rust): add 'rust-1.55' (unmatched-parenthesis via Guix-patches via
2021-12-25 20:05 ` [bug#52149] [PATCH] feat(gnu/packages/rust): Add 'rust-1.56' (unmatched-parenthesis via Guix-patches via
2021-12-26 14:48 ` [bug#52149] [PATCH] feat(gnu packages rust): Add 'rust-1.57'; Change 'rust' to 'rust-1.57' (unmatched-parenthesis via Guix-patches via
2021-12-27 12:16 ` Efraim Flashner
2021-12-27 15:29 ` Parenthesis via Guix-patches via
2022-01-17 17:07 ` [bug#52149] [PATCH] core-updates-frozen: Update `rustc` to version 1.56.1 (from 1.54.0) Maxim Cournoyer
2021-12-27 16:50 ` (unmatched-parenthesis via Guix-patches via [this message]
2021-12-27 16:50 ` [bug#52149] [PATCH 02/26] gnu: Remove redundant parts of rust-cargo-0.53 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 03/26] gnu: Update rust-crossbeam-utils-0.8 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 04/26] gnu: Add rust-cargo-util-0.1 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 05/26] gnu: Update rust-curl-0.4; Update rust-curl-sys-0.4 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 06/26] gnu: Add rust-duct-0.9 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 07/26] gnu: Add rust-env-logger-0.9 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 08/26] gnu: Update dependencies of rust-bstr-0.2 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 09/26] gnu: Add rust-version-sync-0.9 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 10/26] gnu: Update rust-trybuild-1 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 11/26] gnu: Add rust-tracing-subscriber-0.3 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 12/26] gnu: Add rust-time-0.3 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 13/26] gnu: Update rust-cargo-metadata-0.6 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 14/26] gnu: Change checksum of rust-cargo-platform-0.1 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 15/26] gnu: Add rust-generator-0.7 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 16/26] gnu: Update rust-jobserver-0.1 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 17/26] gnu: Update rust-itertools-0.10 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 18/26] gnu: Add rust-matchers-0.1 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 19/26] gnu: Add rust-rustfix-0.6 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 20/26] gnu: Update rust-os-info-3 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 21/26] gnu: Add rust-similar-0.4 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:50 ` [bug#52149] [PATCH 22/26] gnu: Add rust-loom-0.5 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:51 ` [bug#52149] [PATCH 23/26] gnu: Add rust-opener-0.5 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:51 ` [bug#52149] [PATCH 24/26] gnu: Update rust-socket2-0.4 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:51 ` [bug#52149] [PATCH 25/26] gnu: Update rust-tar-0.4 (unmatched-parenthesis via Guix-patches via
2021-12-27 16:51 ` [bug#52149] [PATCH 26/26] gnu: Add rust-time-macros-0.2 (unmatched-parenthesis 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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211227165103.10075-1-paren@disroot.org \
--to=guix-patches@gnu.org \
--cc=52149@debbugs.gnu.org \
--cc=paren@disroot.org \
/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 external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.