summaryrefslogtreecommitdiff
path: root/dev-python/stone
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-03-28 08:46:36 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2024-03-28 08:46:36 +0000
commit27b85c2eda21d33887bdaa2852e87cb72abeb84c (patch)
tree917f07c5a2d5324a8b0e6430c3380f2e182061c1 /dev-python/stone
parenta1485f6471ac2567f76a7f33e032c9bef8a0e412 (diff)
downloadbaldeagleos-repo-27b85c2eda21d33887bdaa2852e87cb72abeb84c.tar.gz
baldeagleos-repo-27b85c2eda21d33887bdaa2852e87cb72abeb84c.tar.xz
baldeagleos-repo-27b85c2eda21d33887bdaa2852e87cb72abeb84c.zip
Adding metadata
Diffstat (limited to 'dev-python/stone')
-rw-r--r--dev-python/stone/Manifest2
-rw-r--r--dev-python/stone/files/stone-3.3.1-python3_11.patch15
-rw-r--r--dev-python/stone/stone-3.3.2.ebuild (renamed from dev-python/stone/stone-3.3.1.ebuild)4
3 files changed, 2 insertions, 19 deletions
diff --git a/dev-python/stone/Manifest b/dev-python/stone/Manifest
index 8a0159f9538b..66e7ad1393e5 100644
--- a/dev-python/stone/Manifest
+++ b/dev-python/stone/Manifest
@@ -1 +1 @@
-DIST stone-3.3.1.gh.tar.gz 282831 BLAKE2B b9a866e43feedea28cd33b89f78100be520a2756fa78888e9a786ae27942a5c19df51010c0af952de70c782d3fc3588de1ae0f58450d807053989bb91d285f15 SHA512 ee07f01b6f10e771afbe6ca6f07d7efa24a5460e5c163f339ae84a8b7742a659f5cb535e674a2f315d1bfa95b7c02e56f46db1f397188b5b6705f6c00c1e9d73
+DIST stone-3.3.2.gh.tar.gz 280813 BLAKE2B f7e9d5c6a35074a88d4650105af336c43e85f9c1bda0cde010985f5b538dc8cb9371e1ab2ee8c12d520d42d192bf1a4134d6227c5f5ba85effa30b2cc5bc2a7e SHA512 7bccaf8b2a70edfebf7458447a4ad9121b9cca10dc8b7d151c6763ac7ead9c6c531cbb3c1b56b77ca6eea205dcc0f6e8fa20f0776897a8c40652ef7b9c8830c8
diff --git a/dev-python/stone/files/stone-3.3.1-python3_11.patch b/dev-python/stone/files/stone-3.3.1-python3_11.patch
deleted file mode 100644
index f2826fdc5271..000000000000
--- a/dev-python/stone/files/stone-3.3.1-python3_11.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Replace method deprecated in 3.10 and removed in 3.11. Upstream is slow to release a fix.
-
-See also: https://github.com/dropbox/stone/issues/288
-
---- a/stone/frontend/ir_generator.py
-+++ b/stone/frontend/ir_generator.py
-@@ -1074,7 +1074,7 @@
- assert issubclass(data_type_class, DataType), \
- 'Expected stone.data_type.DataType, got %r' % data_type_class
-
-- argspec = inspect.getargspec(data_type_class.__init__) # noqa: E501 # pylint: disable=deprecated-method,useless-suppression
-+ argspec = inspect.getfullargspec(data_type_class.__init__)
- argspec.args.remove('self')
- num_args = len(argspec.args)
- # Unfortunately, argspec.defaults is None if there are no defaults
diff --git a/dev-python/stone/stone-3.3.1.ebuild b/dev-python/stone/stone-3.3.2.ebuild
index cd8c1461db6f..95e2fda3beea 100644
--- a/dev-python/stone/stone-3.3.1.ebuild
+++ b/dev-python/stone/stone-3.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -25,8 +25,6 @@ RDEPEND="
>=dev-python/six-1.3.0[${PYTHON_USEDEP}]
"
-PATCHES=( "${FILESDIR}"/${P}-python3_11.patch )
-
distutils_enable_tests pytest
python_prepare_all() {