diff --git a/0001-drop-deny-warnings-from-doctests.patch b/0001-drop-deny-warnings-from-doctests.patch new file mode 100644 index 0000000..897c9fd --- /dev/null +++ b/0001-drop-deny-warnings-from-doctests.patch @@ -0,0 +1,25 @@ +From 687722bb07677758ca463eba433e9fecc32038ee Mon Sep 17 00:00:00 2001 +From: Fabio Valentini +Date: Fri, 5 Apr 2024 11:40:43 +0200 +Subject: [PATCH] drop deny(warnings) from doctests + +--- + src/lib.rs | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/lib.rs b/src/lib.rs +index 1234a56..de7a009 100644 +--- a/src/lib.rs ++++ b/src/lib.rs +@@ -34,7 +34,7 @@ + )] + #![deny(missing_docs)] + #![deny(missing_debug_implementations)] +-#![doc(test(attr(allow(unused_variables), deny(warnings))))] ++#![doc(test(attr(allow(unused_variables))))] + #![cfg_attr(doc_cfg, feature(doc_cfg))] + #![no_std] + +-- +2.44.0 + diff --git a/README.md b/README.md deleted file mode 100644 index a4c8419..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# rust-rand_core - -The rust-rand_core package \ No newline at end of file diff --git a/rust-rand_core.spec b/rust-rand_core.spec index 07412e5..71ffe36 100644 --- a/rust-rand_core.spec +++ b/rust-rand_core.spec @@ -12,6 +12,8 @@ Summary: Core random number generator traits and tools for implementation License: MIT OR Apache-2.0 URL: https://crates.io/crates/rand_core Source: %{crates_source} +# drop deny(warnings) from doctests to fix building with recent Rust +Patch: 0001-drop-deny-warnings-from-doctests.patch ExclusiveArch: %{rust_arches}