public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Michel Lind <salimma@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/rust-interprocess] rawhide: Update to version 2.4.3; Resolves RHBZ#2436926
Date: Thu, 03 Sep 2026 19:41:44 GMT	[thread overview]
Message-ID: <178846450461.1.4505978368394492770.rpms-rust-interprocess-a07f66a31a66@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/rust-interprocess
            Branch : rawhide
            Commit : a07f66a31a6681a3afb6a7a7f68642c66fc3d6e3
            Author : Michel Lind <salimma@fedoraproject.org>
            Date   : 2026-09-03T19:24:15+01:00
            Stats  : +40/-16 in 6 file(s)
            URL    : https://src.fedoraproject.org/rpms/rust-interprocess/c/a07f66a31a6681a3afb6a7a7f68642c66fc3d6e3?branch=rawhide

            Log:
            Update to version 2.4.3; Resolves RHBZ#2436926

Signed-off-by: Michel Lind <salimma@fedoraproject.org>

---
diff --git a/.gitignore b/.gitignore
index de88ca5..b0a6270 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /interprocess-2.2.1.crate
 /interprocess-2.2.2.crate
 /interprocess-2.2.3.crate
+/interprocess-2.4.3.crate

diff --git a/interprocess-fix-metadata-auto.diff b/interprocess-fix-metadata-auto.diff
index 45a8b04..e5295a3 100644
--- a/interprocess-fix-metadata-auto.diff
+++ b/interprocess-fix-metadata-auto.diff
@@ -1,6 +1,6 @@
---- interprocess-2.2.3/Cargo.toml	1970-01-01T00:00:01+00:00
-+++ interprocess-2.2.3/Cargo.toml	2025-04-29T14:32:17.337758+00:00
-@@ -150,39 +150,6 @@
+--- interprocess-2.4.3/Cargo.toml	2006-07-24T01:21:28+00:00
++++ interprocess-2.4.3/Cargo.toml	2026-09-03T18:17:17.240846+00:00
+@@ -158,38 +158,6 @@
  version = "0.2.137"
  features = ["extra_traits"]
  
@@ -11,9 +11,8 @@
 -version = "1.36.0"
 -features = [
 -    "sync",
--    "rt-multi-thread",
+-    "rt",
 -    "fs",
--    "net",
 -    "time",
 -    "io-util",
 -]
@@ -23,7 +22,7 @@
 -version = "1.0.2"
 -
 -[target."cfg(windows)".dependencies.windows-sys]
--version = "0.52.0"
+-version = "0.61.0"
 -features = [
 -    "Win32_Foundation",
 -    "Win32_Security",
@@ -38,9 +37,9 @@
 -]
 -
  [lints.clippy]
- as_conversions = "deny"
- dbg_macro = "warn"
-@@ -198,3 +165,4 @@
+ cast_lossless = "allow"
+ cast_possible_truncation = "warn"
+@@ -212,3 +180,4 @@
  [lints.rust.rust_2018_idioms]
  level = "deny"
  priority = -1

diff --git a/interprocess-fix-metadata.diff b/interprocess-fix-metadata.diff
new file mode 100644
index 0000000..f019050
--- /dev/null
+++ b/interprocess-fix-metadata.diff
@@ -0,0 +1,10 @@
+--- interprocess-2.4.3/Cargo.toml	2006-07-24T01:21:28+00:00
++++ interprocess-2.4.3/Cargo.toml	2026-09-03T18:17:17.244105+00:00
+@@ -21,6 +21,7 @@
+     "/.gitignore",
+     "/.editorconfig",
+     "/Cargo.lock",
++    "/checks-and-tests.py",
+ ]
+ autolib = false
+ autobins = false

diff --git a/rust-interprocess.spec b/rust-interprocess.spec
index 467c546..05c36f5 100644
--- a/rust-interprocess.spec
+++ b/rust-interprocess.spec
@@ -1,21 +1,28 @@
-# Generated by rust2rpm 27
+# Generated by rust2rpm 28
 %bcond check 1
 %global debug_package %{nil}
 
+# prevent executables from being installed
+%global cargo_install_bin 0
+
 %global crate interprocess
 
 Name:           rust-interprocess
-Version:        2.2.3
+Version:        2.4.3
 Release:        %autorelease
 Summary:        Interprocess communication toolkit
 
-License:        MIT OR Apache-2.0
+License:        0BSD OR Apache-2.0
 URL:            https://crates.io/crates/interprocess
 Source:         %{crates_source}
 # Automatically generated patch to strip dependencies and normalize metadata
 Patch:          interprocess-fix-metadata-auto.diff
+# Manually created patch for downstream crate metadata changes
+# * exclude unneeded Python script
+# * https://github.com/kotauskas/interprocess/pull/98
+Patch:          interprocess-fix-metadata.diff
 
-BuildRequires:  cargo-rpm-macros >= 24
+BuildRequires:  cargo-rpm-macros >= 26
 
 %global _description %{expand:
 Interprocess communication toolkit.}
@@ -32,8 +39,8 @@ This package contains library source intended for building other packages which
 use the "%{crate}" crate.
 
 %files          devel
-%license %{crate_instdir}/LICENSE-APACHE
-%license %{crate_instdir}/LICENSE-MIT
+%license %{crate_instdir}/LICENSE-0BSD.txt
+%license %{crate_instdir}/LICENSE-APACHE.txt
 %doc %{crate_instdir}/README.md
 %{crate_instdir}/
 

diff --git a/rust2rpm.toml b/rust2rpm.toml
index c951647..c5845b4 100644
--- a/rust2rpm.toml
+++ b/rust2rpm.toml
@@ -2,3 +2,10 @@
 # automatic summary chops off first word
 summary = "Interprocess communication toolkit"
 
+# we don't need inspect-platform
+cargo-install-bin = false
+
+cargo-toml-patch-comments = [
+  "exclude unneeded Python script",
+  "https://github.com/kotauskas/interprocess/pull/98",
+]

diff --git a/sources b/sources
index e56c845..9840fda 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (interprocess-2.2.3.crate) = 42e044bc7f5f4e9c2cfdb5b7204887bd5f1276178631c79126328c6a679cfeb1f74eab16e7486a41797b681035fd2b2b561805be2b81a4ec0811245b272eb4c7
+SHA512 (interprocess-2.4.3.crate) = 364bf3fb77b12a087f440790546d6b95a2fe5cbdb3975920eccb8d743c69ebc54f6decff0455492f59a8db08c385f167a7fd9ca747e2004b75d9f5526c16979e

                 reply	other threads:[~2026-09-03 19:41 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178846450461.1.4505978368394492770.rpms-rust-interprocess-a07f66a31a66@fedoraproject.org \
    --to=salimma@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox