Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Jun 2016 17:14:44 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r417325 - in head/math: . py-keras
Message-ID:  <201606221714.u5MHEiYc003988@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <neel@neelc.org>

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 <bsd.port.mk>

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/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606221714.u5MHEiYc003988>