From owner-svn-ports-head@freebsd.org Wed Jun 22 17:14:46 2016 Return-Path: Delivered-To: svn-ports-head@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 55B19B72717; Wed, 22 Jun 2016 17:14:46 +0000 (UTC) (envelope-from pawel@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 F1FDE292C; Wed, 22 Jun 2016 17:14:45 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5MHEj56003993; Wed, 22 Jun 2016 17:14:45 GMT (envelope-from pawel@FreeBSD.org) Received: (from pawel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5MHEiYc003988; Wed, 22 Jun 2016 17:14:44 GMT (envelope-from pawel@FreeBSD.org) Message-Id: <201606221714.u5MHEiYc003988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pawel set sender to pawel@FreeBSD.org using -f From: Pawel Pekala Date: Wed, 22 Jun 2016 17:14:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417325 - in head/math: . py-keras X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Jun 2016 17:14:46 -0000 Author: pawel Date: Wed Jun 22 17:14:44 2016 New Revision: 417325 URL: https://svnweb.freebsd.org/changeset/ports/417325 Log: Deep Learning library for Python. Convnets, recurrent neural networks, and more. Runs on Theano and TensorFlow. WWW: http://keras.io/ PR: 210119 Submitted by: Neel Chauhan Added: head/math/py-keras/ head/math/py-keras/Makefile (contents, props changed) head/math/py-keras/distinfo (contents, props changed) head/math/py-keras/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Jun 22 17:05:47 2016 (r417324) +++ head/math/Makefile Wed Jun 22 17:14:44 2016 (r417325) @@ -603,6 +603,7 @@ SUBDIR += py-gsl SUBDIR += py-igraph SUBDIR += py-intspan + SUBDIR += py-keras SUBDIR += py-luminol SUBDIR += py-mathdom SUBDIR += py-matplotlib Added: head/math/py-keras/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-keras/Makefile Wed Jun 22 17:14:44 2016 (r417325) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= keras +PORTVERSION= 1.0.4 +CATEGORIES= math +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= neel@neelc.org +COMMENT= Deep Learning library for Python + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}theano>=0.8.0:math/py-theano \ + ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml \ + ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six \ + +USE_GITHUB= yes +GH_ACCOUNT= fchollet + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/math/py-keras/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-keras/distinfo Wed Jun 22 17:14:44 2016 (r417325) @@ -0,0 +1,3 @@ +TIMESTAMP = 1465323531 +SHA256 (fchollet-keras-1.0.4_GH0.tar.gz) = 64abdd31dabb1abf704b922412e190fde8fe6777d1ff6396e48e75ff51024364 +SIZE (fchollet-keras-1.0.4_GH0.tar.gz) = 211314 Added: head/math/py-keras/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-keras/pkg-descr Wed Jun 22 17:14:44 2016 (r417325) @@ -0,0 +1,4 @@ +Deep Learning library for Python. Convnets, recurrent neural networks, and +more. Runs on Theano and TensorFlow. + +WWW: http://keras.io/