public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rust-uuid] epel10: Update to version 1.23.5; Fixes RHBZ#2499539
@ 2026-07-13 10:46 Fabio Valentini
  0 siblings, 0 replies; only message in thread
From: Fabio Valentini @ 2026-07-13 10:46 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/rust-uuid
Branch : epel10
Commit : a31d2ec44de0cf12aba7c60d89e925db222be128
Author : Fabio Valentini <decathorpe@gmail.com>
Date   : 2026-07-13T12:15:18+02:00
Stats  : +21/-8 in 6 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-uuid/c/a31d2ec44de0cf12aba7c60d89e925db222be128?branch=epel10

Log:
Update to version 1.23.5; Fixes RHBZ#2499539

---
diff --git a/.gitignore b/.gitignore
index ce0fb65..8d16538 100644
--- a/.gitignore
+++ b/.gitignore
@@ -42,3 +42,4 @@
 /uuid-1.23.2.crate
 /uuid-1.23.3.crate
 /uuid-1.23.4.crate
+/uuid-1.23.5.crate

diff --git a/rust-uuid.spec b/rust-uuid.spec
index ca8efb6..378673e 100644
--- a/rust-uuid.spec
+++ b/rust-uuid.spec
@@ -5,7 +5,7 @@
 %global crate uuid
 
 Name:           rust-uuid
-Version:        1.23.4
+Version:        1.23.5
 Release:        %autorelease
 Summary:        Library to generate and parse UUIDs
 
@@ -19,6 +19,7 @@ Patch:          uuid-fix-metadata-auto.diff
 # * drop unused optional dependency for zerocopy support
 # * drop WASM-specific features and dependencies
 # * drop macro-diagnostics feature - it is now deprecated and a noop
+# * drop unused, benchmark-only gungraun dev-dependency
 Patch:          uuid-fix-metadata.diff
 
 BuildRequires:  cargo-rpm-macros >= 24

diff --git a/rust2rpm.toml b/rust2rpm.toml
index 94dd4a5..3258d44 100644
--- a/rust2rpm.toml
+++ b/rust2rpm.toml
@@ -4,5 +4,6 @@ cargo-toml-patch-comments = [
     "drop unused optional dependency for zerocopy support",
     "drop WASM-specific features and dependencies",
     "drop macro-diagnostics feature - it is now deprecated and a noop",
+    "drop unused, benchmark-only gungraun dev-dependency",
 ]
 

diff --git a/sources b/sources
index 94f7cff..9be7c0e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (uuid-1.23.4.crate) = 2f97b4f896d1b7a7c90fbf529e51b22209fd3079cdbcfaf2ad6d3f074128815721cfef51b1d9d639f759eb6035d00f44d543c360588685d3c8d6066e4b8afb86
+SHA512 (uuid-1.23.5.crate) = 8329b426f450cc654afe99af9b09153f3502c17ace97129731535afa093caeb9b396ddac90e3fea349cd4a150f9ccbd7b7a6aac5efd2d3035ccbaebd019d504f

diff --git a/uuid-fix-metadata-auto.diff b/uuid-fix-metadata-auto.diff
index 29d22c6..57e5c51 100644
--- a/uuid-fix-metadata-auto.diff
+++ b/uuid-fix-metadata-auto.diff
@@ -1,5 +1,5 @@
---- uuid-1.23.4/Cargo.toml	2006-07-24T01:21:28+00:00
-+++ uuid-1.23.4/Cargo.toml	2026-06-25T07:33:48.095505+00:00
+--- uuid-1.23.5/Cargo.toml	2006-07-24T01:21:28+00:00
++++ uuid-1.23.5/Cargo.toml	2026-07-13T10:12:46.852601+00:00
 @@ -106,8 +106,6 @@
      "dep:rand",
  ]
@@ -35,7 +35,7 @@
  version = "1.0.52"
  
 -[target.'cfg(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none")))'.dependencies.uuid-rng-internal-lib]
--version = "1.23.4"
+-version = "1.23.5"
 -optional = true
 -package = "uuid-rng-internal"
 -
@@ -58,7 +58,7 @@
  [target.'cfg(not(all(target_arch = "wasm32", any(target_os = "unknown", target_os = "none"))))'.dependencies.getrandom]
  version = "0.4"
  optional = true
-@@ -241,3 +212,4 @@
+@@ -244,3 +215,4 @@
  level = "allow"
  priority = 0
  check-cfg = ["cfg(uuid_unstable)"]

diff --git a/uuid-fix-metadata.diff b/uuid-fix-metadata.diff
index f97ac8a..99a6315 100644
--- a/uuid-fix-metadata.diff
+++ b/uuid-fix-metadata.diff
@@ -1,5 +1,5 @@
---- uuid-1.23.4/Cargo.toml	2006-07-24T01:21:28+00:00
-+++ uuid-1.23.4/Cargo.toml	2026-06-25T07:33:48.097118+00:00
+--- uuid-1.23.5/Cargo.toml	2006-07-24T01:21:28+00:00
++++ uuid-1.23.5/Cargo.toml	2026-07-13T10:12:50.052330+00:00
 @@ -63,7 +63,6 @@
      "serde",
      "arbitrary",
@@ -56,3 +56,13 @@
  optional = true
  
  [dev-dependencies.rustversion]
+@@ -208,9 +185,6 @@
+ version = "0.10"
+ optional = true
+ 
+-[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies.gungraun]
+-version = "=0.19.2"
+-
+ [lints.rust.unexpected_cfgs]
+ level = "allow"
+ priority = 0

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-13 10:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-13 10:46 [rpms/rust-uuid] epel10: Update to version 1.23.5; Fixes RHBZ#2499539 Fabio Valentini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox