Update to version 0.1.23; Fixes RHBZ#2062041

epel9
Fabio Valentini 3 years ago
parent 1b19440d63
commit db7dc2bed5
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -6,3 +6,4 @@
/tracing-core-0.1.20.crate /tracing-core-0.1.20.crate
/tracing-core-0.1.21.crate /tracing-core-0.1.21.crate
/tracing-core-0.1.22.crate /tracing-core-0.1.22.crate
/tracing-core-0.1.23.crate

@ -1,11 +1,11 @@
# Generated by rust2rpm 20 # Generated by rust2rpm 21
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate tracing-core %global crate tracing-core
Name: rust-%{crate} Name: rust-%{crate}
Version: 0.1.22 Version: 0.1.23
Release: %autorelease Release: %autorelease
Summary: Core primitives for application-level tracing Summary: Core primitives for application-level tracing
@ -19,7 +19,7 @@ Patch0: tracing-core-fix-metadata.diff
ExclusiveArch: %{rust_arches} ExclusiveArch: %{rust_arches}
BuildRequires: rust-packaging BuildRequires: rust-packaging >= 21
%global _description %{expand: %global _description %{expand:
Core primitives for application-level tracing.} Core primitives for application-level tracing.}
@ -36,11 +36,12 @@ This package contains library source intended for building other packages which
use the "%{crate}" crate. use the "%{crate}" crate.
%files devel %files devel
%license LICENSE LICENSE-lazy_static LICENSE-spin %license %{crate_instdir}/LICENSE
%doc CHANGELOG.md README.md %license %{crate_instdir}/src/lazy_static/LICENSE
%{cargo_registry}/%{crate}-%{version_no_tilde}/ %license %{crate_instdir}/src/spin/LICENSE
# exclude LICENSE file copies from -devel package %doc %{crate_instdir}/CHANGELOG.md
%exclude %{cargo_registry}/%{crate}-%{version_no_tilde}/LICENSE-* %doc %{crate_instdir}/README.md
%{crate_instdir}/
%package -n %{name}+default-devel %package -n %{name}+default-devel
Summary: %{summary} Summary: %{summary}
@ -52,7 +53,7 @@ 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 %files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+lazy_static-devel %package -n %{name}+lazy_static-devel
Summary: %{summary} Summary: %{summary}
@ -64,7 +65,7 @@ This package contains library source intended for building other packages which
use the "lazy_static" feature of the "%{crate}" crate. use the "lazy_static" feature of the "%{crate}" crate.
%files -n %{name}+lazy_static-devel %files -n %{name}+lazy_static-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%package -n %{name}+std-devel %package -n %{name}+std-devel
Summary: %{summary} Summary: %{summary}
@ -76,15 +77,11 @@ 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 %files -n %{name}+std-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version_no_tilde} -p1 %autosetup -n %{crate}-%{version_no_tilde} -p1
%cargo_prep %cargo_prep
# copy LICENSE files for bundled sources:
# they are also MIT, but with different copyright statements
cp -p src/lazy_static/LICENSE LICENSE-lazy_static
cp -p src/spin/LICENSE LICENSE-spin
%generate_buildrequires %generate_buildrequires
%cargo_generate_buildrequires %cargo_generate_buildrequires

@ -1 +1 @@
SHA512 (tracing-core-0.1.22.crate) = 500e74a0a3a54599bb4614b6377d9d721635dd4ce0119697fb234725db8b60e6aecbb850d7dd311af4796e47b060832fe3be39324d484a039e9b8a08d36c3ab2 SHA512 (tracing-core-0.1.23.crate) = c01d58dd814d0d9d71a631284c6e8fd5881e8728d79d3715f246530d474900f3b0d396b88f9358f3521e5b171ad577003ae5dd3994d66fa3e016970f6df5184f

@ -1,5 +1,5 @@
--- tracing-core-0.1.22/Cargo.toml 1970-01-01T00:00:01+00:00 --- tracing-core-0.1.23/Cargo.toml 1970-01-01T00:00:01+00:00
+++ tracing-core-0.1.22/Cargo.toml 2022-02-05T23:21:14.801028+00:00 +++ tracing-core-0.1.23/Cargo.toml 2022-03-31T09:08:38.257281+00:00
@@ -31,11 +31,7 @@ @@ -31,11 +31,7 @@
optional = true optional = true

Loading…
Cancel
Save