From 2c1bdf9e63a9a82efe90cc9d82696812db076f7f Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 8 Sep 2023 10:30:27 +0100 Subject: gentoo auto-resync : 08:09:2023 - 10:30:27 --- dev-python/llfuse/Manifest | 3 -- dev-python/llfuse/files/llfuse-1.4.4-cython3.patch | 42 --------------- dev-python/llfuse/llfuse-1.4.4.ebuild | 60 ---------------------- 3 files changed, 105 deletions(-) delete mode 100644 dev-python/llfuse/files/llfuse-1.4.4-cython3.patch delete mode 100644 dev-python/llfuse/llfuse-1.4.4.ebuild (limited to 'dev-python/llfuse') diff --git a/dev-python/llfuse/Manifest b/dev-python/llfuse/Manifest index 4bd59d840833..a9e82f60481a 100644 --- a/dev-python/llfuse/Manifest +++ b/dev-python/llfuse/Manifest @@ -1,7 +1,4 @@ AUX llfuse-1.3.5-cflags.patch 662 BLAKE2B 39e0c35ffbb62b4a6b7b7c5592da8c87554ea733d07d879e6f58dd62003f30812cb4320e41484797cae4f113d271dc8c8625fe847270cae7e35085c2ae67a357 SHA512 f66c13ddee81acc63cb65c09f2836c9a2409f24bebc5b7e3b5fea3f7e626aa52e5d19798ef5ab281d0dd31c3efbc4378003bd93461cfda36fcc726fc871aadf4 -AUX llfuse-1.4.4-cython3.patch 1651 BLAKE2B 37fe3686b3ececaf34659614a99e3f9099d15512234dceedde319722301f4a7d2dc92c7c0ee9c93b2e766703aefa1ff64b5008f413a63ca616a85fa8a4666d88 SHA512 9477a9788a644d230b46082f35ff1e8e8ff1346f2852c976d3d7c30d00a90ce720876f79775a73f850f443313e63402bbeddb5311cd2cb28195b3c8843899826 -DIST llfuse-1.4.4.tar.gz 293728 BLAKE2B aba684a0b7b06a0cdb97fb8851639ee0c6b5dc100e3d216430e26f122a78ac7933b7d5725f271328804a592b343988d6ceb79bd8c682620464dcef1d26cc20b0 SHA512 3e61f1f82194dc915947e4f0c2edf44ce0e87c4da142e39c2b19bb7db3f387a348f9c1bb02b6d0f2507b57cbfc20ad83c11ce513c685dc276d6a382e4dd449eb DIST llfuse-1.5.0.tar.gz 869259 BLAKE2B 2a3eee64718f4a73b8dd51ccaeedd7b1b700f734b10daa864d2ca04da5f38ed6a514c4ae8b541000c4d4a3042dcd95533ff7c1df655d7b57ec89120a97d8a9b6 SHA512 bb84c697658e7cd39eb6af3a4a6085c3bc3295e5f0b4f35adf6565ecff5077acb27ecd92f7c6420aa06dab36d9b54915bce65e4ec3d011047a0a15cdccbbb284 -EBUILD llfuse-1.4.4.ebuild 1094 BLAKE2B d720dcbb931eec6a4bbd49109b5e15aef014ceb4aacd69a2e8d1d1a264a1b8553eba957d4811da673d1ea1189e606a89b1a3838760e7339685a19b1ab56b5efd SHA512 a9f52df6fc687a6576a478e6d716e3963e8cecbbcca8bba1e88ce6ccca960f4be73091de616c08e6afcee6a62d9c2b37f34408392d15d5dbc841bcf1e7c6708f EBUILD llfuse-1.5.0.ebuild 1024 BLAKE2B 4d1d0bd8b9ac00ec19946998697fd5b0ef019195a2e0b50f5ab4b80da65c0b08a5d2cb142d52c6d4d57cf0fcc673c5af4a002950581f085de39b74a07a39184e SHA512 cbb31ded17e9a02631081ed0cb4b0297ffc0a7475238fcaea7f8f2cd59a8db8fbbcd6ad8c28ef8cbbe268ae2f96f591726fc0206b62307f99c9f242d8c386a46 MISC metadata.xml 377 BLAKE2B 8e7aa00ada5481ed2fc9fedf47334ec81ca26e7788ee5f7c6965151cf6f42e305c33d2b1f1a697094d11668ea5939de99e9ae00de7fbe95b75bbc9577adcff9b SHA512 70eaac052525ddf94287b100e7dc6d4429499d49b6aac109659757cf6ca41f6aac220a1b931e4fb196e322b259e9884b1ecf49947b48b1f76c8350434f811aa7 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 -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', - diff --git a/dev-python/llfuse/llfuse-1.4.4.ebuild b/dev-python/llfuse/llfuse-1.4.4.ebuild deleted file mode 100644 index f6edb91dd6d3..000000000000 --- a/dev-python/llfuse/llfuse-1.4.4.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..11} pypy3 ) - -inherit distutils-r1 pypi - -DESCRIPTION="Python bindings for the low-level FUSE API" -HOMEPAGE=" - https://github.com/python-llfuse/python-llfuse/ - https://pypi.org/project/llfuse/ -" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86" -IUSE="doc examples" - -RDEPEND=" - >=sys-fs/fuse-2.8.0:0 -" -DEPEND=" - ${RDEPEND} - sys-apps/attr -" -#