update to version 0.8.0

epel9
Fabio Valentini 4 years ago
parent 71dc57ae2f
commit ab3fa5a07c
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -6,3 +6,4 @@
/crossbeam-0.7.1.crate /crossbeam-0.7.1.crate
/crossbeam-0.7.2.crate /crossbeam-0.7.2.crate
/crossbeam-0.7.3.crate /crossbeam-0.7.3.crate
/crossbeam-0.8.0.crate

@ -1,15 +1,15 @@
# Generated by rust2rpm 10 # Generated by rust2rpm 15
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate crossbeam %global crate crossbeam
Name: rust-%{crate} Name: rust-%{crate}
Version: 0.7.3 Version: 0.8.0
Release: 3%{?dist} Release: 1%{?dist}
Summary: Tools for concurrent programming Summary: Tools for concurrent programming
# Upstream license specification: MIT/Apache-2.0 # Upstream license specification: MIT OR Apache-2.0
License: MIT or ASL 2.0 License: MIT or ASL 2.0
URL: https://crates.io/crates/crossbeam URL: https://crates.io/crates/crossbeam
Source: %{crates_source} Source: %{crates_source}
@ -38,7 +38,7 @@ which use "%{crate}" crate.
%files devel %files devel
%license LICENSE-APACHE LICENSE-MIT %license LICENSE-APACHE LICENSE-MIT
%doc README.md CHANGELOG.md %doc README.md CHANGELOG.md
%{cargo_registry}/%{crate}-%{version}/ %{cargo_registry}/%{crate}-%{version_no_tilde}/
%package -n %{name}+default-devel %package -n %{name}+default-devel
Summary: %{summary} Summary: %{summary}
@ -50,7 +50,7 @@ This package contains library source intended for building other packages
which use "default" feature of "%{crate}" crate. which use "default" feature of "%{crate}" crate.
%files -n %{name}+default-devel %files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+alloc-devel %package -n %{name}+alloc-devel
Summary: %{summary} Summary: %{summary}
@ -62,7 +62,7 @@ This package contains library source intended for building other packages
which use "alloc" feature of "%{crate}" crate. which use "alloc" feature of "%{crate}" crate.
%files -n %{name}+alloc-devel %files -n %{name}+alloc-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+crossbeam-channel-devel %package -n %{name}+crossbeam-channel-devel
Summary: %{summary} Summary: %{summary}
@ -74,7 +74,7 @@ This package contains library source intended for building other packages
which use "crossbeam-channel" feature of "%{crate}" crate. which use "crossbeam-channel" feature of "%{crate}" crate.
%files -n %{name}+crossbeam-channel-devel %files -n %{name}+crossbeam-channel-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+crossbeam-deque-devel %package -n %{name}+crossbeam-deque-devel
Summary: %{summary} Summary: %{summary}
@ -86,7 +86,19 @@ This package contains library source intended for building other packages
which use "crossbeam-deque" feature of "%{crate}" crate. which use "crossbeam-deque" feature of "%{crate}" crate.
%files -n %{name}+crossbeam-deque-devel %files -n %{name}+crossbeam-deque-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+crossbeam-epoch-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+crossbeam-epoch-devel %{_description}
This package contains library source intended for building other packages
which use "crossbeam-epoch" feature of "%{crate}" crate.
%files -n %{name}+crossbeam-epoch-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+crossbeam-queue-devel %package -n %{name}+crossbeam-queue-devel
Summary: %{summary} Summary: %{summary}
@ -98,7 +110,7 @@ This package contains library source intended for building other packages
which use "crossbeam-queue" feature of "%{crate}" crate. which use "crossbeam-queue" feature of "%{crate}" crate.
%files -n %{name}+crossbeam-queue-devel %files -n %{name}+crossbeam-queue-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+nightly-devel %package -n %{name}+nightly-devel
Summary: %{summary} Summary: %{summary}
@ -110,7 +122,7 @@ This package contains library source intended for building other packages
which use "nightly" feature of "%{crate}" crate. which use "nightly" feature of "%{crate}" crate.
%files -n %{name}+nightly-devel %files -n %{name}+nightly-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+std-devel %package -n %{name}+std-devel
Summary: %{summary} Summary: %{summary}
@ -122,7 +134,7 @@ This package contains library source intended for building other packages
which use "std" feature of "%{crate}" crate. which use "std" feature of "%{crate}" crate.
%files -n %{name}+std-devel %files -n %{name}+std-devel
%ghost %{cargo_registry}/%{crate}-%{version}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version_no_tilde} -p1 %autosetup -n %{crate}-%{version_no_tilde} -p1
@ -143,6 +155,10 @@ which use "std" feature of "%{crate}" crate.
%endif %endif
%changelog %changelog
* Thu Nov 12 2020 Fabio Valentini <decathorpe@gmail.com> - 0.8.0-1
- Update to version 0.8.0.
- Fixes RHBZ#1887296
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.3-3 * Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild

@ -1 +1 @@
SHA512 (crossbeam-0.7.3.crate) = 9b06c2379364827df715a1cf6a842d6d793f53082e21eb6daeea0ac03dbc2e6a7902d0cbd39dc8d81d82b02641925f4a70b443d65a413f8e497eb3a9be55a8d0 SHA512 (crossbeam-0.8.0.crate) = 8846d29074f5e2a601e1bb741db9396b16270689f108e0b1621d29d15e774898e5f8d159e9af990fbba2cb414a13948a6236254353d4c594c38bf9cbfd2032d7

Loading…
Cancel
Save