Date: Mon, 10 Aug 2015 07:50:06 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393848 - in head/devel: . nuitka Message-ID: <201508100750.t7A7o6VE003655@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Mon Aug 10 07:50:05 2015 New Revision: 393848 URL: https://svnweb.freebsd.org/changeset/ports/393848 Log: Add a port of Nuitka, compatible and efficient Python compiler. Those of you who were fighting with cx_Freeze, PyInstaller, or py2exe to DTRT would likely find it as better alternative, superior in many ways. WWW: http://nuitka.net/ Added: head/devel/nuitka/ head/devel/nuitka/Makefile (contents, props changed) head/devel/nuitka/distinfo (contents, props changed) head/devel/nuitka/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Aug 10 07:06:01 2015 (r393847) +++ head/devel/Makefile Mon Aug 10 07:50:05 2015 (r393848) @@ -1460,6 +1460,7 @@ SUBDIR += noweb SUBDIR += npth SUBDIR += nspr + SUBDIR += nuitka SUBDIR += nxt-python SUBDIR += obby SUBDIR += obfuscatejs Added: head/devel/nuitka/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nuitka/Makefile Mon Aug 10 07:50:05 2015 (r393848) @@ -0,0 +1,18 @@ +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= nuitka +PORTVERSION= 0.5.13.4 +CATEGORIES= devel python +MASTER_SITES= http://nuitka.net/releases/ +DISTNAME= Nuitka-${PORTVERSION} + +MAINTAINER= python@FreeBSD.org +COMMENT= Compatible and efficient Python compiler + +LICENSE= APACHE20 + +USES= python tar:bzip2 +USE_PYTHON= autoplist distutils + +.include <bsd.port.mk> Added: head/devel/nuitka/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nuitka/distinfo Mon Aug 10 07:50:05 2015 (r393848) @@ -0,0 +1,2 @@ +SHA256 (Nuitka-0.5.13.4.tar.bz2) = 972078cdc1366d7ce6a6988e8010c3b05d0b997556f9422803d592ffe6bc7d23 +SIZE (Nuitka-0.5.13.4.tar.bz2) = 1092329 Added: head/devel/nuitka/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/nuitka/pkg-descr Mon Aug 10 07:50:05 2015 (r393848) @@ -0,0 +1,6 @@ +Nuitka is a Python compiler, a good replacement for the Python interpreter +and compiles every construct that CPython 2.6, 2.7, 3.2, 3.3 and 3.4 offer. +It translates Python code into a C++ program that then uses "libpython" to +execute in the same way as CPython does, in a very compatible way. + +WWW: http://nuitka.net/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508100750.t7A7o6VE003655>