1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

devel/py-taskgroup: Add py-taskgroup 0.0.0a4

taskgroup provides backport of asyncio.TaskGroup, asyncio.Runner and
asyncio.timeout.
This commit is contained in:
Po-Chuan Hsieh 2024-05-28 17:59:30 +08:00
parent 045bd05313
commit 6f76f5265a
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 29 additions and 0 deletions

View File

@ -5796,6 +5796,7 @@
SUBDIR += py-tartiflette
SUBDIR += py-tartiflette-aiohttp
SUBDIR += py-taskflow
SUBDIR += py-taskgroup
SUBDIR += py-tasklib
SUBDIR += py-tblib
SUBDIR += py-tdworkflow

View File

@ -0,0 +1,23 @@
PORTNAME= taskgroup
PORTVERSION= 0.0.0a4
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Backport of asyncio.TaskGroup, asyncio.Runner and asyncio.timeout
WWW= https://github.com/graingert/taskgroup
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}flit-core>=3.2<4:devel/py-flit-core@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}exceptiongroup>=0:devel/py-exceptiongroup@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.8<5:devel/py-typing-extensions@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1716448630
SHA256 (taskgroup-0.0.0a4.tar.gz) = eb08902d221e27661950f2a0320ddf3f939f579279996f81fe30779bca3a159c
SIZE (taskgroup-0.0.0a4.tar.gz) = 8553

View File

@ -0,0 +1,2 @@
taskgroup provides backport of asyncio.TaskGroup, asyncio.Runner and
asyncio.timeout.