Compare commits

..

17 Commits

Author SHA1 Message Date
Fabio Valentini deee95accb
Update to version 0.3.37; Fixes RHBZ#2330138
3 months ago
Benjamin A. Beasley cdaac5cbe7 Allow rstest 0.23 and rstest_reuse 0.7.0
3 months ago
Fedora Release Engineering b589e0ff83 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
7 months ago
Fabio Valentini 249e41c655
Update to version 0.3.36; Fixes RHBZ#2274289
10 months ago
Fabio Valentini 5eccb43161
Update to version 0.3.34; Fixes RHBZ#2262208
1 year ago
Fedora Release Engineering 5be01d1279 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
1 year ago
Fabio Valentini 624b9ecbe1
Update to version 0.3.31; Fixes RHBZ#2255215
1 year ago
Fabio Valentini 67bbdb57cf
Update to version 0.3.30; Fixes RHBZ#2244157
1 year ago
Fabio Valentini e56a7a380f
Update to version 0.3.29; Fixes RHBZ#2240432
1 year ago
Fabio Valentini c862d32048
Update to version 0.3.28; Fixes RHBZ#2227581
1 year ago
Fedora Release Engineering 1b9f736078 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
2 years ago
Fabio Valentini f994d324d9
Update to version 0.3.23; Fixes RHBZ#2221448
2 years ago
Fabio Valentini 895b274338
Update to version 0.3.22; Fixes RHBZ#2213341
2 years ago
Fabio Valentini 7a4b93a846
Update to version 0.3.21; Fixes RHBZ#2195840
2 years ago
Fabio Valentini 6f3f9ef55b
Update to version 0.3.20; Fixes RHBZ#2173244
2 years ago
Fabio Valentini b4f1c995ae
Update to version 0.3.19; Fixes RHBZ#2137245
2 years ago
Fedora Release Engineering b1a389bcf6 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
2 years ago

3
.gitignore vendored

@ -31,3 +31,6 @@
/time-0.3.29.crate
/time-0.3.30.crate
/time-0.3.31.crate
/time-0.3.34.crate
/time-0.3.36.crate
/time-0.3.37.crate

@ -1,11 +1,11 @@
# Generated by rust2rpm 25
%bcond_without check
# Generated by rust2rpm 27
%bcond check 1
%global debug_package %{nil}
%global crate time
Name: rust-time
Version: 0.3.31
Version: 0.3.37
Release: %autorelease
Summary: Date and time library
@ -17,6 +17,8 @@ Patch: time-fix-metadata-auto.diff
# Manually created patch for downstream crate metadata changes
# * remove WASM-specific features
# * remove references to tests that are not included in published crates
# * allow rstest 0.23.0 and rstest_reuse 0.7.0:
# https://github.com/time-rs/time/pull/716
Patch: time-fix-metadata.diff
BuildRequires: cargo-rpm-macros >= 24

@ -0,0 +1,7 @@
[package]
cargo-toml-patch-comments = [
"remove WASM-specific features",
"remove references to tests that are not included in published crates",
"allow rstest 0.23.0 and rstest_reuse 0.7.0: https://github.com/time-rs/time/pull/716",
]

@ -1 +1 @@
SHA512 (time-0.3.31.crate) = e1cf8197f1eb9556e6320268eea35ca4e5ef33020fae94b181cc21d97b56c074b87ea783804cd7b7ff072736e498f0890b7af8e16c5492a12a4597a4cf33c4fa
SHA512 (time-0.3.37.crate) = 6d007507f79c45a7408675b3223bbf83a133bbaf96429ae6a02b5db09acccf884bb8323dc6f3dd05e7ce87a78366a55bafa6c6ba31b04198a31026df4ef425e2

@ -1,6 +1,6 @@
--- time-0.3.31/Cargo.toml 1970-01-01T00:00:01+00:00
+++ time-0.3.31/Cargo.toml 2024-01-08T19:44:39.946955+00:00
@@ -169,18 +169,7 @@
--- time-0.3.37/Cargo.toml 1970-01-01T00:00:01+00:00
+++ time-0.3.37/Cargo.toml 2024-12-08T18:20:11.323118+00:00
@@ -170,18 +170,7 @@
"alloc",
"deranged/std",
]
@ -9,7 +9,7 @@
-[target."cfg(__ui_tests)".dev-dependencies.trybuild]
-version = "1.0.68"
-
-[target."cfg(all(target_family = \"wasm\", not(any(target_os = \"emscripten\", target_os = \"wasi\"))))".dependencies.js-sys]
-[target.'cfg(all(target_family = "wasm", not(any(target_os = "emscripten", target_os = "wasi"))))'.dependencies.js-sys]
-version = "0.3.58"
-optional = true
-
@ -18,9 +18,9 @@
-default-features = false
+wasm-bindgen = []
[target."cfg(target_family = \"unix\")".dependencies.libc]
[target.'cfg(target_family = "unix")'.dependencies.libc]
version = "0.2.98"
@@ -274,3 +263,4 @@
@@ -291,3 +280,4 @@
[lints.rustdoc]
private-doc-tests = "warn"
unescaped-backticks = "warn"

@ -1,26 +1,10 @@
--- time-0.3.31/Cargo.toml 1970-01-01T00:00:01+00:00
+++ time-0.3.31/Cargo.toml 2024-01-08T19:44:52.309999+00:00
@@ -53,15 +53,6 @@
[lib]
bench = false
-[[test]]
-name = "tests"
-path = "../tests/main.rs"
-
-[[bench]]
-name = "benchmarks"
-path = "../benchmarks/main.rs"
-harness = false
-
[dependencies.deranged]
version = "0.3.9"
features = ["powerfmt"]
@@ -169,7 +160,6 @@
--- time-0.3.37/Cargo.toml 1970-01-01T00:00:01+00:00
+++ time-0.3.37/Cargo.toml 2024-12-08T18:20:27.319203+00:00
@@ -170,7 +170,6 @@
"alloc",
"deranged/std",
]
-wasm-bindgen = []
[target."cfg(target_family = \"unix\")".dependencies.libc]
[target.'cfg(target_family = "unix")'.dependencies.libc]
version = "0.2.98"

Loading…
Cancel
Save