From 7c1a6f3f59f4080f1aff33f914c5f4d04b31929a Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Sep 11 2020 23:48:28 +0000 Subject: Update parking_lot to 0.11 --- diff --git a/rust-wayland-server.spec b/rust-wayland-server.spec index e61735f..87a3ae2 100644 --- a/rust-wayland-server.spec +++ b/rust-wayland-server.spec @@ -6,13 +6,16 @@ Name: rust-%{crate} Version: 0.26.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Bindings to the standard C implementation of the wayland protocol, server side # Upstream license specification: MIT License: MIT URL: https://crates.io/crates/wayland-server Source: %{crates_source} +# Initial patched metadata +# * Update parking_lot to 0.11, https://github.com/Smithay/wayland-rs/pull/345 +Patch0: wayland-server-fix-metadata.diff ExclusiveArch: %{rust_arches} %if %{__cargo_skip_build} @@ -119,6 +122,9 @@ which use "use_system_lib" feature of "%{crate}" crate. %endif %changelog +* Fri Sep 11 2020 Josh Stone - 0.26.6-3 +- Update parking_lot to 0.11 + * Wed Jul 29 2020 Fedora Release Engineering - 0.26.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/wayland-server-fix-metadata.diff b/wayland-server-fix-metadata.diff new file mode 100644 index 0000000..16dcb99 --- /dev/null +++ b/wayland-server-fix-metadata.diff @@ -0,0 +1,11 @@ +--- wayland-server-0.26.6/Cargo.toml 2020-05-23T21:02:32+00:00 ++++ wayland-server-0.26.6/Cargo.toml 2020-09-11T23:14:55.535978+00:00 +@@ -40,7 +40,7 @@ + version = "0.17" + + [dependencies.parking_lot] +-version = "0.10" ++version = "0.11" + optional = true + + [dependencies.scoped-tls]