public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/rust-pyo3_0.24] epel9: Compat package no longer needed
@ 2026-08-07 9:55 Benjamin A. Beasley
0 siblings, 0 replies; only message in thread
From: Benjamin A. Beasley @ 2026-08-07 9:55 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/rust-pyo3_0.24
Branch : epel9
Commit : 2e3073b28179f547ad0ecf447d577d02e37375c2
Author : Benjamin A. Beasley <code@musicinmybrain.net>
Date : 2026-03-14T22:34:49+00:00
Stats : +1/-682 in 11 file(s)
URL : https://src.fedoraproject.org/rpms/rust-pyo3_0.24/c/2e3073b28179f547ad0ecf447d577d02e37375c2?branch=epel9
Log:
Compat package no longer needed
---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index f1306e8..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/pyo3-0.24.2.crate
diff --git a/0001-Drop-deny-warnings-from-doctests.patch b/0001-Drop-deny-warnings-from-doctests.patch
deleted file mode 100644
index 6fa806c..0000000
--- a/0001-Drop-deny-warnings-from-doctests.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From b2d7edb07a047c659a7fbb6d313cd6ff48feb160 Mon Sep 17 00:00:00 2001
-From: Fabio Valentini <decathorpe@gmail.com>
-Date: Mon, 18 Aug 2025 14:00:56 +0200
-Subject: [PATCH] Drop deny(warnings) from doctests
-
----
- src/lib.rs | 3 +--
- 1 file changed, 1 insertion(+), 2 deletions(-)
-
-diff --git a/src/lib.rs b/src/lib.rs
-index 863fd01..991f800 100644
---- a/src/lib.rs
-+++ b/src/lib.rs
-@@ -12,8 +12,7 @@
- deny(
- rust_2018_idioms,
- unused_lifetimes,
-- rust_2021_prelude_collisions,
-- warnings
-+ rust_2021_prelude_collisions
- ),
- allow(
- unused_variables,
---
-2.50.1
-
diff --git a/0001-Fix-expected-error-message-for-one-test-for-Python-3.patch b/0001-Fix-expected-error-message-for-one-test-for-Python-3.patch
deleted file mode 100644
index bdd2d1a..0000000
--- a/0001-Fix-expected-error-message-for-one-test-for-Python-3.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 01100dc9eba6d956b48f1de8b463adf2234ac249 Mon Sep 17 00:00:00 2001
-From: Fabio Valentini <decathorpe@gmail.com>
-Date: Mon, 21 Jul 2025 19:38:17 +0200
-Subject: [PATCH] Fix expected error message for one test for Python 3.14
-
----
- src/types/dict.rs | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/src/types/dict.rs b/src/types/dict.rs
-index 3f5118a..74a2d1b 100644
---- a/src/types/dict.rs
-+++ b/src/types/dict.rs
-@@ -989,7 +989,10 @@ mod tests {
- }
- Err(err) => {
- assert!(err.is_instance_of::<PyTypeError>(py));
-- assert_eq!(err.value(py).to_string(), "Error from __hash__")
-+ #[cfg(not(Py_3_14))]
-+ assert_eq!(err.value_bound(py).to_string(), "Error from __hash__");
-+ #[cfg(Py_3_14)]
-+ assert_eq!(err.value_bound(py).to_string(), "cannot use 'HashErrors' as a dict key (Error from __hash__)");
- }
- }
- })
---
-2.50.1
-
diff --git a/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch b/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch
deleted file mode 100644
index ffcdfb6..0000000
--- a/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From d59176bc05aa37838fd4a8dd253f47c962f61118 Mon Sep 17 00:00:00 2001
-From: Fabio Valentini <decathorpe@gmail.com>
-Date: Tue, 23 Jul 2024 14:41:04 +0200
-Subject: [PATCH] Make unsafe subinterpreter support available via cfg flag
-
----
- src/impl_/pymodule.rs | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/impl_/pymodule.rs b/src/impl_/pymodule.rs
-index b05652b..94555ff 100644
---- a/src/impl_/pymodule.rs
-+++ b/src/impl_/pymodule.rs
-@@ -107,7 +107,7 @@ impl ModuleDef {
- // that static data is not reused across interpreters.
- //
- // PyPy does not have subinterpreters, so no need to check interpreter ID.
-- #[cfg(not(any(PyPy, GraalPy)))]
-+ #[cfg(not(any(PyPy, GraalPy, pyo3_unsafe_allow_subinterpreters)))]
- {
- // PyInterpreterState_Get is only available on 3.9 and later, but is missing
- // from python3.dll for Windows stable API on 3.9
---
-2.45.2
-
diff --git a/0001-fix-FromPyObject-impl-for-uuid-Uuid-on-big-endian-ar.patch b/0001-fix-FromPyObject-impl-for-uuid-Uuid-on-big-endian-ar.patch
deleted file mode 100644
index 6fa8a41..0000000
--- a/0001-fix-FromPyObject-impl-for-uuid-Uuid-on-big-endian-ar.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From b46a7ea600ddbc94994371a4b8135d0ee8235c03 Mon Sep 17 00:00:00 2001
-From: Fabio Valentini <decathorpe@gmail.com>
-Date: Tue, 20 May 2025 23:48:08 +0200
-Subject: [PATCH] fix FromPyObject impl for uuid::Uuid on big-endian arches
-
----
- src/conversions/uuid.rs | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/conversions/uuid.rs b/src/conversions/uuid.rs
-index 6f6775b..3debdf2 100644
---- a/src/conversions/uuid.rs
-+++ b/src/conversions/uuid.rs
-@@ -85,7 +85,7 @@ impl FromPyObject<'_> for Uuid {
-
- if obj.is_instance(uuid_cls)? {
- let uuid_int: u128 = obj.getattr(intern!(py, "int"))?.extract()?;
-- Ok(Uuid::from_u128(uuid_int.to_le()))
-+ Ok(Uuid::from_u128(uuid_int))
- } else {
- Err(PyTypeError::new_err("Expected a `uuid.UUID` instance."))
- }
---
-2.49.0
-
diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..382e6f5
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Compat package no longer needed
diff --git a/pyo3-fix-metadata-auto.diff b/pyo3-fix-metadata-auto.diff
deleted file mode 100644
index 67740a1..0000000
--- a/pyo3-fix-metadata-auto.diff
+++ /dev/null
@@ -1,17 +0,0 @@
---- pyo3-0.24.2/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ pyo3-0.24.2/Cargo.toml 2025-05-20T13:41:34.384010+00:00
-@@ -460,9 +460,6 @@
- version = "=0.24.2"
- features = ["resolve-config"]
-
--[target.'cfg(not(target_has_atomic = "64"))'.dependencies.portable-atomic]
--version = "1.0"
--
- [lints.clippy]
- checked_conversions = "warn"
- dbg_macro = "warn"
-@@ -492,3 +489,4 @@
- [lints.rustdoc]
- bare_urls = "warn"
- broken_intra_doc_links = "warn"
-+
diff --git a/pyo3-fix-metadata.diff b/pyo3-fix-metadata.diff
deleted file mode 100644
index df15264..0000000
--- a/pyo3-fix-metadata.diff
+++ /dev/null
@@ -1,10 +0,0 @@
---- pyo3-0.24.2/Cargo.toml 1970-01-01T00:00:01+00:00
-+++ pyo3-0.24.2/Cargo.toml 2025-05-20T13:41:34.386011+00:00
-@@ -125,7 +125,6 @@
- "smallvec",
- "uuid",
- ]
--generate-import-lib = ["pyo3-ffi/generate-import-lib"]
- macros = [
- "pyo3-macros",
- "indoc",
diff --git a/rust-pyo3_0.24.spec b/rust-pyo3_0.24.spec
deleted file mode 100644
index 9756bad..0000000
--- a/rust-pyo3_0.24.spec
+++ /dev/null
@@ -1,528 +0,0 @@
-# Generated by rust2rpm 27
-%bcond check 1
-%global debug_package %{nil}
-
-%global crate pyo3
-
-Name: rust-pyo3_0.24
-Version: 0.24.2
-Release: %autorelease
-Summary: Bindings to Python interpreter
-
-License: MIT OR Apache-2.0
-URL: https://crates.io/crates/pyo3
-Source: %{crates_source}
-# Automatically generated patch to strip dependencies and normalize metadata
-Patch: pyo3-fix-metadata-auto.diff
-# Manually created patch for downstream crate metadata changes
-# * relax chrono-tz dependency to allow building with 0.6..=0.10
-# * drop MSVC- and MinGW-only features
-Patch: pyo3-fix-metadata.diff
-# * make unsafe subinterpreter support available via cfg flag:
-# https://bugzilla.redhat.com/show_bug.cgi?id=2298403
-Patch2: 0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch
-# https://github.com/PyO3/pyo3/pull/5161
-Patch3: 0001-fix-FromPyObject-impl-for-uuid-Uuid-on-big-endian-ar.patch
-Patch: 0001-Fix-expected-error-message-for-one-test-for-Python-3.patch
-Patch: 0001-Drop-deny-warnings-from-doctests.patch
-
-BuildRequires: cargo-rpm-macros >= 24
-
-%global _description %{expand:
-Bindings to Python interpreter.}
-
-%description %{_description}
-
-%package devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description devel %{_description}
-
-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}/pyo3-runtime/LICENSE-APACHE
-%license %{crate_instdir}/pyo3-runtime/LICENSE-MIT
-%doc %{crate_instdir}/Architecture.md
-%doc %{crate_instdir}/CHANGELOG.md
-%doc %{crate_instdir}/Code-of-Conduct.md
-%doc %{crate_instdir}/Contributing.md
-%doc %{crate_instdir}/README.md
-%doc %{crate_instdir}/Releasing.md
-%{crate_instdir}/
-
-%package -n %{name}+default-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+default-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "default" feature of the "%{crate}" crate.
-
-%files -n %{name}+default-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-py310-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-py310-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3-py310" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-py310-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-py311-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-py311-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3-py311" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-py311-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-py312-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-py312-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3-py312" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-py312-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-py313-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-py313-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3-py313" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-py313-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-py37-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-py37-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3-py37" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-py37-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-py38-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-py38-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3-py38" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-py38-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+abi3-py39-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+abi3-py39-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "abi3-py39" feature of the "%{crate}" crate.
-
-%files -n %{name}+abi3-py39-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+anyhow-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+anyhow-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "anyhow" feature of the "%{crate}" crate.
-
-%files -n %{name}+anyhow-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+auto-initialize-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+auto-initialize-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "auto-initialize" feature of the "%{crate}" crate.
-
-%files -n %{name}+auto-initialize-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+chrono-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+chrono-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "chrono" feature of the "%{crate}" crate.
-
-%files -n %{name}+chrono-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+chrono-tz-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+chrono-tz-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "chrono-tz" feature of the "%{crate}" crate.
-
-%files -n %{name}+chrono-tz-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+either-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+either-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "either" feature of the "%{crate}" crate.
-
-%files -n %{name}+either-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+experimental-async-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+experimental-async-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "experimental-async" feature of the "%{crate}" crate.
-
-%files -n %{name}+experimental-async-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+experimental-inspect-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+experimental-inspect-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "experimental-inspect" feature of the "%{crate}" crate.
-
-%files -n %{name}+experimental-inspect-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+extension-module-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+extension-module-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "extension-module" feature of the "%{crate}" crate.
-
-%files -n %{name}+extension-module-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+eyre-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+eyre-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "eyre" feature of the "%{crate}" crate.
-
-%files -n %{name}+eyre-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+full-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+full-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "full" feature of the "%{crate}" crate.
-
-%files -n %{name}+full-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+hashbrown-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+hashbrown-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "hashbrown" feature of the "%{crate}" crate.
-
-%files -n %{name}+hashbrown-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+indexmap-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+indexmap-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "indexmap" feature of the "%{crate}" crate.
-
-%files -n %{name}+indexmap-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+indoc-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+indoc-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "indoc" feature of the "%{crate}" crate.
-
-%files -n %{name}+indoc-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+inventory-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+inventory-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "inventory" feature of the "%{crate}" crate.
-
-%files -n %{name}+inventory-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+jiff-02-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+jiff-02-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "jiff-02" feature of the "%{crate}" crate.
-
-%files -n %{name}+jiff-02-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+macros-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+macros-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "macros" feature of the "%{crate}" crate.
-
-%files -n %{name}+macros-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+multiple-pymethods-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+multiple-pymethods-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "multiple-pymethods" feature of the "%{crate}" crate.
-
-%files -n %{name}+multiple-pymethods-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+nightly-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+nightly-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "nightly" feature of the "%{crate}" crate.
-
-%files -n %{name}+nightly-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+num-bigint-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+num-bigint-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "num-bigint" feature of the "%{crate}" crate.
-
-%files -n %{name}+num-bigint-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+num-complex-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+num-complex-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "num-complex" feature of the "%{crate}" crate.
-
-%files -n %{name}+num-complex-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+num-rational-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+num-rational-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "num-rational" feature of the "%{crate}" crate.
-
-%files -n %{name}+num-rational-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+py-clone-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+py-clone-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "py-clone" feature of the "%{crate}" crate.
-
-%files -n %{name}+py-clone-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+pyo3-macros-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+pyo3-macros-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "pyo3-macros" feature of the "%{crate}" crate.
-
-%files -n %{name}+pyo3-macros-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+rust_decimal-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+rust_decimal-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "rust_decimal" feature of the "%{crate}" crate.
-
-%files -n %{name}+rust_decimal-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+serde-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+serde-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "serde" feature of the "%{crate}" crate.
-
-%files -n %{name}+serde-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+smallvec-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+smallvec-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "smallvec" feature of the "%{crate}" crate.
-
-%files -n %{name}+smallvec-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+unindent-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+unindent-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "unindent" feature of the "%{crate}" crate.
-
-%files -n %{name}+unindent-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%package -n %{name}+uuid-devel
-Summary: %{summary}
-BuildArch: noarch
-
-%description -n %{name}+uuid-devel %{_description}
-
-This package contains library source intended for building other packages which
-use the "uuid" feature of the "%{crate}" crate.
-
-%files -n %{name}+uuid-devel
-%ghost %{crate_instdir}/Cargo.toml
-
-%prep
-%autosetup -n %{crate}-%{version} -p1
-%cargo_prep
-# drop files that are not useful
-rm -r emscripten/ newsfragments/
-
-%generate_buildrequires
-# unit tests require optional dependencies
-%cargo_generate_buildrequires -a
-
-%build
-%cargo_build
-
-%install
-%cargo_install
-
-%if %{with check}
-%check
-# * unit tests require an UTF-8 locale
-# * unit tests require the "auto-initialize" feature
-# * run tests for all third-party crate integrations
-export LANG=C.utf8
-%cargo_test -f abi3,auto-initialize,full
-%endif
-
-%changelog
-%autochangelog
diff --git a/rust2rpm.toml b/rust2rpm.toml
deleted file mode 100644
index da9b47c..0000000
--- a/rust2rpm.toml
+++ /dev/null
@@ -1,21 +0,0 @@
-[package]
-cargo-toml-patch-comments = [
- "relax chrono-tz dependency to allow building with 0.6..=0.10",
- "drop MSVC- and MinGW-only features",
-]
-doc-files.exclude = [".towncrier.template.md"]
-
-[[package.extra-patches]]
-number = 2
-file = "0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch"
-comments = ["""\
-make unsafe subinterpreter support available via cfg flag:
-https://bugzilla.redhat.com/show_bug.cgi?id=2298403""",
-]
-
-[scripts]
-prep.post = [
- "# drop files that are not useful",
- "rm -r emscripten/ newsfragments/",
-]
-
diff --git a/sources b/sources
deleted file mode 100644
index c57e69c..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (pyo3-0.24.2.crate) = fa9ff4b215e4b3346191bd2eed6624cf4c3eb3ad9ec6dfe42df2bdf55dc7189d5ac366015982b09c5d3252703f07a47f4eee39c627494cc295254d57d0e6626e
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-08-07 9:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-07 9:55 [rpms/rust-pyo3_0.24] epel9: Compat package no longer needed 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