public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rust-zip] rawhide: Update to version 8.4.0
@ 2026-06-03 12:24 Benjamin A. Beasley
  0 siblings, 0 replies; only message in thread
From: Benjamin A. Beasley @ 2026-06-03 12:24 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/rust-zip
Branch : rawhide
Commit : 3cf09c7239122428e6cdb6a8e6f66069c07fc128
Author : Benjamin A. Beasley <code@musicinmybrain.net>
Date   : 2026-05-20T22:36:30+01:00
Stats  : +29/-22 in 6 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-zip/c/3cf09c7239122428e6cdb6a8e6f66069c07fc128?branch=rawhide

Log:
Update to version 8.4.0

---
diff --git a/.gitignore b/.gitignore
index e1c6be4..0544be9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -50,3 +50,5 @@
 /zip2-8.3.0-filtered.tar.gz
 /zip-8.3.1.crate
 /zip2-8.3.1-filtered.tar.gz
+/zip-8.4.0.crate
+/zip2-8.4.0-filtered.tar.gz

diff --git a/0001-Downstream-patch-out-tests-that-would-need-omitted-t.patch b/0001-Downstream-patch-out-tests-that-would-need-omitted-t.patch
index 18140b1..f229e58 100644
--- a/0001-Downstream-patch-out-tests-that-would-need-omitted-t.patch
+++ b/0001-Downstream-patch-out-tests-that-would-need-omitted-t.patch
@@ -1,35 +1,40 @@
-From 2cd4be9463b86ed5e0a4a17f052ac2400312060c Mon Sep 17 00:00:00 2001
+From 94cc062574f07952bbcf73d6600c421ef1d70b55 Mon Sep 17 00:00:00 2001
 From: "Benjamin A. Beasley" <code@musicinmybrain.net>
-Date: Wed, 20 May 2026 22:07:30 +0100
+Date: Wed, 20 May 2026 22:00:28 +0100
 Subject: [PATCH] Downstream: patch out tests that would need omitted test
  files
 
 ---
- src/read.rs | 4 ++++
- 1 file changed, 4 insertions(+)
+ src/read.rs             | 2 ++
+ src/read/zip_archive.rs | 2 ++
+ 2 files changed, 4 insertions(+)
 
 diff --git a/src/read.rs b/src/read.rs
-index 306c07fd..213a8ec7 100644
+index c081f3c0..94eee475 100644
 --- a/src/read.rs
 +++ b/src/read.rs
-@@ -2421,6 +2421,8 @@ mod tests {
+@@ -1270,6 +1270,8 @@ mod tests {
+         Ok(())
+     }
  
++    // Downstream patch: we do not include the test file needed for this test.
++    #[cfg(false)]
      #[test]
      #[cfg(feature = "deflate-flate2")]
-+    // Downstream patch: we do not include the test file needed for this test.
-+    #[cfg(any())]
      fn test_utf8_extra_field() {
-         use super::ZipArchive;
+diff --git a/src/read/zip_archive.rs b/src/read/zip_archive.rs
+index 3aed59a9..024e1bf8 100644
+--- a/src/read/zip_archive.rs
++++ b/src/read/zip_archive.rs
+@@ -857,6 +857,8 @@ mod tests {
+         assert_eq!(file.read(&mut decompressed).unwrap(), 12);
+     }
  
-@@ -2530,6 +2532,8 @@ mod tests {
++    // Downstream patch: we do not include the test file needed for this test.
++    #[cfg(false)]
      /// Only on little endian because we cannot use fs with miri CI
      #[cfg(all(target_endian = "little", not(miri)))]
      #[test]
-+    // Downstream patch: we do not include the test file needed for this test.
-+    #[cfg(any())]
-     fn test_central_directory_not_at_end() -> ZipResult<()> {
-         use super::ZipArchive;
- 
 -- 
 2.54.0
 

diff --git a/rust-zip.spec b/rust-zip.spec
index 2b10d62..9e2b368 100644
--- a/rust-zip.spec
+++ b/rust-zip.spec
@@ -5,7 +5,7 @@
 %global crate zip
 
 Name:           rust-zip
-Version:        8.3.1
+Version:        8.4.0
 Release:        %autorelease
 Summary:        Library to support the reading and writing of zip files
 

diff --git a/sources b/sources
index 28a8d12..948e9f2 100644
--- a/sources
+++ b/sources
@@ -1,2 +1,2 @@
-SHA512 (zip-8.3.1.crate) = e29e9e62dd02263ecffcbabfcfc9b81482894008e7b31c135f6c245907eeefc5e306f86bf8a56fb957f7d9a452beb04739e022117758bf6b63656ebfaa5332ee
-SHA512 (zip2-8.3.1-filtered.tar.gz) = 3b27a28a80938aeb0ad5dbfd83b0e258dad43bf145b0d3f54016eeb054df6bcecfd01918ef9b95c93e1ef03a892a44749107bc2ac1b94abe9e7861322b6cc7b9
+SHA512 (zip-8.4.0.crate) = a9c7e58f09f1356edf072c5d2d34f9d7474563dea47611d7145ece43f04a6c1d98b1c6f7e646ba468c4c85a64575d15c6b086efafaf337710b0125097249ae8b
+SHA512 (zip2-8.4.0-filtered.tar.gz) = 26596e37a39ae6de9dc19cc8debd560e5c584926f6e4329ff5ac1e8a909e899edc2e842d1f07dcd4eabf641f150ccfbf57670d516890e80ac3ec4b212977831c

diff --git a/zip-fix-metadata-auto.diff b/zip-fix-metadata-auto.diff
index 2935683..6e0a58e 100644
--- a/zip-fix-metadata-auto.diff
+++ b/zip-fix-metadata-auto.diff
@@ -1,5 +1,5 @@
---- zip-8.3.1/Cargo.toml	2006-07-24T01:21:28+00:00
-+++ zip-8.3.1/Cargo.toml	2026-05-20T21:09:58.892328+00:00
+--- zip-8.4.0/Cargo.toml	2006-07-24T01:21:28+00:00
++++ zip-8.4.0/Cargo.toml	2026-05-20T21:12:49.254157+00:00
 @@ -275,25 +275,3 @@
  version = "0.4"
  default-features = false

diff --git a/zip-fix-metadata.diff b/zip-fix-metadata.diff
index 3850806..cf91523 100644
--- a/zip-fix-metadata.diff
+++ b/zip-fix-metadata.diff
@@ -1,5 +1,5 @@
---- zip-8.3.1/Cargo.toml	2006-07-24T01:21:28+00:00
-+++ zip-8.3.1/Cargo.toml	2026-05-20T21:09:58.893633+00:00
+--- zip-8.4.0/Cargo.toml	2006-07-24T01:21:28+00:00
++++ zip-8.4.0/Cargo.toml	2026-05-20T21:12:49.255440+00:00
 @@ -108,10 +108,6 @@
      "deflate-flate2",
      "flate2/zlib-ng",

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

only message in thread, other threads:[~2026-06-03 12:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-03 12:24 [rpms/rust-zip] rawhide: Update to version 8.4.0 Benjamin A. Beasley

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