mirror of
https://git.freebsd.org/ports.git
synced 2025-06-17 02:30:44 -04:00
- Fix build with Python 3.11a4 [1]
Changes: https://github.com/cython/cython/blob/master/CHANGES.rst
Obtained from: bbac8b5476
[1]
25 lines
651 B
Makefile
25 lines
651 B
Makefile
# Created by: Wen Heping <wenhping@gmail.com>
|
|
|
|
PORTNAME= cython
|
|
PORTVERSION= 0.29.27
|
|
CATEGORIES= lang python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Cython-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Compiler for Writing C Extensions for the Python Language
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= compiler:c11 python:2.7+
|
|
USE_PYTHON= allflavors autoplist concurrent distutils
|
|
|
|
# bin/cygdb bin/cython bin/cythonize
|
|
CONFLICTS_INSTALL= py*-cython-devel
|
|
|
|
post-install:
|
|
${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Cython -name '*.so' -exec ${STRIP_CMD} {} +
|
|
|
|
.include <bsd.port.mk>
|