From a6d008a82762f4133c1e657f29c2cf1594e9aace Mon Sep 17 00:00:00 2001 From: recht Date: Thu, 19 Aug 2004 20:44:31 +0000 Subject: update to Pyrex-0.9.3 Enhancements: - Types defined with a ctypedef in a 'cdef extern from' block are now referred to by the typedef name in generated C code, so it is no longer necessary to match the type in the C header file exactly. - Conversion to/from unsigned long now done with PyLong_AsUnsignedLong and PyLong_FromUnsignedLong. [Dug Song ] - A struct, union or enum definition in a 'cdef extern from' block may now be left empty (using 'pass'). This can be useful if you need to declare a variable of that type, but don't need to refer to any of its members. - More flexible about ordering of qualifiers such as 'long' and 'unsigned'. ["John (J5) Palmieri" ] Bug fixes: - Non-interned string literals used in a Python class definition did not work. [Atsuo Ishimoto ] [Andreas Kostyrka ] - Return types of the buffer interface functions for extension types have been corrected. [Dug Song ] - Added 'static' to declarations of string literals. [Phil Frost ] - Float literals are now copied directly to the C code as written, to avoid problems with loss of precision. [Mario Pernici ] - Inheriting from an extension type with C methods defined in another Pyrex module did not work. [Itamar Shtull-Trauring ] --- lang/py-pyrex/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lang/py-pyrex/Makefile') diff --git a/lang/py-pyrex/Makefile b/lang/py-pyrex/Makefile index b7905ca719f..11763baacee 100644 --- a/lang/py-pyrex/Makefile +++ b/lang/py-pyrex/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2004/05/28 22:15:15 recht Exp $ +# $NetBSD: Makefile,v 1.8 2004/08/19 20:44:31 recht Exp $ -DISTNAME= Pyrex-0.9.2.1 +DISTNAME= Pyrex-0.9.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/P/p/} CATEGORIES= lang python MASTER_SITES= http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/ @@ -11,7 +11,7 @@ COMMENT= A Language for Writing Python Extension Modules PYTHON_VERSIONS_ACCEPTED= 23 23pth 22 22pth -PYDISTUTILSPKG= # defined +PYDISTUTILSPKG= yes USE_BUILDLINK3= yes .include "../../lang/python/extension.mk" -- cgit v1.2.3