From owner-cvs-all@FreeBSD.ORG Sun Nov 9 22:56:36 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 803A01065673; Sun, 9 Nov 2008 22:56:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 77D458FC13; Sun, 9 Nov 2008 22:56:36 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id mA9MuZ9g093279; Sun, 9 Nov 2008 22:56:35 GMT (envelope-from miwi@repoman.freebsd.org) Received: (from miwi@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id mA9MuZuv093278; Sun, 9 Nov 2008 22:56:35 GMT (envelope-from miwi) Message-Id: <200811092256.mA9MuZuv093278@repoman.freebsd.org> From: Martin Wilke Date: Sun, 9 Nov 2008 22:56:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/lang Makefile ports/lang/cython Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Nov 2008 22:56:36 -0000 miwi 2008-11-09 22:56:35 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/cython Makefile distinfo pkg-descr pkg-plist Log: 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/ PR: ports/128722 Submitted by: Wen Heping Revision Changes Path 1.603 +1 -0 ports/lang/Makefile 1.1 +21 -0 ports/lang/cython/Makefile (new) 1.1 +3 -0 ports/lang/cython/distinfo (new) 1.1 +16 -0 ports/lang/cython/pkg-descr (new) 1.1 +262 -0 ports/lang/cython/pkg-plist (new)