update to version 0.3.59

epel9
Fabio Valentini 4 years ago
parent 594a5232d8
commit 253a3aadd9
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -21,3 +21,4 @@
/backtrace-0.3.50.crate /backtrace-0.3.50.crate
/backtrace-0.3.54.crate /backtrace-0.3.54.crate
/backtrace-0.3.55.crate /backtrace-0.3.55.crate
/backtrace-0.3.59.crate

@ -1,28 +1,28 @@
--- backtrace-0.3.55/Cargo.toml 2020-11-20T17:15:10+00:00 --- backtrace-0.3.59/Cargo.toml 1970-01-01T00:00:00+00:00
+++ backtrace-0.3.55/Cargo.toml 2020-12-02T20:23:15.074826+00:00 +++ backtrace-0.3.59/Cargo.toml 2021-05-08T18:09:11.692936+00:00
@@ -43,11 +43,6 @@ @@ -47,11 +47,6 @@
edition = "2018"
[[test]] [[test]]
name = "smoke" -name = "accuracy"
required-features = ["std"] -required-features = ["std"]
-edition = "2018" -edition = "2018"
- -
-[[test]] -[[test]]
-name = "accuracy" name = "concurrent-panics"
-required-features = ["std", "gimli-symbolize"] harness = false
edition = "2018" required-features = ["std"]
@@ -97,19 +92,9 @@
[[test]] version = "1.0.67"
@@ -102,19 +97,9 @@
version = "0.6"
[features] [features]
-coresymbolication = [] -coresymbolication = []
-dbghelp = [] -dbghelp = []
default = ["std", "gimli-symbolize"] default = ["std"]
-dladdr = [] -dladdr = []
gimli-symbolize = ["addr2line", "miniz_oxide", "object"] gimli-symbolize = []
-kernel32 = [] -kernel32 = []
libbacktrace = ["backtrace-sys/backtrace-sys"] libbacktrace = []
-libunwind = [] -libunwind = []
serialize-rustc = ["rustc-serialize"] serialize-rustc = ["rustc-serialize"]
serialize-serde = ["serde"] serialize-serde = ["serde"]

@ -1,12 +1,12 @@
# Generated by rust2rpm 16 # Generated by rust2rpm 17
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate backtrace %global crate backtrace
Name: rust-%{crate} Name: rust-%{crate}
Version: 0.3.55 Version: 0.3.59
Release: 2%{?dist} Release: 1%{?dist}
Summary: Library to acquire a stack trace (backtrace) at runtime in a Rust program Summary: Library to acquire a stack trace (backtrace) at runtime in a Rust program
# Upstream license specification: MIT/Apache-2.0 # Upstream license specification: MIT/Apache-2.0
@ -14,8 +14,8 @@ License: MIT or ASL 2.0
URL: https://crates.io/crates/backtrace URL: https://crates.io/crates/backtrace
Source: %{crates_source} Source: %{crates_source}
# Initial patched metadata # Initial patched metadata
# * No windows deps # * Drop windows-specific dependencies and features
# * No deprecated/internal features # * Drop deprecated/internal features
Patch0: backtrace-fix-metadata.diff Patch0: backtrace-fix-metadata.diff
ExclusiveArch: %{rust_arches} ExclusiveArch: %{rust_arches}
@ -57,30 +57,6 @@ which use "default" feature of "%{crate}" crate.
%files -n %{name}+default-devel %files -n %{name}+default-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+addr2line-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+addr2line-devel %{_description}
This package contains library source intended for building other packages
which use "addr2line" feature of "%{crate}" crate.
%files -n %{name}+addr2line-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+backtrace-sys-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+backtrace-sys-devel %{_description}
This package contains library source intended for building other packages
which use "backtrace-sys" feature of "%{crate}" crate.
%files -n %{name}+backtrace-sys-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+cpp_demangle-devel %package -n %{name}+cpp_demangle-devel
Summary: %{summary} Summary: %{summary}
BuildArch: noarch BuildArch: noarch
@ -117,30 +93,6 @@ which use "libbacktrace" feature of "%{crate}" crate.
%files -n %{name}+libbacktrace-devel %files -n %{name}+libbacktrace-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml %ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+miniz_oxide-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+miniz_oxide-devel %{_description}
This package contains library source intended for building other packages
which use "miniz_oxide" feature of "%{crate}" crate.
%files -n %{name}+miniz_oxide-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+object-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+object-devel %{_description}
This package contains library source intended for building other packages
which use "object" feature of "%{crate}" crate.
%files -n %{name}+object-devel
%ghost %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+rustc-serialize-devel %package -n %{name}+rustc-serialize-devel
Summary: %{summary} Summary: %{summary}
BuildArch: noarch BuildArch: noarch
@ -228,6 +180,9 @@ rm -r tests/accuracy/
%endif %endif
%changelog %changelog
* Sat May 08 2021 Fabio Valentini <decathorpe@gmail.com> - 0.3.59-1
- Update to version 0.3.59.
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.55-2 * Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.55-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild

@ -1 +1 @@
SHA512 (backtrace-0.3.55.crate) = c39ef484034fd10577d3fb3d1b57a2de246d882c0f401477dca29bf856b33fe0fbd9c3732dc926c3df0f29cfaeb2e2ee94f810e645ad21642e445b6f239f8e69 SHA512 (backtrace-0.3.59.crate) = 298ca370d46993d499a836c425c3fb5a9a4bdf2fccbb22a2f7fc174041d77cd6997abe5867da251a3e58fa1f06ecac8afa3c1bab436b290f785a8a7d8fb0056e

Loading…
Cancel
Save