From: Aaron Covrig via Guix-patches via <guix-patches@gnu.org>
To: 74234@debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul@autistici.org>
Subject: [bug#74234] [PATCH rust-team v3 21/23] gnu: Add rust-oo7-0.2.
Date: Sun, 8 Dec 2024 20:11:45 -0500 [thread overview]
Message-ID: <20241209011150.1455224-22-aaron.covrig.us@ieee.org> (raw)
In-Reply-To: <20241209011150.1455224-1-aaron.covrig.us@ieee.org>
From: Giacomo Leidi <goodoldpaul@autistici.org>
* gnu/packages/crates-gtk.scm (rust-oo7-0.2): New variable.
Change-Id: I011b3d08e928792cad32a45f549291d4542ed4d0
---
gnu/packages/crates-gtk.scm | 54 +++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/gnu/packages/crates-gtk.scm b/gnu/packages/crates-gtk.scm
index 8c90cafbb9..2654b1501b 100644
--- a/gnu/packages/crates-gtk.scm
+++ b/gnu/packages/crates-gtk.scm
@@ -28,6 +28,7 @@ (define-module (gnu packages crates-gtk)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (gnu packages)
+ #:use-module (gnu packages crates-crypto)
#:use-module (gnu packages crates-graphics)
#:use-module (gnu packages crates-io)
#:use-module (gnu packages crates-windows)
@@ -4143,6 +4144,59 @@ (define-public rust-libadwaita-sys-0.5
#:cargo-development-inputs (("rust-shell-words" ,rust-shell-words-1)
("rust-tempfile" ,rust-tempfile-3))))))
+(define-public rust-oo7-0.2
+ (package
+ (name "rust-oo7")
+ (version "0.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "oo7" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "13cpaq7f51gqcspd4097vjr7r2cjpxpn6c02x67dsdizk0xaiv5c"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-test-flags '("--"
+ ;; Missing test files
+ "--skip=dbus::collection::tests::create_encrypted_item"
+ "--skip=dbus::collection::tests::create_plain_item"
+ "--skip=dbus::service::tests::create_collection")
+ #:cargo-inputs (("rust-aes" ,rust-aes-0.8)
+ ("rust-async-fs" ,rust-async-fs-2)
+ ("rust-async-io" ,rust-async-io-2)
+ ("rust-async-lock" ,rust-async-lock-3)
+ ("rust-async-net" ,rust-async-net-2)
+ ("rust-blocking" ,rust-blocking-1)
+ ("rust-cbc" ,rust-cbc-0.1)
+ ("rust-cipher" ,rust-cipher-0.4)
+ ("rust-digest" ,rust-digest-0.10)
+ ("rust-futures-lite" ,rust-futures-lite-2)
+ ("rust-futures-util" ,rust-futures-util-0.3)
+ ("rust-hkdf" ,rust-hkdf-0.12)
+ ("rust-hmac" ,rust-hmac-0.12)
+ ("rust-md-5" ,rust-md-5-0.10)
+ ("rust-num" ,rust-num-0.4)
+ ("rust-num-bigint-dig" ,rust-num-bigint-dig-0.8)
+ ("rust-openssl" ,rust-openssl-0.10)
+ ("rust-pbkdf2" ,rust-pbkdf2-0.12)
+ ("rust-rand" ,rust-rand-0.8)
+ ("rust-serde" ,rust-serde-1)
+ ("rust-sha2" ,rust-sha2-0.10)
+ ("rust-tokio" ,rust-tokio-1)
+ ("rust-tracing" ,rust-tracing-0.1)
+ ("rust-zbus" ,rust-zbus-3)
+ ("rust-zeroize" ,rust-zeroize-1))
+ #:cargo-development-inputs (("rust-tempfile" ,rust-tempfile-3)
+ ("rust-tokio" ,rust-tokio-1))))
+ (home-page "https://github.com/bilelmoussaoui/oo7")
+ (synopsis "Rust Secret Service provider")
+ (description
+ "The Rust Secret Service provider, @emph{oo7}, provides helper methods to
+store and retrieve secrets and uses either the DBus interface or the file
+backend based on whether the application is sandboxed or not.")
+ (license license:expat)))
+
(define-public rust-pango-0.20
(package
(name "rust-pango")
--
2.47.0
next prev parent reply other threads:[~2024-12-09 1:20 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-06 20:48 [bug#74234] [PATCH rust-team] Add gnome-authenticator paul via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 01/20] gnu: Add rust-ashpd-0.6 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 02/20] gnu: Add rust-migrations-internals-2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 03/20] gnu: Add rust-migrations-macros-2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 04/20] gnu: Add rust-diesel-migrations-2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 05/20] gnu: Add rust-blocking-1.5 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 06/20] gnu: Add rust-oo7-0.2 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 07/20] gnu: Add rust-percent-encoding-2.1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 08/20] gnu: Add rust-checked-int-cast-1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 09/20] gnu: Add rust-qrencode-0.14 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 10/20] gnu: Add rust-search-provider-0.6 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 11/20] gnu: Add rust-enum-ordinalize-derive-4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 12/20] gnu: Add rust-enum-ordinalize-4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 13/20] gnu: Add rust-qrcodegen-1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 14/20] gnu: Add rust-manifest-dir-macros-0.1 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 15/20] gnu: Add rust-qrcode-generator-4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 16/20] gnu: Add rust-zbar-rust-0.0 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 17/20] gnu: Add rust-roxmltree-0.20 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 18/20] gnu: Add rust-roxmltree-0.18 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 19/20] gnu: Add rust-svg-metadata-0.4 Giacomo Leidi via Guix-patches via
2024-11-06 20:50 ` [bug#74234] [PATCH rust-team 20/20] gnu: Add gnome-authenticator Giacomo Leidi via Guix-patches via
2024-11-07 22:26 ` [bug#74234] [PATCH rust-team] " paul via Guix-patches via
2024-11-07 22:26 ` [bug#74234] [PATCHv2 rust-team 01/20] gnu: Add rust-ashpd-0.6 Giacomo Leidi via Guix-patches via
2024-11-07 22:26 ` [bug#74234] [PATCHv2 rust-team 02/20] gnu: Add rust-migrations-internals-2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 03/20] gnu: Add rust-migrations-macros-2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 04/20] gnu: Add rust-diesel-migrations-2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 05/20] gnu: Add rust-blocking-1.5 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 06/20] gnu: Add rust-oo7-0.2 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 07/20] gnu: Add rust-percent-encoding-2.1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 08/20] gnu: Add rust-checked-int-cast-1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 09/20] gnu: Add rust-qrencode-0.14 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 10/20] gnu: Add rust-search-provider-0.6 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 11/20] gnu: Add rust-enum-ordinalize-derive-4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 12/20] gnu: Add rust-enum-ordinalize-4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 13/20] gnu: Add rust-qrcodegen-1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 14/20] gnu: Add rust-manifest-dir-macros-0.1 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 15/20] gnu: Add rust-qrcode-generator-4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 16/20] gnu: Add rust-zbar-rust-0.0 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 17/20] gnu: Add rust-roxmltree-0.20 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 18/20] gnu: Add rust-roxmltree-0.18 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 19/20] gnu: Add rust-svg-metadata-0.4 Giacomo Leidi via Guix-patches via
2024-11-07 22:27 ` [bug#74234] [PATCHv2 rust-team 20/20] gnu: Add gnome-authenticator Giacomo Leidi via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 00/23] WIP add gnome-authenticator Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 01/23] gnu: Add rust-migrations-internals-2 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 02/23] gnu: Add rust-migrations-macros-2 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 03/23] gnu: Add rust-diesel-migrations-2 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 04/23] gnu: Add rust-search-provider-0.6 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 05/23] gnu: Add rust-manifest-dir-macros-0.1 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 06/23] gnu: rust-xmlparser-0.13: Upgrade to v0.13.6 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 07/23] gnu: Add rust-roxmltree-0.18 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 08/23] gnu: Add rust-roxmltree-0.14: Upgrade to v0.14.1 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 09/23] gnu: Add rust-roxmltree-0.20 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 10/23] gnu: Add rust-svg-metadata-0.4 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 11/23] gnu: Add rust-svg-metadata-0.5 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 12/23] gnu: Add rust-checked-int-cast-1 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 13/23] gnu: Add rust-qrencode-0.14 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 14/23] gnu: Add rust-qrcode-0.14 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 15/23] gnu: Add rust-enum-ordinalize-derive-4 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 16/23] gnu: Add rust-enum-ordinalize-4 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 17/23] gnu: Add rust-qrcodegen-1 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 18/23] gnu: Add rust-qrcode-generator-4 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 19/23] gnu: Add rust-qrcode-generator-5 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 20/23] gnu: Add rust-zbar-rust-0.0 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` Aaron Covrig via Guix-patches via [this message]
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 22/23] gnu: Add rust-ashpd-0.6 Aaron Covrig via Guix-patches via
2024-12-09 1:11 ` [bug#74234] [PATCH rust-team v3 23/23] gnu: Add gnome-authenticator Aaron Covrig 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=20241209011150.1455224-22-aaron.covrig.us@ieee.org \
--to=guix-patches@gnu.org \
--cc=74234@debbugs.gnu.org \
--cc=aaron.covrig.us@ieee.org \
--cc=goodoldpaul@autistici.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 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).