mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-17 14:49:30 -07:00
dev-python/twisted: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,4 +1,2 @@
|
||||
DIST twisted-22.10.0.gh.tar.gz 3512714 BLAKE2B 2fd36ec6922f428e959ce0169bb9a3592b8b3e43aff8d34872883ecf0fad8d0fff01a52f06b54df3dc377f4fc1a488b6d66f9287b108b4749bb7d3c749b96061 SHA512 cf9ed96430376d499ae9627a7d0656c05cb99bc9e9b15a8f4166355363818f090bc3c2b383ed4cf19e1e38fb569e8618d35a0ddde2a90a06f3c9a4ea769837e4
|
||||
DIST twisted-23.8.0.tar.gz 3478691 BLAKE2B 44fa9da691456a2b1d97f54b95787abe3e162b5639ee7ab8779c6d9525eb2a878865f450aa6fd6c461c3eba84f95361d2423e241991f52f91a27b792b6d71123 SHA512 ef0a243a4c22dd31e57087f5b2c21a657b98e23cc486f08b9926a9ebe8c4b6fec137993aea71e6c60abc3d653d995da0f65ff10dfc6c3d2cb7fdae5db08e2532
|
||||
DIST twisted-23.8.0rc1.tar.gz 3479000 BLAKE2B d3dbc54759f4dcba422cbcc57451a268834f21616ea2b5d34d972f2647750afa4ae62424ae32b2e0fe22e3a886c45ff1e64280c99553aa1ee52923a192773fdf SHA512 a1e778247a311dda30cd7f9f02fa4ab8848d6d5b89de4ff83dee5a92f968b6ec8df48d1804eef780cd0a9dc1393a1a91d624e9c54e0c9cd52d930ac2b36a0b6c
|
||||
DIST twisted-regen-cache.gz 911 BLAKE2B ffd3fcda6c67ffe6fd3ef581c8d507548396b66ed0708e9a5c790095e579c0d5f0f71596acf05712989da2ddef2b8d437eca973bc4d80ef8a9fa852915f38305 SHA512 95a9b931c73017d16d1b5e6b41345dddffe62b6af1a8e93b5e40d06d3d15be17b0dd0181c767ffeeb791534d463764ef9e066fa6c2ee2ac4b53c86d1da8fce03
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
From 9344f8cd80ecb2907dbfddfeeb8cc9ffdb50bc94 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
|
||||
Date: Sat, 22 May 2021 01:11:48 +0200
|
||||
Subject: [PATCH] Force using GTK+3 in twisted.internet.gireactor
|
||||
|
||||
Modify twisted.internet.gireactor to explicitly request GTK+ version 3.
|
||||
Otherwise it uses the newest version installed which could be GTK+4
|
||||
that gireactor is currently incompatible with.
|
||||
---
|
||||
src/twisted/internet/gireactor.py | 3 +++
|
||||
src/twisted/internet/test/test_gireactor.py | 3 +++
|
||||
src/twisted/newsfragments/10200.bugfix | 1 +
|
||||
3 files changed, 7 insertions(+)
|
||||
create mode 100644 src/twisted/newsfragments/10200.bugfix
|
||||
|
||||
diff --git a/src/twisted/internet/gireactor.py b/src/twisted/internet/gireactor.py
|
||||
index e2d24b599..838fa982e 100644
|
||||
--- a/src/twisted/internet/gireactor.py
|
||||
+++ b/src/twisted/internet/gireactor.py
|
||||
@@ -21,6 +21,7 @@ On Python 3, pygobject v3.4 or later is required.
|
||||
"""
|
||||
|
||||
|
||||
+import gi # type: ignore[import]
|
||||
import gi.pygtkcompat # type: ignore[import]
|
||||
from gi.repository import GLib # type: ignore[import]
|
||||
|
||||
@@ -69,6 +70,7 @@ class GIReactor(_glibbase.GlibReactorBase):
|
||||
def __init__(self, useGtk=False):
|
||||
_gtk = None
|
||||
if useGtk is True:
|
||||
+ gi.require_version("Gtk", "3.0")
|
||||
from gi.repository import Gtk as _gtk
|
||||
|
||||
_glibbase.GlibReactorBase.__init__(self, GLib, _gtk, useGtk=useGtk)
|
||||
@@ -113,6 +115,7 @@ class PortableGIReactor(_glibbase.PortableGlibReactorBase):
|
||||
def __init__(self, useGtk=False):
|
||||
_gtk = None
|
||||
if useGtk is True:
|
||||
+ gi.require_version("Gtk", "3.0")
|
||||
from gi.repository import Gtk as _gtk
|
||||
|
||||
_glibbase.PortableGlibReactorBase.__init__(self, GLib, _gtk, useGtk=useGtk)
|
||||
diff --git a/src/twisted/internet/test/test_gireactor.py b/src/twisted/internet/test/test_gireactor.py
|
||||
index c25ada63f..3bb88a07f 100644
|
||||
--- a/src/twisted/internet/test/test_gireactor.py
|
||||
+++ b/src/twisted/internet/test/test_gireactor.py
|
||||
@@ -26,6 +26,9 @@ else:
|
||||
gtk3reactor = None
|
||||
else:
|
||||
gtk3reactor = _gtk3reactor
|
||||
+ import gi # type: ignore[import]
|
||||
+
|
||||
+ gi.require_version("Gtk", "3.0")
|
||||
from gi.repository import Gtk
|
||||
|
||||
from twisted.internet.error import ReactorAlreadyRunning
|
||||
diff --git a/src/twisted/newsfragments/10200.bugfix b/src/twisted/newsfragments/10200.bugfix
|
||||
new file mode 100644
|
||||
index 000000000..7afb343be
|
||||
--- /dev/null
|
||||
+++ b/src/twisted/newsfragments/10200.bugfix
|
||||
@@ -0,0 +1 @@
|
||||
+twisted.internet.gireactor was fixed to force GTK+3 in order to fix use of incompatible GTK+4 API when installed
|
||||
--
|
||||
2.35.1
|
||||
|
||||
@@ -1,100 +0,0 @@
|
||||
https://src.fedoraproject.org/rpms/python-twisted/blob/rawhide/f/0003-Fix-tests-for-Python-3.11.patch
|
||||
|
||||
From b0574816f622bc187389df2183e2bef0492fe5f5 Mon Sep 17 00:00:00 2001
|
||||
From: eevel <eevel@weezel3.weezelnet>
|
||||
Date: Wed, 2 Nov 2022 20:35:55 -0500
|
||||
Subject: [PATCH 3/6] Fix tests for Python 3.11
|
||||
|
||||
This is based on a subset of commits from this pull request.
|
||||
|
||||
https://github.com/twisted/twisted/pull/11734
|
||||
|
||||
- fix twisted.persisted tests (cherry picked from commit 4f6d7fb0749429b092fe7538a7d2b11fe58319a6)
|
||||
- fix tests for twisted.spread (cherry picked from commit 525377178adfa987ed56be753aec0fce35d721dc)
|
||||
- fix test for twisted.web (cherry picked from commit afcc224a02f72e5d12fa35d223bd753e8086b135)
|
||||
- fix persisted tests in twisted.test (cherry picked from commit 4b5ab38b09b326cec7967e04bd4cae8a84bb6784)
|
||||
- fix twisted.trial tests (cherry picked from commit f8f56d45113e5f2467a5e8375186e5db6309dfc6)
|
||||
- make test_flatten backwards-compatible (cherry picked from commit d91675ac5ffe907fcdbb3d1cedb1240008d81fd1)
|
||||
--- a/src/twisted/persisted/aot.py
|
||||
+++ b/src/twisted/persisted/aot.py
|
||||
@@ -399,8 +399,10 @@ class AOTUnjellier:
|
||||
inst = klass.__new__(klass)
|
||||
if hasattr(klass, "__setstate__"):
|
||||
self.callAfter(inst.__setstate__, state)
|
||||
- else:
|
||||
+ elif isinstance(state, dict):
|
||||
inst.__dict__ = state
|
||||
+ else:
|
||||
+ inst.__dict__ = state.__getstate__()
|
||||
return inst
|
||||
|
||||
elif c is Ref:
|
||||
--- a/src/twisted/spread/flavors.py
|
||||
+++ b/src/twisted/spread/flavors.py
|
||||
@@ -398,6 +398,8 @@ class RemoteCopy(Unjellyable):
|
||||
object's dictionary (or a filtered approximation of it depending
|
||||
on my peer's perspective).
|
||||
"""
|
||||
+ if not state:
|
||||
+ state = {}
|
||||
state = {
|
||||
x.decode("utf8") if isinstance(x, bytes) else x: y for x, y in state.items()
|
||||
}
|
||||
--- a/src/twisted/spread/jelly.py
|
||||
+++ b/src/twisted/spread/jelly.py
|
||||
@@ -154,7 +154,8 @@ def _newInstance(cls, state):
|
||||
instance = _createBlank(cls)
|
||||
|
||||
def defaultSetter(state):
|
||||
- instance.__dict__ = state
|
||||
+ if isinstance(state, dict):
|
||||
+ instance.__dict__ = state or {}
|
||||
|
||||
setter = getattr(instance, "__setstate__", defaultSetter)
|
||||
setter(state)
|
||||
--- a/src/twisted/test/test_persisted.py
|
||||
+++ b/src/twisted/test/test_persisted.py
|
||||
@@ -378,6 +378,10 @@ class AOTTests(TestCase):
|
||||
def __dict__(self):
|
||||
raise AttributeError()
|
||||
|
||||
+ @property
|
||||
+ def __getstate__(self):
|
||||
+ raise AttributeError()
|
||||
+
|
||||
self.assertRaises(TypeError, aot.jellyToSource, UnknownType())
|
||||
|
||||
def test_basicIdentity(self):
|
||||
--- a/src/twisted/trial/test/test_pyunitcompat.py
|
||||
+++ b/src/twisted/trial/test/test_pyunitcompat.py
|
||||
@@ -218,8 +218,10 @@ class PyUnitResultTests(SynchronousTestCase):
|
||||
pyresult = pyunit.TestResult()
|
||||
result = PyUnitResultAdapter(pyresult)
|
||||
result.addError(self, f)
|
||||
+ tback = "".join(traceback.format_exception(*exc_info))
|
||||
self.assertEqual(
|
||||
- pyresult.errors[0][1], "".join(traceback.format_exception(*exc_info))
|
||||
+ pyresult.errors[0][1].endswith("ZeroDivisionError: division by zero\n"),
|
||||
+ tback.endswith("ZeroDivisionError: division by zero\n"),
|
||||
)
|
||||
|
||||
def test_trialSkip(self):
|
||||
--- a/src/twisted/web/test/test_flatten.py
|
||||
+++ b/src/twisted/web/test/test_flatten.py
|
||||
@@ -706,10 +706,9 @@ class FlattenerErrorTests(SynchronousTestCase):
|
||||
Exception while flattening:
|
||||
\\[<unrenderable>\\]
|
||||
<unrenderable>
|
||||
- .*
|
||||
+ <Deferred at .* current result: <twisted.python.failure.Failure builtins.RuntimeError: example>>
|
||||
File ".*", line \\d*, in _flattenTree
|
||||
- element = await element
|
||||
- RuntimeError: example
|
||||
+ element = await element.*
|
||||
"""
|
||||
),
|
||||
flags=re.MULTILINE,
|
||||
--
|
||||
2.39.2
|
||||
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
https://src.fedoraproject.org/rpms/python-twisted/raw/rawhide/f/0005-fix-sendmail-tests-for-python-3.11.patch
|
||||
|
||||
From f29ae1ae433cd9529410a93fd5675cb01460460e Mon Sep 17 00:00:00 2001
|
||||
From: eevel <eevel@weezel3.weezelnet>
|
||||
Date: Wed, 26 Oct 2022 19:49:33 -0500
|
||||
Subject: [PATCH 5/6] fix sendmail tests for python 3.11
|
||||
|
||||
(cherry picked from commit 00bf5be704bee022ba4d9b24eb6c2c768b4a1921)
|
||||
--- a/src/twisted/mail/test/test_smtp.py
|
||||
+++ b/src/twisted/mail/test/test_smtp.py
|
||||
@@ -1771,7 +1771,8 @@ class SendmailTests(TestCase):
|
||||
The default C{reactor} parameter of L{twisted.mail.smtp.sendmail} is
|
||||
L{twisted.internet.reactor}.
|
||||
"""
|
||||
- args, varArgs, keywords, defaults = inspect.getargspec(smtp.sendmail)
|
||||
+ fullSpec = inspect.getfullargspec(smtp.sendmail)
|
||||
+ defaults = fullSpec[3]
|
||||
self.assertEqual(reactor, defaults[2])
|
||||
|
||||
def _honorsESMTPArguments(self, username, password):
|
||||
--- /dev/null
|
||||
+++ b/src/twisted/newsfragments/10345.misc
|
||||
@@ -0,0 +1 @@
|
||||
+Fix SendmailTests for python 3.11.
|
||||
--
|
||||
2.39.2
|
||||
|
||||
|
||||
@@ -1,169 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{9..11} pypy3 )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit distutils-r1 virtualx
|
||||
|
||||
DESCRIPTION="An asynchronous networking framework written in Python"
|
||||
HOMEPAGE="https://www.twistedmatrix.com/trac/"
|
||||
SRC_URI="
|
||||
https://github.com/twisted/twisted/archive/${P}.tar.gz -> ${P}.gh.tar.gz
|
||||
https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz
|
||||
"
|
||||
S=${WORKDIR}/${PN}-${P}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
|
||||
IUSE="conch http2 serial ssl test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/automat-0.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/constantly-15.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/hyperlink-17.1.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/incremental-21.3.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/typing-extensions-3.6.5[${PYTHON_USEDEP}]
|
||||
>=dev-python/zope-interface-4.4.2[${PYTHON_USEDEP}]
|
||||
conch? (
|
||||
>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/bcrypt-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-2.6[${PYTHON_USEDEP}]
|
||||
dev-python/pyasn1[${PYTHON_USEDEP}]
|
||||
)
|
||||
http2? (
|
||||
<dev-python/h2-5.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/h2-3.0.0[${PYTHON_USEDEP}]
|
||||
<dev-python/priority-2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/priority-1.1.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
serial? (
|
||||
>=dev-python/pyserial-3.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
ssl? (
|
||||
>=dev-python/pyopenssl-21.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-2.4[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
>=dev-python/incremental-21.3.0[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
$(python_gen_cond_dep '
|
||||
>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/constantly-15.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cython-test-exception-raiser-1.0.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-2.4[${PYTHON_USEDEP}]
|
||||
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||||
dev-python/pyasn1[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyhamcrest-1.9.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyserial-3.0[${PYTHON_USEDEP}]
|
||||
virtual/openssh
|
||||
conch? (
|
||||
>=dev-python/bcrypt-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-2.6[${PYTHON_USEDEP}]
|
||||
)
|
||||
ssl? (
|
||||
>=dev-python/pyopenssl-21.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
' python3_{8..10} pypy3)
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/gmpy[${PYTHON_USEDEP}]
|
||||
' python3_{8..10})
|
||||
)
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
# https://twistedmatrix.com/trac/ticket/10200
|
||||
"${FILESDIR}/${PN}-22.1.0-force-gtk3.patch"
|
||||
)
|
||||
|
||||
python_prepare_all() {
|
||||
# upstream test for making releases; not very useful and requires
|
||||
# sphinx (including on py2)
|
||||
rm src/twisted/python/test/test_release.py || die
|
||||
|
||||
# puts system in EMFILE state, then the exception handler may fail
|
||||
# trying to open more files due to some gi magic
|
||||
sed -e '/SKIP_EMFILE/s:False:True:' \
|
||||
-i src/twisted/internet/test/test_tcp.py || die
|
||||
|
||||
# multicast tests fail within network-sandbox
|
||||
sed -e 's:test_joinLeave:_&:' \
|
||||
-e 's:test_loopback:_&:' \
|
||||
-e 's:test_multiListen:_&:' \
|
||||
-e 's:test_multicast:_&:' \
|
||||
-i src/twisted/test/test_udp.py || die
|
||||
|
||||
# These tests rely on warnings which seems work unreliably between python versions
|
||||
sed -e 's:test_currentEUID:_&:' \
|
||||
-e 's:test_currentUID:_&:' -i src/twisted/python/test/test_util.py || die
|
||||
|
||||
# broken by new expat
|
||||
sed -e 's:test_namespaceWithWhitespace:_&:' \
|
||||
-i src/twisted/words/test/test_domish.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# the test suite handles missing file & failing ioctl()s gracefully
|
||||
# but not permission errors from sandbox
|
||||
addwrite /dev/net/tun
|
||||
virtx distutils-r1_src_test
|
||||
}
|
||||
|
||||
python_test() {
|
||||
# please keep in sync with python_gen_cond_dep!
|
||||
if ! has "${EPYTHON}" python3_{8..10} pypy3; then
|
||||
einfo "Skipping tests on ${EPYTHON} (xfail)"
|
||||
return
|
||||
fi
|
||||
|
||||
"${EPYTHON}" -m twisted.trial twisted ||
|
||||
die "Tests failed with ${EPYTHON}"
|
||||
}
|
||||
|
||||
python_install() {
|
||||
distutils-r1_python_install
|
||||
|
||||
# own the dropin.cache so we don't leave orphans
|
||||
> "${D}$(python_get_sitedir)"/twisted/plugins/dropin.cache || die
|
||||
|
||||
python_doscript "${WORKDIR}"/twisted-regen-cache
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
newconfd "${FILESDIR}/twistd.conf" twistd
|
||||
newinitd "${FILESDIR}/twistd.init" twistd
|
||||
}
|
||||
|
||||
python_postinst() {
|
||||
twisted-regen-cache || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z ${ROOT} ]]; then
|
||||
python_foreach_impl python_postinst
|
||||
fi
|
||||
}
|
||||
|
||||
python_postrm() {
|
||||
rm -f "${ROOT}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
# if we're removing the last version, remove the cache file
|
||||
if [[ ! ${REPLACING_VERSIONS} ]]; then
|
||||
python_foreach_impl python_postrm
|
||||
fi
|
||||
}
|
||||
@@ -1,173 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_TESTED=( python3_{10..11} pypy3 )
|
||||
PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" python3_12 )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit distutils-r1 virtualx
|
||||
|
||||
DESCRIPTION="An asynchronous networking framework written in Python"
|
||||
HOMEPAGE="https://www.twistedmatrix.com/trac/"
|
||||
SRC_URI="
|
||||
https://github.com/twisted/twisted/archive/${P}.tar.gz -> ${P}.gh.tar.gz
|
||||
https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz
|
||||
"
|
||||
S=${WORKDIR}/${PN}-${P}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
|
||||
IUSE="conch http2 serial ssl test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/automat-0.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/constantly-15.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/hyperlink-17.1.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/incremental-21.3.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/typing-extensions-3.6.5[${PYTHON_USEDEP}]
|
||||
>=dev-python/zope-interface-4.4.2[${PYTHON_USEDEP}]
|
||||
conch? (
|
||||
>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/bcrypt-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-2.6[${PYTHON_USEDEP}]
|
||||
dev-python/pyasn1[${PYTHON_USEDEP}]
|
||||
)
|
||||
http2? (
|
||||
<dev-python/h2-5.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/h2-3.0.0[${PYTHON_USEDEP}]
|
||||
<dev-python/priority-2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/priority-1.1.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
serial? (
|
||||
>=dev-python/pyserial-3.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
ssl? (
|
||||
>=dev-python/pyopenssl-21.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-2.4[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
>=dev-python/incremental-21.3.0[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
$(python_gen_cond_dep '
|
||||
>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/constantly-15.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cython-test-exception-raiser-1.0.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-2.4[${PYTHON_USEDEP}]
|
||||
dev-python/hypothesis[${PYTHON_USEDEP}]
|
||||
dev-python/pyasn1[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyhamcrest-1.9.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyserial-3.0[${PYTHON_USEDEP}]
|
||||
virtual/openssh
|
||||
conch? (
|
||||
>=dev-python/bcrypt-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-2.6[${PYTHON_USEDEP}]
|
||||
)
|
||||
ssl? (
|
||||
>=dev-python/pyopenssl-21.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
' "${PYTHON_TESTED[@]}")
|
||||
$(python_gen_cond_dep '
|
||||
dev-python/gmpy[${PYTHON_USEDEP}]
|
||||
' python3_{8..10})
|
||||
)
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
# https://twistedmatrix.com/trac/ticket/10200
|
||||
"${FILESDIR}/${PN}-22.1.0-force-gtk3.patch"
|
||||
|
||||
"${FILESDIR}/${PN}-22.10.0-python3.11-tests.patch"
|
||||
"${FILESDIR}/${PN}-22.10.0-time.patch"
|
||||
"${FILESDIR}/${PN}-22.10.0-sendmail.patch"
|
||||
)
|
||||
|
||||
python_prepare_all() {
|
||||
# upstream test for making releases; not very useful and requires
|
||||
# sphinx (including on py2)
|
||||
rm src/twisted/python/test/test_release.py || die
|
||||
|
||||
# puts system in EMFILE state, then the exception handler may fail
|
||||
# trying to open more files due to some gi magic
|
||||
sed -e '/SKIP_EMFILE/s:False:True:' \
|
||||
-i src/twisted/internet/test/test_tcp.py || die
|
||||
|
||||
# multicast tests fail within network-sandbox
|
||||
sed -e 's:test_joinLeave:_&:' \
|
||||
-e 's:test_loopback:_&:' \
|
||||
-e 's:test_multiListen:_&:' \
|
||||
-e 's:test_multicast:_&:' \
|
||||
-i src/twisted/test/test_udp.py || die
|
||||
|
||||
# These tests rely on warnings which seems work unreliably between python versions
|
||||
sed -e 's:test_currentEUID:_&:' \
|
||||
-e 's:test_currentUID:_&:' -i src/twisted/python/test/test_util.py || die
|
||||
|
||||
# broken by new expat
|
||||
sed -e 's:test_namespaceWithWhitespace:_&:' \
|
||||
-i src/twisted/words/test/test_domish.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# the test suite handles missing file & failing ioctl()s gracefully
|
||||
# but not permission errors from sandbox
|
||||
addwrite /dev/net/tun
|
||||
virtx distutils-r1_src_test
|
||||
}
|
||||
|
||||
python_test() {
|
||||
if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
|
||||
einfo "Skipping tests on ${EPYTHON} (xfail)"
|
||||
return
|
||||
fi
|
||||
|
||||
"${EPYTHON}" -m twisted.trial twisted ||
|
||||
die "Tests failed with ${EPYTHON}"
|
||||
}
|
||||
|
||||
python_install() {
|
||||
distutils-r1_python_install
|
||||
|
||||
# own the dropin.cache so we don't leave orphans
|
||||
> "${D}$(python_get_sitedir)"/twisted/plugins/dropin.cache || die
|
||||
|
||||
python_doscript "${WORKDIR}"/twisted-regen-cache
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
newconfd "${FILESDIR}/twistd.conf" twistd
|
||||
newinitd "${FILESDIR}/twistd.init" twistd
|
||||
}
|
||||
|
||||
python_postinst() {
|
||||
twisted-regen-cache || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z ${ROOT} ]]; then
|
||||
python_foreach_impl python_postinst
|
||||
fi
|
||||
}
|
||||
|
||||
python_postrm() {
|
||||
rm -f "${ROOT}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
# if we're removing the last version, remove the cache file
|
||||
if [[ ! ${REPLACING_VERSIONS} ]]; then
|
||||
python_foreach_impl python_postrm
|
||||
fi
|
||||
}
|
||||
@@ -1,154 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=hatchling
|
||||
PYTHON_TESTED=( python3_{10..12} pypy3 )
|
||||
PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
|
||||
PYTHON_REQ_USE="threads(+)"
|
||||
|
||||
inherit distutils-r1 pypi virtualx
|
||||
|
||||
DESCRIPTION="An asynchronous networking framework written in Python"
|
||||
HOMEPAGE="
|
||||
https://twisted.org/
|
||||
https://github.com/twisted/twisted/
|
||||
https://pypi.org/project/Twisted/
|
||||
"
|
||||
SRC_URI+="
|
||||
https://dev.gentoo.org/~mgorny/dist/twisted-regen-cache.gz
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos"
|
||||
IUSE="conch http2 serial ssl test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/automat-0.8.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/constantly-15.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/hyperlink-17.1.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/incremental-22.10.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/typing-extensions-3.10.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/zope-interface-5[${PYTHON_USEDEP}]
|
||||
conch? (
|
||||
>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/bcrypt-3.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/cryptography-3.3[${PYTHON_USEDEP}]
|
||||
dev-python/pyasn1[${PYTHON_USEDEP}]
|
||||
)
|
||||
http2? (
|
||||
<dev-python/h2-5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/h2-3.0.0[${PYTHON_USEDEP}]
|
||||
<dev-python/priority-2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/priority-1.1.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
serial? (
|
||||
>=dev-python/pyserial-3.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
ssl? (
|
||||
>=dev-python/pyopenssl-21.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-2.4[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
>=dev-python/hatch-fancy-pypi-readme-22.5.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/incremental-22.10.0[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
${RDEPEND}
|
||||
$(python_gen_cond_dep '
|
||||
>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/constantly-15.1.0[${PYTHON_USEDEP}]
|
||||
<dev-python/cython-test-exception-raiser-2[${PYTHON_USEDEP}]
|
||||
>=dev-python/cython-test-exception-raiser-1.0.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/idna-2.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/hypothesis-6.56[${PYTHON_USEDEP}]
|
||||
dev-python/pyasn1[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyhamcrest-2[${PYTHON_USEDEP}]
|
||||
>=dev-python/pyserial-3.0[${PYTHON_USEDEP}]
|
||||
virtual/openssh
|
||||
ssl? (
|
||||
>=dev-python/pyopenssl-21.0.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/service-identity-18.1.0[${PYTHON_USEDEP}]
|
||||
)
|
||||
' "${PYTHON_TESTED[@]}")
|
||||
)
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
# https://github.com/twisted/twisted/pull/11787
|
||||
"${FILESDIR}/${PN}-22.10.0-time.patch"
|
||||
)
|
||||
|
||||
python_prepare_all() {
|
||||
# upstream test for making releases; not very useful and requires
|
||||
# sphinx (including on py2)
|
||||
rm src/twisted/python/test/test_release.py || die
|
||||
|
||||
# multicast tests fail within network-sandbox
|
||||
sed -e 's:test_joinLeave:_&:' \
|
||||
-e 's:test_loopback:_&:' \
|
||||
-e 's:test_multiListen:_&:' \
|
||||
-e 's:test_multicast:_&:' \
|
||||
-i src/twisted/test/test_udp.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# the test suite handles missing file & failing ioctl()s gracefully
|
||||
# but not permission errors from sandbox
|
||||
addwrite /dev/net/tun
|
||||
virtx distutils-r1_src_test
|
||||
}
|
||||
|
||||
python_test() {
|
||||
if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
|
||||
einfo "Skipping tests on ${EPYTHON} (xfail)"
|
||||
return
|
||||
fi
|
||||
|
||||
"${EPYTHON}" -m twisted.trial twisted ||
|
||||
die "Tests failed with ${EPYTHON}"
|
||||
}
|
||||
|
||||
python_install() {
|
||||
distutils-r1_python_install
|
||||
|
||||
# own the dropin.cache so we don't leave orphans
|
||||
> "${D}$(python_get_sitedir)"/twisted/plugins/dropin.cache || die
|
||||
|
||||
python_doscript "${WORKDIR}"/twisted-regen-cache
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
distutils-r1_python_install_all
|
||||
|
||||
newconfd "${FILESDIR}/twistd.conf" twistd
|
||||
newinitd "${FILESDIR}/twistd.init" twistd
|
||||
}
|
||||
|
||||
python_postinst() {
|
||||
twisted-regen-cache || die
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if [[ -z ${ROOT} ]]; then
|
||||
python_foreach_impl python_postinst
|
||||
fi
|
||||
}
|
||||
|
||||
python_postrm() {
|
||||
rm -f "${ROOT}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
# if we're removing the last version, remove the cache file
|
||||
if [[ ! ${REPLACING_VERSIONS} ]]; then
|
||||
python_foreach_impl python_postrm
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user