From owner-svn-ports-all@freebsd.org Mon Sep 5 17:19:23 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37826B96CA3; Mon, 5 Sep 2016 17:19:23 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0FB67A14; Mon, 5 Sep 2016 17:19:22 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u85HJMBL087631; Mon, 5 Sep 2016 17:19:22 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u85HJLkc087626; Mon, 5 Sep 2016 17:19:21 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201609051719.u85HJLkc087626@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 5 Sep 2016 17:19:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421379 - in head/devel: . py-numba X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Sep 2016 17:19:23 -0000 Author: pi Date: Mon Sep 5 17:19:21 2016 New Revision: 421379 URL: https://svnweb.freebsd.org/changeset/ports/421379 Log: New port: devel/py-numba Numba gives you the power to speed up your applications with high performance functions written directly in Python. With a few annotations, array-oriented and math-heavy Python code can be just-in-time compiled to native machine instructions, similar in performance to C, C++ and Fortran, without having to switch languages or Python interpreters. WWW: http://numba.pydata.org/ PR: 211347 Submitted by: David Kalliecharan Added: head/devel/py-numba/ head/devel/py-numba/Makefile (contents, props changed) head/devel/py-numba/distinfo (contents, props changed) head/devel/py-numba/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Sep 5 17:09:18 2016 (r421378) +++ head/devel/Makefile Mon Sep 5 17:19:21 2016 (r421379) @@ -4273,6 +4273,7 @@ SUBDIR += py-noseofyeti SUBDIR += py-notifier SUBDIR += py-notify + SUBDIR += py-numba SUBDIR += py-ocempgui SUBDIR += py-ode SUBDIR += py-odfpy Added: head/devel/py-numba/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-numba/Makefile Mon Sep 5 17:19:21 2016 (r421379) @@ -0,0 +1,33 @@ +# Created by: David Kalliecharan +# $FreeBSD$ + +PORTNAME= numba +PORTVERSION= 0.28.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dave@dal.ca +COMMENT= Optimizing compiler for Python using LLVM + +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>1.7:math/py-numpy +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}llvmlite>=0.12:devel/py-llvmlite \ + ${PYTHON_PKGNAMEPREFIX}argparse>0:devel/py-argparse + +# Uses Python 2.7, 3.4+ +USES= python fortran +USE_PYTHON= distutils autoplist + +.include + +# Requried for Python 2.7 +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}enum34>0:devel/py-enum34 \ + ${PYTHON_PKGNAMEPREFIX}singledispatch>0:devel/py-singledispatch \ + ${PYTHON_PKGNAMEPREFIX}funcsigs>0:devel/py-funcsigs +.endif + +.include Added: head/devel/py-numba/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-numba/distinfo Mon Sep 5 17:19:21 2016 (r421379) @@ -0,0 +1,3 @@ +TIMESTAMP = 1473095923 +SHA256 (numba-0.28.1.tar.gz) = d77d58a60acef5e52fb19c724084307f806e5b66d5a05499ae9f6a348c71ae24 +SIZE (numba-0.28.1.tar.gz) = 1124384 Added: head/devel/py-numba/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-numba/pkg-descr Mon Sep 5 17:19:21 2016 (r421379) @@ -0,0 +1,7 @@ +Numba gives you the power to speed up your applications with high performance +functions written directly in Python. With a few annotations, array-oriented +and math-heavy Python code can be just-in-time compiled to native machine +instructions, similar in performance to C, C++ and Fortran, without having to +switch languages or Python interpreters. + +WWW: http://numba.pydata.org/