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

(-)databases/py-asyncpg/Makefile (-1 / +5 lines)
Lines 14-24 LICENSE_FILE= ${WRKSRC}/LICENSE Link Here
14
14
15
USES=		cpe pgsql:9.2+ python:3.6+
15
USES=		cpe pgsql:9.2+ python:3.6+
16
CPE_VENDOR=	magic
16
CPE_VENDOR=	magic
17
USE_PYTHON=	autoplist concurrent distutils
17
USE_PYTHON=	autoplist concurrent cython distutils
18
18
19
OPTIONS_DEFINE=	DOCS
19
OPTIONS_DEFINE=	DOCS
20
PORTDOCS=	PKG-INFO README.rst
20
PORTDOCS=	PKG-INFO README.rst
21
21
22
post-extract:
23
	@${RM} ${WRKSRC}/asyncpg/pgproto/*.c
24
	@${RM} ${WRKSRC}/asyncpg/protocol/*.c
25
22
post-install:
26
post-install:
23
	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/asyncpg/protocol/protocol*.so
27
	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/asyncpg/protocol/protocol*.so
24
	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/asyncpg/pgproto/pgproto*.so
28
	@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/asyncpg/pgproto/pgproto*.so
(-)databases/py-asyncpg/files/patch-setup.py (+11 lines)
Added Link Here
1
--- setup.py.orig	2021-11-16 22:38:59 UTC
2
+++ setup.py
3
@@ -25,7 +25,7 @@ from setuptools.command import sdist as setuptools_sdi
4
 from setuptools.command import build_ext as setuptools_build_ext
5
 
6
 
7
-CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'
8
+CYTHON_DEPENDENCY = 'Cython(>=0.29.24)'
9
 
10
 # Minimal dependencies required to test asyncpg.
11
 TEST_DEPENDENCIES = [

Return to bug 260067