View | Details | Raw Unified | Return to bug 257333
Collapse All | Expand All

(-)b/devel/Makefile (+1 lines)
Lines 4104-4109 Link Here
4104
    SUBDIR += py-astroid
4104
    SUBDIR += py-astroid
4105
    SUBDIR += py-asttokens
4105
    SUBDIR += py-asttokens
4106
    SUBDIR += py-astunparse
4106
    SUBDIR += py-astunparse
4107
    SUBDIR += py-async-exit-stack
4107
    SUBDIR += py-async_generator
4108
    SUBDIR += py-async_generator
4108
    SUBDIR += py-async_timeout
4109
    SUBDIR += py-async_timeout
4109
    SUBDIR += py-asyncio
4110
    SUBDIR += py-asyncio
(-)b/devel/py-async-exit-stack/Makefile (+25 lines)
Added Link Here
1
PORTNAME=	async-exit-stack
2
DISTVERSION=	1.0.1
3
CATEGORIES=	devel python
4
MASTER_SITES=	CHEESESHOP
5
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
6
DISTNAME=	async_exit_stack-${DISTVERSION}
7
8
MAINTAINER=	meka@tilda.center
9
COMMENT=	AsyncExitStack backport for Python 3.5+
10
11
LICENSE=	PSFL
12
13
TEST_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR}
14
15
USES=		python:3.5+
16
USE_PYTHON=	autoplist concurrent distutils
17
18
TEST_ENV=	PYTHONPATH=${WRKSRC}/src
19
20
NO_ARCH=	yes
21
22
do-test:
23
	cd ${WRKSRC} && ${SETENV} ${TEST_ENV} ${PYTHON_CMD} -m pytest -v -rs -o addopts=
24
25
.include <bsd.port.mk>
(-)b/devel/py-async-exit-stack/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1626960863
2
SHA256 (async_exit_stack-1.0.1.tar.gz) = 24de1ad6d0ff27be97c89d6709fa49bf20db179eaf1f4d2e6e9b4409b80e747d
3
SIZE (async_exit_stack-1.0.1.tar.gz) = 10562
(-)b/devel/py-async-exit-stack/pkg-descr (+3 lines)
Added Link Here
1
AsyncExitStack backport for Python 3.5+
2
3
WWW: https://github.com/sorcio/async_exit_stack

Return to bug 257333