mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to release 21.2.0: - The enableSessions argument to twisted.internet.ssl.CertificateOptions now actually enables/disables OpenSSL's session cache. Also, due to session-related bugs, it defaults to False. - twisted.internet.defer.inlineCallbacks and ensureDeferred will now associate a contextvars.Context with the coroutines they run, meaning that ContextVar objects will maintain their value within the same coroutine, similarly to asyncio Tasks. This functionality requires Python 3.7+, or the contextvars PyPI backport to be installed for Python 3.5-3.6. - twisted.internet.defer.Deferred.fromCoroutine has been added. This is similar to the existing ensureDeferred function, but is named more consistently inside Twisted and does not pass through Deferreds. - trial now allows the @unittest.skipIf decorator to specify that an entire test class should be skipped. - The twisted.python.deprecate.deprecatedKeywordParameter decorator can be used to mark a keyword paramater of a function or method as deprecated. - Projects using Twisted can now perform type checking against a Twisted installation, for example using mypy. - twisted.python.util.InsensitiveDict now fully implements MutableMapping. - Python 3.8 is now tested and supported. - Support a coroutine function in twisted.internet.task.react. - PyPy 3.7 is now tested and supported. - twisted.web.twcgi.CGIProcessProtocol.processEnded(...) now handles an already-finished request, for example when request.connectionLost(...) was called previously. - Twisted's dependency on PyHamcrest has been moved from the base package to the new "test" extra. Consequently the test extra must be installed for Twisted's test suite to pass. - Fixed serialization of timedelta, date, and time objects in twisted.spread. - twisted.internet.asyncioreactor.AsyncioSelectorReactor now raises an exception if instantiated with an event loop which is not compatible with asyncio.SelectorEventLoop. This fixes the AsyncioSelectorReactor in Python 3.8+ on Windows, where in bp-34687 the default Windows asyncio event loop was changed to ProactorEventLoop. Applications that use AsyncioSelectorReactor on Windows with Python 3.8+ must call asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) before instantiating and running AsyncioSelectorReactor. - twisted.internet.process.registerReapProcessHandler and ._BaseProcess.reapProcess will no longer raise a TypeError when processing a None PID - INotify will close its file descriptor if a directory is automatically removed by twisted from the watchlist because it's deleted, avoiding orphaned filedescriptors. - DelayedCall.reset() is now working properly with asyncioreactor. - AsyncioSelectorReactor.seconds() now correctly returns an epoch time. - The _connDone parameter has been removed from twisted.internet.abstract.FileDescriptor.loseConnection()'s signature in order to match the signature in the base class twisted.internet._newtls.ConnectionMixin loseConnection(). - The Gtk3 reactor now runs on Wayland-only sessions - Descriptive error messages from twisted.internet.error are now present when running with 'python -OO'. - Comparator methods such as eq() now always return NotImplemented for uncomparable types. - When installing Twisted it now requires a minimum Python 3.5.4 version to match the version used with automated testing. This is the minimum Python version that we know that Twisted works with. License-Update: Add contributors and update year. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
325 lines
13 KiB
BlitzBasic
325 lines
13 KiB
BlitzBasic
DESCRIPTION = "Twisted is an event-driven networking framework written in Python and licensed under the LGPL. \
|
|
Twisted supports TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols \
|
|
(including HTTP, NNTP, IMAP, SSH, IRC, FTP, and others), and much more."
|
|
HOMEPAGE = "http://www.twistedmatrix.com"
|
|
|
|
#twisted/topfiles/NEWS:655: - Relicensed: Now under the MIT license, rather than LGPL.
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e33c411c0b86b1f3ca299091ed51ca31"
|
|
|
|
SRC_URI[sha256sum] = "77544a8945cf69b98d2946689bbe0c75de7d145cdf11f391dd487eae8fc95a12"
|
|
|
|
PYPI_PACKAGE = "Twisted"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
do_install_append() {
|
|
# remove some useless files before packaging
|
|
find ${D} \( -name "*.bat" -o -name "*.c" -o -name "*.h" \) -exec rm -f {} \;
|
|
}
|
|
|
|
PACKAGES += "\
|
|
${PN}-zsh \
|
|
${PN}-test \
|
|
${PN}-protocols \
|
|
${PN}-conch \
|
|
${PN}-mail \
|
|
${PN}-names \
|
|
${PN}-news \
|
|
${PN}-runner \
|
|
${PN}-web \
|
|
${PN}-words \
|
|
${PN}-flow \
|
|
${PN}-pair \
|
|
${PN}-core \
|
|
"
|
|
|
|
PACKAGES =+ "\
|
|
${PN}-bin \
|
|
"
|
|
|
|
DEPENDS += " \
|
|
${PYTHON_PN}-incremental-native \
|
|
"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
${PN}-bin \
|
|
${PN}-core \
|
|
${PN}-conch \
|
|
${PN}-mail \
|
|
${PN}-names \
|
|
${PN}-pair \
|
|
${PN}-protocols \
|
|
${PN}-runner \
|
|
${PN}-web \
|
|
${PN}-words \
|
|
${PN}-zsh \
|
|
"
|
|
|
|
RDEPENDS_${PN}-core = "${PYTHON_PN}-appdirs \
|
|
${PYTHON_PN}-automat \
|
|
${PYTHON_PN}-constantly \
|
|
${PYTHON_PN}-core \
|
|
${PYTHON_PN}-debugger \
|
|
${PYTHON_PN}-hyperlink \
|
|
${PYTHON_PN}-incremental \
|
|
${PYTHON_PN}-pyhamcrest \
|
|
${PYTHON_PN}-pyserial \
|
|
${PYTHON_PN}-unixadmin \
|
|
${PYTHON_PN}-zopeinterface \
|
|
"
|
|
RDEPENDS_${PN}-test = "${PN}"
|
|
RDEPENDS_${PN}-conch = "${PN}-core ${PN}-protocols ${PYTHON_PN}-bcrypt ${PYTHON_PN}-cryptography ${PYTHON_PN}-pyasn1 ${PYTHON_PN}-pickle"
|
|
RDEPENDS_${PN}-mail = "${PN}-core ${PN}-protocols"
|
|
RDEPENDS_${PN}-names = "${PN}-core"
|
|
RDEPENDS_${PN}-news = "${PN}-core ${PN}-protocols"
|
|
RDEPENDS_${PN}-runner = "${PN}-core ${PN}-protocols"
|
|
RDEPENDS_${PN}-web += "${PN}-core ${PN}-protocols"
|
|
RDEPENDS_${PN}-words += "${PN}-core"
|
|
RDEPENDS_${PN}-flow += "${PN}-core"
|
|
RDEPENDS_${PN}-pair += "${PN}-core"
|
|
RDEPENDS_${PN}-dbg = "${PN}"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
FILES_${PN} = ""
|
|
|
|
FILES_${PN}-test = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/test \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/test \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/haproxy/test/ \
|
|
"
|
|
|
|
FILES_${PN}-protocols = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/*.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/gps/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/mice/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/haproxy \
|
|
"
|
|
|
|
FILES_${PN}-zsh = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zsh \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/twisted-completion.zsh \
|
|
"
|
|
|
|
FILES_${PN}-conch = " \
|
|
${bindir}/ckeygen \
|
|
${bindir}/tkconch \
|
|
${bindir}/conch \
|
|
${bindir}/conchftp \
|
|
${bindir}/cftp \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_conch.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/conch \
|
|
"
|
|
|
|
FILES_${PN}-core = " \
|
|
${bindir}/manhole \
|
|
${bindir}/mktap \
|
|
${bindir}/twistd \
|
|
${bindir}/tap2deb \
|
|
${bindir}/tap2rpm \
|
|
${bindir}/tapconvert \
|
|
${bindir}/tkmktap \
|
|
${bindir}/trial \
|
|
${bindir}/easy_install* \
|
|
${bindir}/pyhtmlizer \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.so \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__init__.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/notestplugin.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/testplugin.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_ftp.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_inet.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_manhole.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_portforward.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_socks.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_telnet.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_trial.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/dropin.cache \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/application \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/cred \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/enterprise \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/internet \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/persisted \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols\
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python\
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/timeoutqueue.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/filepath.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dxprofile.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/plugin.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/htmlizer.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/__init__.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dispatch.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/hook.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadpool.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/otp.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/usage.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/roots.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/versions.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/urlpath.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/util.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/components.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/logfile.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/runtime.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/reflect.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/context.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadable.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/rebuild.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/failure.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/lockfile.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/formmethod.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/finalize.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/win32.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dist.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/shortcut.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zipstream.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/release.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/syslog.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/log.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/compat.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/procutils.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/text.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/_twisted_zsh_stub \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/scripts/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/tap/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/trial/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/__init__.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/_version.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/copyright.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/im.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/*.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/topfiles \
|
|
${libdir}/${PYTHON_DIR}/site-packages/Twisted*egg-info \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/logger/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/_threads/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/positioning/ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/py.typed \
|
|
"
|
|
|
|
FILES_${PN}-mail = " \
|
|
${bindir}/mailmail \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_mail.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/mail \
|
|
"
|
|
|
|
FILES_${PN}-names = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_names.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/names \
|
|
"
|
|
|
|
FILES_${PN}-news = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_news.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/news \
|
|
"
|
|
|
|
FILES_${PN}-runner = " \
|
|
${libdir}/site-packages/twisted/runner/portmap.so \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/runner\
|
|
"
|
|
|
|
FILES_${PN}-web = " \
|
|
${bindir}/websetroot \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_web.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/web\
|
|
"
|
|
|
|
FILES_${PN}-words = " \
|
|
${bindir}/im \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_words.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/words\
|
|
"
|
|
|
|
FILES_${PN}-flow = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_flow.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/flow \"
|
|
|
|
FILES_${PN}-pair = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_pair.py* \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/pair \
|
|
"
|
|
|
|
FILES_${PN}-dbg += " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/.debug \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/.debug \
|
|
"
|
|
|
|
FILES_${PN}-doc += " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/_pydoctortemplates/ \
|
|
"
|
|
|
|
RDEPENDS_${PN}-src = "${PN}"
|
|
FILES_${PN}-src = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*.py \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/*.py \
|
|
"
|
|
|
|
FILES_${PN}-core_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/__pycache__ \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/__pycache__/*pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/__init__*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/notestplugin*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/testplugin*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_ftp*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_inet*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_manhole*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_portforward*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_socks*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_telnet*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_trial*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_core*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_qtstub*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_reactors*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/cred*.pyc \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/dropin*.cache \
|
|
"
|
|
|
|
FILES_${PN}-names_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_names*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-news_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_news*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-protocols_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/__pycache__/*pyc \
|
|
"
|
|
|
|
FILES_${PN}-conch_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_conch*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-lore_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_lore*.pyc \
|
|
"
|
|
FILES_${PN}-mail_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_mail*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-web_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_web*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-words_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_words*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-flow_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_flow*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-pair_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_pair*.pyc \
|
|
"
|
|
|
|
FILES_${PN}-runner_append = " \
|
|
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__pycache__/twisted_runner*.pyc \
|
|
"
|