From 18b58c2d52f5159c906237c63466463655613ff4 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Mon, 10 Jan 2022 16:07:03 +0100 Subject: [PATCH 1/6] Update to version 0.5.2; Fixes RHBZ#2038604 --- .gitignore | 1 + rust-crossbeam-channel.spec | 17 +++++++---------- sources | 2 +- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 753cb3b..dd5d8a4 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /crossbeam-channel-0.4.4.crate /crossbeam-channel-0.5.0.crate /crossbeam-channel-0.5.1.crate +/crossbeam-channel-0.5.2.crate diff --git a/rust-crossbeam-channel.spec b/rust-crossbeam-channel.spec index b2b3ed2..ec73922 100644 --- a/rust-crossbeam-channel.spec +++ b/rust-crossbeam-channel.spec @@ -1,11 +1,11 @@ -# Generated by rust2rpm 19 +# Generated by rust2rpm 20 %bcond_without check %global debug_package %{nil} %global crate crossbeam-channel Name: rust-%{crate} -Version: 0.5.1 +Version: 0.5.2 Release: %autorelease Summary: Multi-producer multi-consumer channels for message passing @@ -15,9 +15,6 @@ URL: https://crates.io/crates/crossbeam-channel Source: %{crates_source} ExclusiveArch: %{rust_arches} -%if %{__cargo_skip_build} -BuildArch: noarch -%endif BuildRequires: rust-packaging @@ -33,7 +30,7 @@ BuildArch: noarch %description devel %{_description} This package contains library source intended for building other packages which -use "%{crate}" crate. +use the "%{crate}" crate. %files devel %license LICENSE-APACHE LICENSE-MIT LICENSE-THIRD-PARTY @@ -47,7 +44,7 @@ BuildArch: noarch %description -n %{name}+default-devel %{_description} This package contains library source intended for building other packages which -use "the default" feature of the "%{crate}" crate. +use the "default" feature of the "%{crate}" crate. %files -n %{name}+default-devel %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml @@ -59,7 +56,7 @@ BuildArch: noarch %description -n %{name}+crossbeam-utils-devel %{_description} This package contains library source intended for building other packages which -use "the crossbeam-utils" feature of the "%{crate}" crate. +use the "crossbeam-utils" feature of the "%{crate}" crate. %files -n %{name}+crossbeam-utils-devel %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml @@ -71,7 +68,7 @@ BuildArch: noarch %description -n %{name}+std-devel %{_description} This package contains library source intended for building other packages which -use "the std" feature of the "%{crate}" crate. +use the "std" feature of the "%{crate}" crate. %files -n %{name}+std-devel %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml @@ -91,7 +88,7 @@ use "the std" feature of the "%{crate}" crate. %if %{with check} %check -# Test below is just unreliable +# * skip unreliable tests # https://github.com/crossbeam-rs/crossbeam/pull/474#issuecomment-589250957 %cargo_test -- -- --skip fairness2 --skip select2::main %endif diff --git a/sources b/sources index cc64eec..5147af9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crossbeam-channel-0.5.1.crate) = f15aff67e9105584f5fe41e1ee650ae4fdd0d0ca0fa9202ee83c6f6025398a300decaa50d1b4682e8afb9bd6e11e95b69bcf23f68ae117419aa84df14ee7747b +SHA512 (crossbeam-channel-0.5.2.crate) = dc8dbfa40a7046ad82da3f33a20b29d216ff98180217489653e53aa46244089d1fd2490051d3f05b00333911e303e9efe76d16d4cbce8257be91f96554fb88d0 From bfa976612dd3868705c7a968a6eb14633a2e2172 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Tue, 29 Mar 2022 12:58:08 +0200 Subject: [PATCH 3/6] Update to version 0.5.4; Fixes RHBZ#2064277 --- .gitignore | 1 + rust-crossbeam-channel.spec | 21 ++++++++++++--------- sources | 2 +- 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index dd5d8a4..0579034 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ /crossbeam-channel-0.5.0.crate /crossbeam-channel-0.5.1.crate /crossbeam-channel-0.5.2.crate +/crossbeam-channel-0.5.4.crate diff --git a/rust-crossbeam-channel.spec b/rust-crossbeam-channel.spec index ec73922..0154203 100644 --- a/rust-crossbeam-channel.spec +++ b/rust-crossbeam-channel.spec @@ -1,11 +1,11 @@ -# Generated by rust2rpm 20 +# Generated by rust2rpm 21 %bcond_without check %global debug_package %{nil} %global crate crossbeam-channel Name: rust-%{crate} -Version: 0.5.2 +Version: 0.5.4 Release: %autorelease Summary: Multi-producer multi-consumer channels for message passing @@ -16,7 +16,7 @@ Source: %{crates_source} ExclusiveArch: %{rust_arches} -BuildRequires: rust-packaging +BuildRequires: rust-packaging >= 21 %global _description %{expand: Multi-producer multi-consumer channels for message passing.} @@ -33,9 +33,12 @@ This package contains library source intended for building other packages which use the "%{crate}" crate. %files devel -%license LICENSE-APACHE LICENSE-MIT LICENSE-THIRD-PARTY -%doc CHANGELOG.md README.md -%{cargo_registry}/%{crate}-%{version_no_tilde}/ +%license %{crate_instdir}/LICENSE-APACHE +%license %{crate_instdir}/LICENSE-MIT +%license %{crate_instdir}/LICENSE-THIRD-PARTY +%doc %{crate_instdir}/CHANGELOG.md +%doc %{crate_instdir}/README.md +%{crate_instdir}/ %package -n %{name}+default-devel Summary: %{summary} @@ -47,7 +50,7 @@ This package contains library source intended for building other packages which use the "default" feature of the "%{crate}" crate. %files -n %{name}+default-devel -%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml +%ghost %{crate_instdir}/Cargo.toml %package -n %{name}+crossbeam-utils-devel Summary: %{summary} @@ -59,7 +62,7 @@ This package contains library source intended for building other packages which use the "crossbeam-utils" feature of the "%{crate}" crate. %files -n %{name}+crossbeam-utils-devel -%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml +%ghost %{crate_instdir}/Cargo.toml %package -n %{name}+std-devel Summary: %{summary} @@ -71,7 +74,7 @@ This package contains library source intended for building other packages which use the "std" feature of the "%{crate}" crate. %files -n %{name}+std-devel -%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml +%ghost %{crate_instdir}/Cargo.toml %prep %autosetup -n %{crate}-%{version_no_tilde} -p1 diff --git a/sources b/sources index 5147af9..88cde92 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crossbeam-channel-0.5.2.crate) = dc8dbfa40a7046ad82da3f33a20b29d216ff98180217489653e53aa46244089d1fd2490051d3f05b00333911e303e9efe76d16d4cbce8257be91f96554fb88d0 +SHA512 (crossbeam-channel-0.5.4.crate) = 39b17dbaefc15d7faafca4ae6b060665471d384956aca7439fc407ed2632bd458e473efb62b74629b42a5f3d237e13503d2084cac6f6b3f42b9e03aa1fde0982 From 2b76a32270b7f38237b4fdef20aeaf627ab0576c Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Fri, 15 Jul 2022 13:59:20 +0200 Subject: [PATCH 4/6] Update to version 0.5.5; Fixes RHBZ#2097836 --- .gitignore | 1 + rust-crossbeam-channel.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0579034..54907e2 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ /crossbeam-channel-0.5.1.crate /crossbeam-channel-0.5.2.crate /crossbeam-channel-0.5.4.crate +/crossbeam-channel-0.5.5.crate diff --git a/rust-crossbeam-channel.spec b/rust-crossbeam-channel.spec index 0154203..1a78a4f 100644 --- a/rust-crossbeam-channel.spec +++ b/rust-crossbeam-channel.spec @@ -5,7 +5,7 @@ %global crate crossbeam-channel Name: rust-%{crate} -Version: 0.5.4 +Version: 0.5.5 Release: %autorelease Summary: Multi-producer multi-consumer channels for message passing diff --git a/sources b/sources index 88cde92..e3d2b78 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crossbeam-channel-0.5.4.crate) = 39b17dbaefc15d7faafca4ae6b060665471d384956aca7439fc407ed2632bd458e473efb62b74629b42a5f3d237e13503d2084cac6f6b3f42b9e03aa1fde0982 +SHA512 (crossbeam-channel-0.5.5.crate) = c38bfc10bb1fcfaf067679165eb31b54b4ef05bf6e8e3465f856e3fc717d4f521b2eb98bd441a738eb7fac34472b7b9a030873c3595a267f19b26908713e2218 From d106e12159f00d699a499477c3c5f5b55f63d8d5 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Wed, 27 Jul 2022 22:04:55 +0200 Subject: [PATCH 6/6] Update to version 0.5.6; Fixes RHBZ#2110071 --- .gitignore | 1 + rust-crossbeam-channel.spec | 13 ++++++------- sources | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 54907e2..7d429d3 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ /crossbeam-channel-0.5.2.crate /crossbeam-channel-0.5.4.crate /crossbeam-channel-0.5.5.crate +/crossbeam-channel-0.5.6.crate diff --git a/rust-crossbeam-channel.spec b/rust-crossbeam-channel.spec index 1a78a4f..cc5e42e 100644 --- a/rust-crossbeam-channel.spec +++ b/rust-crossbeam-channel.spec @@ -1,16 +1,15 @@ -# Generated by rust2rpm 21 +# Generated by rust2rpm 22 %bcond_without check %global debug_package %{nil} %global crate crossbeam-channel -Name: rust-%{crate} -Version: 0.5.5 +Name: rust-crossbeam-channel +Version: 0.5.6 Release: %autorelease Summary: Multi-producer multi-consumer channels for message passing -# Upstream license specification: MIT OR Apache-2.0 -License: MIT or ASL 2.0 +License: MIT OR Apache-2.0 URL: https://crates.io/crates/crossbeam-channel Source: %{crates_source} @@ -91,8 +90,8 @@ use the "std" feature of the "%{crate}" crate. %if %{with check} %check -# * skip unreliable tests -# https://github.com/crossbeam-rs/crossbeam/pull/474#issuecomment-589250957 +# * skip unreliable tests: +# https://github.com/crossbeam-rs/crossbeam/pull/474#issuecomment-589250957 %cargo_test -- -- --skip fairness2 --skip select2::main %endif diff --git a/sources b/sources index e3d2b78..17b752f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (crossbeam-channel-0.5.5.crate) = c38bfc10bb1fcfaf067679165eb31b54b4ef05bf6e8e3465f856e3fc717d4f521b2eb98bd441a738eb7fac34472b7b9a030873c3595a267f19b26908713e2218 +SHA512 (crossbeam-channel-0.5.6.crate) = de6a42ffede95750a13e3b9af6ab26cbc498125860cd8e4d227c7361bd831e558254a48bdef5cf901585a915003071b0efa321f2011f282218c364780f62f44a