Update to version 3.3.0; Fixes RHBZ#2038600

epel9
Fabio Valentini 3 years ago
parent b74f423801
commit 641e1a6e54
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -9,3 +9,4 @@
/tempfile-3.0.9.crate /tempfile-3.0.9.crate
/tempfile-3.1.0.crate /tempfile-3.1.0.crate
/tempfile-3.2.0.crate /tempfile-3.2.0.crate
/tempfile-3.3.0.crate

@ -1,11 +1,11 @@
# Generated by rust2rpm 19 # Generated by rust2rpm 20
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate tempfile %global crate tempfile
Name: rust-%{crate} Name: rust-%{crate}
Version: 3.2.0 Version: 3.3.0
Release: %autorelease Release: %autorelease
Summary: Library for managing temporary files and directories Summary: Library for managing temporary files and directories
@ -20,9 +20,6 @@ Source: %{crates_source}
Patch0: tempfile-fix-metadata.diff Patch0: tempfile-fix-metadata.diff
ExclusiveArch: %{rust_arches} ExclusiveArch: %{rust_arches}
%if %{__cargo_skip_build}
BuildArch: noarch
%endif
BuildRequires: rust-packaging BuildRequires: rust-packaging
@ -38,7 +35,7 @@ BuildArch: noarch
%description devel %{_description} %description devel %{_description}
This package contains library source intended for building other packages which This package contains library source intended for building other packages which
use "%{crate}" crate. use the "%{crate}" crate.
%files devel %files devel
%license LICENSE-APACHE LICENSE-MIT %license LICENSE-APACHE LICENSE-MIT
@ -52,11 +49,23 @@ BuildArch: noarch
%description -n %{name}+default-devel %{_description} %description -n %{name}+default-devel %{_description}
This package contains library source intended for building other packages which 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 %{cargo_registry}/%{crate}-%{version_no_tilde}/Cargo.toml
%package -n %{name}+nightly-devel
Summary: %{summary}
BuildArch: noarch
%description -n %{name}+nightly-devel %{_description}
This package contains library source intended for building other packages which
use the "nightly" feature of the "%{crate}" crate.
%files -n %{name}+nightly-devel
%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
%cargo_prep %cargo_prep

@ -1 +1 @@
SHA512 (tempfile-3.2.0.crate) = 56d1c5af7cb6863f9eac990354126979534aae7bf298bc8b1c918c7317ce2ba31f53089aaa1ecf8baa4a39d4111d74f4450be82b509b3c2aa0428880029e663a SHA512 (tempfile-3.3.0.crate) = ba6faafb2dd56d694efe424752099a2efb50316afc0a4db9fdb7620ae3f1a31dfbb2a7b41724878cb977fa11f7568a406bd3b6a4f7cfc0b88b86b2cc616b953e

@ -1,15 +1,20 @@
--- tempfile-3.2.0/Cargo.toml 1970-01-01T00:00:00+00:00 --- tempfile-3.3.0/Cargo.toml 1970-01-01T00:00:01+00:00
+++ tempfile-3.2.0/Cargo.toml 2021-05-19T13:25:52.185573+00:00 +++ tempfile-3.3.0/Cargo.toml 2022-02-09T21:58:33.159873+00:00
@@ -29,11 +29,6 @@ @@ -28,7 +28,7 @@
version = "0.8" version = "1.6.0"
[dependencies.remove_dir_all] [dependencies.remove_dir_all]
-version = "0.5" -version = "0.5"
-[target."cfg(target_os = \"redox\")".dependencies.redox_syscall]
-version = "0.2"
+version = "0.7" +version = "0.7"
[target."cfg(unix)".dependencies.libc] [dev-dependencies.doc-comment]
version = "0.3"
@@ -36,8 +36,3 @@
nightly = []
[target."cfg(any(unix, target_os = \"wasi\"))".dependencies.libc]
version = "0.2.27" version = "0.2.27"
-[target."cfg(target_os = \"redox\")".dependencies.redox_syscall]
-version = "0.2.9"
-[target."cfg(windows)".dependencies.winapi] -[target."cfg(windows)".dependencies.winapi]
-version = "0.3" -version = "0.3"
-features = ["fileapi", "handleapi", "winbase"] -features = ["fileapi", "handleapi", "winbase"]

Loading…
Cancel
Save