diff options
author | Daniel Mueller <deso@posteo.net> | 2019-11-05 18:03:34 -0800 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2019-11-07 07:42:30 +0200 |
commit | 547348238fb6d1d3cc7d48f611aef7c01b89152b (patch) | |
tree | 3cbe7f29fd75f3206519f7c1a49c455bb5a7d8fd /app-crypt/nitrocli/files | |
parent | www-apps/gitea: remove old (diff) | |
download | gentoo-547348238fb6d1d3cc7d48f611aef7c01b89152b.tar.gz gentoo-547348238fb6d1d3cc7d48f611aef7c01b89152b.tar.bz2 gentoo-547348238fb6d1d3cc7d48f611aef7c01b89152b.zip |
app-crypt/nitrocli: Remove 0.2.3-r1 ebuild
This change removes the nitrocli-0.2.3-r1 ebuild. Version 0.2.4 of
the program should be used as there are no known problems with it.
Signed-off-by: Daniel Müller <deso@posteo.net>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-crypt/nitrocli/files')
-rw-r--r-- | app-crypt/nitrocli/files/nitrocli_-_fix-rust-1.35-build.patch | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/app-crypt/nitrocli/files/nitrocli_-_fix-rust-1.35-build.patch b/app-crypt/nitrocli/files/nitrocli_-_fix-rust-1.35-build.patch deleted file mode 100644 index d5da3b1f48de..000000000000 --- a/app-crypt/nitrocli/files/nitrocli_-_fix-rust-1.35-build.patch +++ /dev/null @@ -1,52 +0,0 @@ -From 5383aa73b339e6a53ff027ee6012a3428f67466a Mon Sep 17 00:00:00 2001 -From: Daniel Mueller <deso@posteo.net> -Date: Fri, 24 May 2019 17:39:14 -0700 -Subject: [PATCH] Allow for unused doc comments on macros - -With Rust 1.35 we get compile errors due to doc comments that are added -to macro invocations but not actually included in the expanded output. -The rustc wrongly assumes that we want to document the resulting code -and not just provide details about the invocation itself. -This change explicitly allows for those cases. Alternatively we could -have "downgraded" the doc comments to normal comments or removed them -altogether. There is little difference between those alternatives. ---- - nitrocli/src/args.rs | 2 ++ - nitrocli/src/pinentry.rs | 1 + - 2 files changed, 3 insertions(+) - -diff --git a/nitrocli/src/args.rs b/nitrocli/src/args.rs -index 7f0bfc..7e4f83 100644 ---- a/nitrocli/src/args.rs -+++ b/nitrocli/src/args.rs -@@ -101,6 +101,7 @@ impl<'io> Stdio for ExecCtx<'io> { - } - - /// The available Nitrokey models. -+#[allow(unused_doc_comments)] - Enum! {DeviceModel, [ - Pro => "pro", - Storage => "storage" -@@ -116,6 +117,7 @@ impl From<DeviceModel> for nitrokey::Model { - } - - /// A top-level command for nitrocli. -+#[allow(unused_doc_comments)] - Enum! {Command, [ - Config => ("config", config), - Lock => ("lock", lock), -diff --git a/nitrocli/src/pinentry.rs b/nitrocli/src/pinentry.rs -index 837032..8bab65 100644 ---- a/nitrocli/src/pinentry.rs -+++ b/nitrocli/src/pinentry.rs -@@ -30,6 +30,7 @@ type CowStr = borrow::Cow<'static, str>; - /// - /// The available PIN types correspond to the PIN types used by the Nitrokey devices: user and - /// admin. -+#[allow(unused_doc_comments)] - Enum! {PinType, [ - Admin => "admin", - User => "user" --- -2.21.0 - |