mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
rusty-diceware: update to 0.3.3.
This commit is contained in:
parent
e079a89adf
commit
77dad1c9fa
2 changed files with 41 additions and 3 deletions
|
@ -0,0 +1,38 @@
|
||||||
|
From 9f480fcbc9cb7bfb0d0bde8727dbfba9d878b596 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
|
||||||
|
<jan.christian@gruenhage.xyz>
|
||||||
|
Date: Sun, 4 Sep 2022 14:38:10 +0200
|
||||||
|
Subject: [PATCH] Fix values in test cases
|
||||||
|
|
||||||
|
SeedableRng values are "stable", but minor version bumps (which have
|
||||||
|
happened since these cases were written) are allowed to change those. A
|
||||||
|
breaking change here was documentated for 0.7.
|
||||||
|
---
|
||||||
|
tests/tests.rs | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/tests/tests.rs b/tests/tests.rs
|
||||||
|
index d569663..ed4eff4 100644
|
||||||
|
--- a/tests/tests.rs
|
||||||
|
+++ b/tests/tests.rs
|
||||||
|
@@ -33,7 +33,7 @@ fn make_reinhold_vector() -> Vec<ReinholdWord> {
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn beale_rng_test() {
|
||||||
|
- let wanted: Vec<BealeWord> = vec!["dr", "raced", "pvc", "moon"]
|
||||||
|
+ let wanted: Vec<BealeWord> = vec!["io", "gavel", "beam", "time"]
|
||||||
|
.into_iter()
|
||||||
|
.map(BealeWord::new)
|
||||||
|
.collect();
|
||||||
|
@@ -45,7 +45,7 @@ fn beale_rng_test() {
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn reinhold_rng_test() {
|
||||||
|
- let wanted: Vec<ReinholdWord> = vec!["douse", "qo", "prune", "moan"]
|
||||||
|
+ let wanted: Vec<ReinholdWord> = vec!["india", "gamma", "bcd", "theme"]
|
||||||
|
.into_iter()
|
||||||
|
.map(ReinholdWord::new)
|
||||||
|
.collect();
|
||||||
|
--
|
||||||
|
2.37.3
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
# Template file for 'rusty-diceware'
|
# Template file for 'rusty-diceware'
|
||||||
pkgname=rusty-diceware
|
pkgname=rusty-diceware
|
||||||
version=0.3.0
|
version=0.3.3
|
||||||
revision=1
|
revision=1
|
||||||
wrksrc="${pkgname}-v${version}"
|
wrksrc="${pkgname}-v${version}"
|
||||||
build_style=cargo
|
build_style=cargo
|
||||||
short_desc="Commandline diceware, sans dice, written in rustlang"
|
short_desc="Commandline diceware, sans dice, written in rustlang"
|
||||||
maintainer="jcgruenhage <jan.christian@gruenhage.xyz>"
|
maintainer="jcgruenhage <jan.christian@gruenhage.xyz>"
|
||||||
license="AGPL-3.0"
|
license="AGPL-3.0-only"
|
||||||
homepage="https://gitlab.com/yuvallanger/rusty-diceware"
|
homepage="https://gitlab.com/yuvallanger/rusty-diceware"
|
||||||
distfiles="https://gitlab.com/yuvallanger/rusty-diceware/-/archive/v${version}/rusty-diceware-v${version}.tar.gz"
|
distfiles="https://gitlab.com/yuvallanger/rusty-diceware/-/archive/v${version}/rusty-diceware-v${version}.tar.gz"
|
||||||
checksum=79c02206ad825604507be96623d6de9185c837900bce9b1d392095e789c06f61
|
checksum=906a082a2b85fe8d1f5db88705704f44a7b5cafcd419a2eccb29e9ccbdff9e0e
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vlicense LICENSE
|
vlicense LICENSE
|
||||||
|
|
Loading…
Add table
Reference in a new issue