Update to version 1.1.8; Fixes RHBZ#2265199

epel10
Fabio Valentini 10 months ago
parent a271e4182c
commit 6c38c8d4ec
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

1
.gitignore vendored

@ -6,3 +6,4 @@
/thread_local-1.1.3.crate /thread_local-1.1.3.crate
/thread_local-1.1.4.crate /thread_local-1.1.4.crate
/thread_local-1.1.7.crate /thread_local-1.1.7.crate
/thread_local-1.1.8.crate

@ -1,3 +0,0 @@
# rust-thread_local
The rust-thread_local package

@ -1,11 +1,11 @@
# Generated by rust2rpm 24 # Generated by rust2rpm 26
%bcond_without check %bcond_without check
%global debug_package %{nil} %global debug_package %{nil}
%global crate thread_local %global crate thread_local
Name: rust-thread_local Name: rust-thread_local
Version: 1.1.7 Version: 1.1.8
Release: %autorelease Release: %autorelease
Summary: Per-object thread-local storage Summary: Per-object thread-local storage
@ -13,10 +13,10 @@ License: MIT OR Apache-2.0
URL: https://crates.io/crates/thread_local URL: https://crates.io/crates/thread_local
Source: %{crates_source} Source: %{crates_source}
# Manually created patch for downstream crate metadata changes # Manually created patch for downstream crate metadata changes
# * drop unused, benchmark-only criterion dependency to speed up builds # * drop unused, benchmark-only criterion dev-dependency
Patch: thread_local-fix-metadata.diff Patch: thread_local-fix-metadata.diff
BuildRequires: rust-packaging >= 21 BuildRequires: cargo-rpm-macros >= 24
%global _description %{expand: %global _description %{expand:
Per-object thread-local storage.} Per-object thread-local storage.}
@ -63,7 +63,7 @@ use the "nightly" feature of the "%{crate}" crate.
%ghost %{crate_instdir}/Cargo.toml %ghost %{crate_instdir}/Cargo.toml
%prep %prep
%autosetup -n %{crate}-%{version_no_tilde} -p1 %autosetup -n %{crate}-%{version} -p1
%cargo_prep %cargo_prep
%generate_buildrequires %generate_buildrequires

@ -0,0 +1,5 @@
[package]
cargo-toml-patch-comments = [
"drop unused, benchmark-only criterion dev-dependency",
]

@ -1 +1 @@
SHA512 (thread_local-1.1.7.crate) = 3772452c2a349fb564d29bb06e13c8ae64807db27c3ee217fa04fd0e9847e94adeea582b82ffc2d9116f31ff478eb088550caf1346c263de49b55fa17b431c31 SHA512 (thread_local-1.1.8.crate) = 6d7e3941f43c43ac091db5d1cf2a8a3892b54b0634d9200426eadeb82015566532f04b6040085dbdcb10580ac724b6ded8416931d764d795a5f923aced66c492

@ -1,6 +1,6 @@
--- thread_local-1.1.7/Cargo.toml 1970-01-01T00:00:01+00:00 --- thread_local-1.1.8/Cargo.toml 1970-01-01T00:00:01+00:00
+++ thread_local-1.1.7/Cargo.toml 2023-02-19T21:27:42.639663+00:00 +++ thread_local-1.1.8/Cargo.toml 2024-04-25T13:59:04.312560+00:00
@@ -25,19 +25,12 @@ @@ -26,18 +26,11 @@
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/Amanieu/thread_local-rs" repository = "https://github.com/Amanieu/thread_local-rs"
@ -15,8 +15,7 @@
version = "1.5.2" version = "1.5.2"
-[dev-dependencies.criterion] -[dev-dependencies.criterion]
-version = "0.4.0" -version = "0.5.1"
- -
[features] [features]
nightly = [] nightly = []

Loading…
Cancel
Save