diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-09-08 06:52:18 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-09-08 06:53:07 +0200 |
commit | e51f59de2ea0991277bb4a45c7e9c756b0eb697d (patch) | |
tree | e30732579fe62c828aa1d0c8b7091cd81b6cac92 /dev-python/llfuse/files | |
parent | dev-python/alembic: Remove old (diff) | |
download | gentoo-e51f59de2ea0991277bb4a45c7e9c756b0eb697d.tar.gz gentoo-e51f59de2ea0991277bb4a45c7e9c756b0eb697d.tar.bz2 gentoo-e51f59de2ea0991277bb4a45c7e9c756b0eb697d.zip |
dev-python/llfuse: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/llfuse/files')
-rw-r--r-- | dev-python/llfuse/files/llfuse-1.4.4-cython3.patch | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/dev-python/llfuse/files/llfuse-1.4.4-cython3.patch b/dev-python/llfuse/files/llfuse-1.4.4-cython3.patch deleted file mode 100644 index 38fea36a5fac..000000000000 --- a/dev-python/llfuse/files/llfuse-1.4.4-cython3.patch +++ /dev/null @@ -1,42 +0,0 @@ -https://github.com/python-llfuse/python-llfuse/commit/8c0160545ce01b3624c8ecad669f06fb6d22d2f6 - -From 8c0160545ce01b3624c8ecad669f06fb6d22d2f6 Mon Sep 17 00:00:00 2001 -From: Thomas Waldmann <tw@waldmann-edv.de> -Date: Sun, 21 May 2023 01:31:38 +0200 -Subject: [PATCH] remove Cython version check, fixes #81 - -distutils Version classes are deprecated. - -I decided to remove the Cython version check completely, -it is not as simple as checking a minimum version anyway. - -E.g. we can work with Cython 0.29.x and also 3.0.0b2, -but earlier 3.0.0 releases are of unknown compatibility. - -Also, latest Python 3.12-dev versions require 0.29.34, -while older Pythons are happy with stuff compiled by earlier -0.29.x releases. ---- a/setup.py -+++ b/setup.py -@@ -34,7 +34,6 @@ - - import setuptools - from setuptools import Extension --from distutils.version import LooseVersion - - basedir = os.path.abspath(os.path.dirname(__file__)) - sys.path.insert(0, os.path.join(basedir, 'util')) -@@ -218,11 +217,7 @@ def run(self): - stderr=subprocess.STDOUT) - except OSError: - raise SystemExit('Cython needs to be installed for this command') -- -- hit = re.match('^Cython version (.+)$', version) -- if not hit or LooseVersion(hit.group(1)) < "0.29": -- # in fact, we need a very recent Cython version to support the latest pythons -- raise SystemExit('Need Cython 0.29 or newer, found ' + version) -+ print(f"Using {version.strip()}.") - - cmd = ['cython', '-Wextra', '--force', '-3', '--fast-fail', - '--directive', 'embedsignature=True', '--include-dir', - |