summaryrefslogtreecommitdiff
path: root/dev-python/bcrypt/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/bcrypt/files
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'dev-python/bcrypt/files')
-rw-r--r--dev-python/bcrypt/files/bcrypt-4.2.0-patch-pyo3-subinterp.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/dev-python/bcrypt/files/bcrypt-4.2.0-patch-pyo3-subinterp.patch b/dev-python/bcrypt/files/bcrypt-4.2.0-patch-pyo3-subinterp.patch
deleted file mode 100644
index 964dd964fa93..000000000000
--- a/dev-python/bcrypt/files/bcrypt-4.2.0-patch-pyo3-subinterp.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-https://bugs.gentoo.org/920906
-https://github.com/pyca/bcrypt/issues/694
-https://github.com/PyO3/pyo3/issues/3451
-https://src.fedoraproject.org/rpms/rust-pyo3/raw/rawhide/f/0001-Make-unsafe-subinterpreter-support-available-via-cfg.patch
-
-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
-
---- 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