diff --git a/lang/cython/Makefile b/lang/cython/Makefile index 970481b0ceaf..6a8a17cf7546 100644 --- a/lang/cython/Makefile +++ b/lang/cython/Makefile @@ -1,24 +1,25 @@ PORTNAME= cython -PORTVERSION= 0.29.32 +PORTVERSION= 0.29.33 CATEGORIES= lang python MASTER_SITES= PYPI PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Cython-${PORTVERSION} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Compiler for Writing C Extensions for the Python Language -WWW= https://cython.org/ +WWW= https://cython.org/ \ + https://github.com/cython/cython 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 diff --git a/lang/cython/distinfo b/lang/cython/distinfo index 325639d75137..b8ccd40a7007 100644 --- a/lang/cython/distinfo +++ b/lang/cython/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1659209948 -SHA256 (Cython-0.29.32.tar.gz) = 8733cf4758b79304f2a4e39ebfac5e92341bce47bcceb26c1254398b2f8c1af7 -SIZE (Cython-0.29.32.tar.gz) = 2088773 +TIMESTAMP = 1674589514 +SHA256 (Cython-0.29.33.tar.gz) = 5040764c4a4d2ce964a395da24f0d1ae58144995dab92c6b96f44c3f4d72286a +SIZE (Cython-0.29.33.tar.gz) = 2093693 diff --git a/lang/cython/pkg-descr b/lang/cython/pkg-descr index 8d82a5839466..3c57b208ba46 100644 --- a/lang/cython/pkg-descr +++ b/lang/cython/pkg-descr @@ -1,16 +1,14 @@ The Cython language makes writing C extensions for the Python language as easy as Python itself. Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. The Cython language is very close to the Python language (and most Python code is also valid Cython code), but Cython additionally supports calling C functions and declaring C types on variables and class attributes. This allows the compiler to generate very efficient C code from Cython code. This makes Cython the ideal language for writing glue code for external C libraries, and for fast C modules that speed up the execution of Python code. - -See also: https://github.com/cython/cython