Index: head/lang/cython/Makefile =================================================================== --- head/lang/cython/Makefile (revision 492014) +++ head/lang/cython/Makefile (revision 492015) @@ -1,25 +1,24 @@ # Created by: Wen Heping # $FreeBSD$ PORTNAME= cython PORTVERSION= 0.29 CATEGORIES= lang python -MASTER_SITES= http://www.cython.org/release/ \ - CHEESESHOP +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Cython-${PORTVERSION} MAINTAINER= vmagerya@gmail.com COMMENT= Compiler for Writing C Extensions for the Python Language LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= python USE_PYTHON= autoplist distutils concurrent allflavors post-install: ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/Cython \ -name '*.so' -exec ${STRIP_CMD} {} + .include Index: head/lang/cython/pkg-descr =================================================================== --- head/lang/cython/pkg-descr (revision 492014) +++ head/lang/cython/pkg-descr (revision 492015) @@ -1,16 +1,16 @@ 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. -WWW: http://www.cython.org/ +WWW: https://cython.org/