From owner-svn-ports-head@freebsd.org Mon Apr 2 08:03:30 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C03C9F7AD34; Mon, 2 Apr 2018 08:03:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 71ADD73552; Mon, 2 Apr 2018 08:03:30 +0000 (UTC) (envelope-from yuri@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5289E13074; Mon, 2 Apr 2018 08:03:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3283UAa099918; Mon, 2 Apr 2018 08:03:30 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3283UuY099915; Mon, 2 Apr 2018 08:03:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804020803.w3283UuY099915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 2 Apr 2018 08:03:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466207 - head/math/py-keras X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/py-keras X-SVN-Commit-Revision: 466207 X-SVN-Commit-Repository: ports 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.25 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: Mon, 02 Apr 2018 08:03:31 -0000 Author: yuri Date: Mon Apr 2 08:03:29 2018 New Revision: 466207 URL: https://svnweb.freebsd.org/changeset/ports/466207 Log: math/py-keras: Update 2.1.4 -> 2.1.5 Port changes: * Change to DISTVERSION * Minor comment change * Add PYNUMPY to RUN_DEPENDS * Sort RUN_DEPENDS * Remove USE_PYTHON=concurrent (not needed) * Group USExx * Replace WWW with the https version PR: 226451 Submitted by: Neel Chauhan (maintainer) Modified: head/math/py-keras/Makefile head/math/py-keras/distinfo head/math/py-keras/pkg-descr Modified: head/math/py-keras/Makefile ============================================================================== --- head/math/py-keras/Makefile Mon Apr 2 07:39:29 2018 (r466206) +++ head/math/py-keras/Makefile Mon Apr 2 08:03:29 2018 (r466207) @@ -1,26 +1,26 @@ # $FreeBSD$ PORTNAME= keras -PORTVERSION= 2.1.4 -PORTREVISION= 1 +DISTVERSION= 2.1.5 CATEGORIES= math PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= neel@neelc.org -COMMENT= Deep Learning library for Python +COMMENT= Deep learning library for Python LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}theano>=0.8.0:math/py-theano@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}yaml>=0:devel/py-yaml@${FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${FLAVOR} +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.14:science/py-scipy@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}theano>=0.8.0:math/py-theano@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${FLAVOR} USES= python -USE_PYTHON= autoplist concurrent distutils -NO_ARCH= yes - USE_GITHUB= yes GH_ACCOUNT= fchollet +USE_PYTHON= autoplist distutils +NO_ARCH= yes .include Modified: head/math/py-keras/distinfo ============================================================================== --- head/math/py-keras/distinfo Mon Apr 2 07:39:29 2018 (r466206) +++ head/math/py-keras/distinfo Mon Apr 2 08:03:29 2018 (r466207) @@ -1,3 +1,3 @@ -TIMESTAMP = 1518659422 -SHA256 (fchollet-keras-2.1.4_GH0.tar.gz) = fec0bfcee160fbf79baec2afa2691e751106a171280358f4705b8e79bee4c666 -SIZE (fchollet-keras-2.1.4_GH0.tar.gz) = 480487 +TIMESTAMP = 1522653674 +SHA256 (fchollet-keras-2.1.5_GH0.tar.gz) = 9195027cc2deb063bee4964bb27be1f5e2411e44defc69348ed9ede418641557 +SIZE (fchollet-keras-2.1.5_GH0.tar.gz) = 495201 Modified: head/math/py-keras/pkg-descr ============================================================================== --- head/math/py-keras/pkg-descr Mon Apr 2 07:39:29 2018 (r466206) +++ head/math/py-keras/pkg-descr Mon Apr 2 08:03:29 2018 (r466207) @@ -1,4 +1,4 @@ Deep Learning library for Python. Convnets, recurrent neural networks, and more. Runs on Theano and TensorFlow. -WWW: http://keras.io/ +WWW: https://keras.io/