From 5de69b7e00363b450263a75934c776b848e1a9a8 Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Sun, 28 Jul 2024 22:54:24 +0200 Subject: [PATCH] Review rust-tiny-bip39 --- rust-tiny-bip39/rust-tiny-bip39.spec | 13 ++++++++++--- rust-tiny-bip39/rust2rpm.toml | 12 ++++++++++++ 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/rust-tiny-bip39/rust-tiny-bip39.spec b/rust-tiny-bip39/rust-tiny-bip39.spec index 87aa9fa..74e2725 100644 --- a/rust-tiny-bip39/rust-tiny-bip39.spec +++ b/rust-tiny-bip39/rust-tiny-bip39.spec @@ -7,7 +7,7 @@ Name: rust-tiny-bip39 Version: 1.0.0 Release: %autorelease -Summary: Fork of the bip39 crate with fixes to v0.6 +Summary: Rust implementation of BIP-0039 License: MIT OR Apache-2.0 URL: https://crates.io/crates/tiny-bip39 @@ -18,8 +18,15 @@ Patch: tiny-bip39-fix-metadata-auto.diff BuildRequires: cargo-rpm-macros >= 24 %global _description %{expand: -A fork of the bip39 crate with fixes to v0.6. Rust implementation of -BIP-0039.} +A fork of the bip39 crate with fixes to v0.6. Rust implementation of BIP-0039. + +This BIP describes the implementation of a mnemonic code or mnemonic sentence +-- a group of easy to remember words -- for the generation of deterministic +wallets. + +It consists of two parts: generating the mnenomic, and converting it into a +binary seed. +} %description %{_description} diff --git a/rust-tiny-bip39/rust2rpm.toml b/rust-tiny-bip39/rust2rpm.toml index e69de29..f5fb18c 100644 --- a/rust-tiny-bip39/rust2rpm.toml +++ b/rust-tiny-bip39/rust2rpm.toml @@ -0,0 +1,12 @@ +[package] +summary = "Rust implementation of BIP-0039" +description = """ +A fork of the bip39 crate with fixes to v0.6. Rust implementation of BIP-0039. + +This BIP describes the implementation of a mnemonic code or mnemonic sentence +-- a group of easy to remember words -- for the generation of deterministic +wallets. + +It consists of two parts: generating the mnenomic, and converting it into a +binary seed. +"""