public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Fabio Valentini <decathorpe@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/rust-pyo3-ffi] f44: Update to version 0.29.0; Fixes RHBZ#2488088
Date: Fri, 19 Jun 2026 16:26:30 GMT	[thread overview]
Message-ID: <178188639080.1.12275768852082830833.rpms-rust-pyo3-ffi-33a359d4f0e2@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/rust-pyo3-ffi
Branch : f44
Commit : 33a359d4f0e2b027cd21e201f073d7286c06ab05
Author : Fabio Valentini <decathorpe@gmail.com>
Date   : 2026-06-19T15:33:22+02:00
Stats  : +36/-11 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/rust-pyo3-ffi/c/33a359d4f0e2b027cd21e201f073d7286c06ab05?branch=f44

Log:
Update to version 0.29.0; Fixes RHBZ#2488088

---
diff --git a/.gitignore b/.gitignore
index 82eb91f..eb4a6a7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -28,3 +28,4 @@
 /pyo3-ffi-0.27.1.crate
 /pyo3-ffi-0.27.2.crate
 /pyo3-ffi-0.28.3.crate
+/pyo3-ffi-0.29.0.crate

diff --git a/Allow-unsupported-Python-versions-in-RPM-builds.patch b/Allow-unsupported-Python-versions-in-RPM-builds.patch
index 739b254..7e2e9c0 100644
--- a/Allow-unsupported-Python-versions-in-RPM-builds.patch
+++ b/Allow-unsupported-Python-versions-in-RPM-builds.patch
@@ -1,4 +1,4 @@
-From af6273b4fbc1c9439a9b1e69761838479ba4bd71 Mon Sep 17 00:00:00 2001
+From 4d514c8ad63974137fb401245b4875b7ce85593f Mon Sep 17 00:00:00 2001
 From: Karolina Surma <ksurma@redhat.com>
 Date: Thu, 18 Apr 2024 09:48:04 +0200
 Subject: [PATCH] Allow unsupported Python versions in RPM builds
@@ -13,10 +13,10 @@ hence we explicitly allow to skip version check when building RPMs.
  1 file changed, 5 insertions(+)
 
 diff --git a/build.rs b/build.rs
-index 286767d..ef666d7 100644
+index c978ad0..289f20c 100644
 --- a/build.rs
 +++ b/build.rs
-@@ -36,6 +36,11 @@ fn ensure_python_version(interpreter_config: &InterpreterConfig) -> Result<()> {
+@@ -55,6 +55,11 @@ fn ensure_python_version(interpreter_config: &InterpreterConfig) -> Result<()> {
          return Ok(());
      }
  
@@ -25,9 +25,9 @@ index 286767d..ef666d7 100644
 +        return Ok(());
 +    }
 +
-     match interpreter_config.implementation {
+     match interpreter_config.target_abi().implementation() {
          PythonImplementation::CPython => {
              let versions = SUPPORTED_VERSIONS_CPYTHON;
 -- 
-2.44.0
+2.54.0
 

diff --git a/rust-pyo3-ffi.spec b/rust-pyo3-ffi.spec
index bb6de7c..13ada21 100644
--- a/rust-pyo3-ffi.spec
+++ b/rust-pyo3-ffi.spec
@@ -5,7 +5,7 @@
 %global crate pyo3-ffi
 
 Name:           rust-pyo3-ffi
-Version:        0.28.3
+Version:        0.29.0
 Release:        %autorelease
 Summary:        Python-API bindings for the PyO3 ecosystem
 
@@ -127,16 +127,16 @@ use the "abi3-py314" feature of the "%{crate}" crate.
 %files       -n %{name}+abi3-py314-devel
 %ghost %{crate_instdir}/Cargo.toml
 
-%package     -n %{name}+abi3-py37-devel
+%package     -n %{name}+abi3-py315-devel
 Summary:        %{summary}
 BuildArch:      noarch
 
-%description -n %{name}+abi3-py37-devel %{_description}
+%description -n %{name}+abi3-py315-devel %{_description}
 
 This package contains library source intended for building other packages which
-use the "abi3-py37" feature of the "%{crate}" crate.
+use the "abi3-py315" feature of the "%{crate}" crate.
 
-%files       -n %{name}+abi3-py37-devel
+%files       -n %{name}+abi3-py315-devel
 %ghost %{crate_instdir}/Cargo.toml
 
 %package     -n %{name}+abi3-py38-devel
@@ -163,6 +163,30 @@ use the "abi3-py39" feature of the "%{crate}" crate.
 %files       -n %{name}+abi3-py39-devel
 %ghost %{crate_instdir}/Cargo.toml
 
+%package     -n %{name}+abi3t-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+abi3t-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "abi3t" feature of the "%{crate}" crate.
+
+%files       -n %{name}+abi3t-devel
+%ghost %{crate_instdir}/Cargo.toml
+
+%package     -n %{name}+abi3t-py315-devel
+Summary:        %{summary}
+BuildArch:      noarch
+
+%description -n %{name}+abi3t-py315-devel %{_description}
+
+This package contains library source intended for building other packages which
+use the "abi3t-py315" feature of the "%{crate}" crate.
+
+%files       -n %{name}+abi3t-py315-devel
+%ghost %{crate_instdir}/Cargo.toml
+
 %package     -n %{name}+extension-module-devel
 Summary:        %{summary}
 BuildArch:      noarch

diff --git a/sources b/sources
index fb636dd..41be27b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (pyo3-ffi-0.28.3.crate) = ec49b5cc67d19f46c9daea76b37b4988af0f63b9ed67c71190f015a0aa9691d4a8ffd4128413de430928428e1e8e26d44c3103f561e6b71b7e8c4597ab602d9f
+SHA512 (pyo3-ffi-0.29.0.crate) = baaf01d13ddc09316ba16b22e9ca15a67e5bda5b861ed7961c3393fd4692fc1c96952f81465d1dcb6531b9083f96c5630981b3d7802cb1ac2af67aafaffbec76

                 reply	other threads:[~2026-06-19 16:26 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=178188639080.1.12275768852082830833.rpms-rust-pyo3-ffi-33a359d4f0e2@fedoraproject.org \
    --to=decathorpe@gmail.com \
    --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