diff --git a/devel/py-txaio/Makefile b/devel/py-txaio/Makefile index 0543e3525f9f..8f2c31b9c561 100644 --- a/devel/py-txaio/Makefile +++ b/devel/py-txaio/Makefile @@ -1,33 +1,32 @@ PORTNAME= txaio -PORTVERSION= 22.2.1 -PORTREVISION= 1 +DISTVERSION= 23.1.1 CATEGORIES= devel python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= bofh@FreeBSD.org COMMENT= Compatibility API between asyncio/Twisted/Trollius WWW= https://github.com/crossbario/txaio LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.6.4:devel/py-pytest@${PY_FLAVOR} USES= python USE_PYTHON= autoplist distutils NO_ARCH= yes OPTIONS_DEFINE= TWISTED OPTIONS_DEFAULT= TWISTED TWISTED_DESC= Twisted network backend support TWISTED_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twisted>=20.3.0:devel/py-twisted@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}zope.interface>=5.2.0:devel/py-zope.interface@${PY_FLAVOR} do-test: @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs .include diff --git a/devel/py-txaio/distinfo b/devel/py-txaio/distinfo index 39c9b4508fb2..524510016a86 100644 --- a/devel/py-txaio/distinfo +++ b/devel/py-txaio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1646894052 -SHA256 (txaio-22.2.1.tar.gz) = 2e4582b70f04b2345908254684a984206c0d9b50e3074a24a4c55aba21d24d01 -SIZE (txaio-22.2.1.tar.gz) = 53645 +TIMESTAMP = 1778901587 +SHA256 (txaio-23.1.1.tar.gz) = f9a9216e976e5e3246dfd112ad7ad55ca915606b60b84a757ac769bd404ff704 +SIZE (txaio-23.1.1.tar.gz) = 53704 diff --git a/devel/py-txaio/files/patch-test_test__packaging.py b/devel/py-txaio/files/patch-test_test__packaging.py deleted file mode 100644 index db65e6bc4ccf..000000000000 --- a/devel/py-txaio/files/patch-test_test__packaging.py +++ /dev/null @@ -1,20 +0,0 @@ ---- test/test_packaging.py.orig 2015-10-11 12:44:56 UTC -+++ test/test_packaging.py -@@ -37,7 +37,7 @@ import txaio - def test_sdist(): - if not hasattr(subprocess, 'check_output'): - pytest.skip() -- subprocess.check_output([sys.executable, 'setup.py', 'sdist'], cwd='..') -+ subprocess.check_output([sys.executable, 'setup.py', 'sdist']) - tmp = tempfile.mkdtemp() - try: - subprocess.check_output([ -@@ -47,7 +47,7 @@ def test_sdist(): - 'install', - '--target', tmp, - '--no-deps', -- '../dist/txaio-{}.tar.gz'.format(txaio.__version__), -+ 'dist/txaio-{}.tar.gz'.format(txaio.__version__), - ]) - finally: - rmtree(tmp)