From owner-svn-ports-all@FreeBSD.ORG Fri Mar 6 09:47:53 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 955DB617; Fri, 6 Mar 2015 09:47:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 6737FD56; Fri, 6 Mar 2015 09:47:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t269lrL1038008; Fri, 6 Mar 2015 09:47:53 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t269lqXr038003; Fri, 6 Mar 2015 09:47:52 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201503060947.t269lqXr038003@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Fri, 6 Mar 2015 09:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380579 - in head/math: . py-theano 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.18-1 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: Fri, 06 Mar 2015 09:47:53 -0000 Author: demon Date: Fri Mar 6 09:47:51 2015 New Revision: 380579 URL: https://svnweb.freebsd.org/changeset/ports/380579 QAT: https://qat.redports.org/buildarchive/r380579/ Log: New port: Theano. Theano is a Python library that allows you to define, optimize, and evaluate mathematical expressions involving multi-dimensional arrays efficiently. http://deeplearning.net/software/theano/ Added: head/math/py-theano/ head/math/py-theano/Makefile (contents, props changed) head/math/py-theano/distinfo (contents, props changed) head/math/py-theano/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Mar 6 09:07:00 2015 (r380578) +++ head/math/Makefile Fri Mar 6 09:47:51 2015 (r380579) @@ -582,6 +582,7 @@ SUBDIR += py-svgmath SUBDIR += py-symeig SUBDIR += py-sympy + SUBDIR += py-theano SUBDIR += py-ufl SUBDIR += py-viper SUBDIR += qalculate Added: head/math/py-theano/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-theano/Makefile Fri Mar 6 09:47:51 2015 (r380579) @@ -0,0 +1,21 @@ +# Created by: Dmitry Sivachenko +# $FreeBSD$ + +PORTNAME= theano +PORTVERSION= 0.6.0 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +MASTER_SITE_SUBDIR=source/T/Theano +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Theano-${PORTVERSION} + +MAINTAINER= demon@FreeBSD.org +COMMENT= Optimizing compiler for evaluating math expressions on CPUs and GPUs + +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.8.0:${PORTSDIR}/science/py-scipy + +USES= python +USE_PYTHON= distutils autoplist + +.include Added: head/math/py-theano/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-theano/distinfo Fri Mar 6 09:47:51 2015 (r380579) @@ -0,0 +1,2 @@ +SHA256 (Theano-0.6.0.tar.gz) = aaa75f9a9b7bf50f09ddcc01fb993cf47513179d0a7bee3d96bfeebd66e76083 +SIZE (Theano-0.6.0.tar.gz) = 1763756 Added: head/math/py-theano/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-theano/pkg-descr Fri Mar 6 09:47:51 2015 (r380579) @@ -0,0 +1,5 @@ +Theano is a Python library that allows you to define, optimize, and +efficiently evaluate mathematical expressions involving multi-dimensional +arrays. It is built on top of NumPy. + +WWW: http://deeplearning.net/software/theano/