From owner-svn-ports-all@freebsd.org Thu Aug 8 20:07:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 34F14B155C; Thu, 8 Aug 2019 20:07:06 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 464KCZ0cX5z4nhT; Thu, 8 Aug 2019 20:07:06 +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 E67702664; Thu, 8 Aug 2019 20:07:05 +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 x78K75TZ068922; Thu, 8 Aug 2019 20:07:05 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x78K75WN068917; Thu, 8 Aug 2019 20:07:05 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201908082007.x78K75WN068917@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 8 Aug 2019 20:07:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508402 - in head/science: . py-chainer X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/science: . py-chainer X-SVN-Commit-Revision: 508402 X-SVN-Commit-Repository: ports 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.29 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: Thu, 08 Aug 2019 20:07:06 -0000 Author: yuri Date: Thu Aug 8 20:07:04 2019 New Revision: 508402 URL: https://svnweb.freebsd.org/changeset/ports/508402 Log: New port: science/py-chainer: Deep learning framework Added: head/science/py-chainer/ head/science/py-chainer/Makefile (contents, props changed) head/science/py-chainer/distinfo (contents, props changed) head/science/py-chainer/pkg-descr (contents, props changed) Modified: head/science/Makefile Modified: head/science/Makefile ============================================================================== --- head/science/Makefile Thu Aug 8 19:22:20 2019 (r508401) +++ head/science/Makefile Thu Aug 8 20:07:04 2019 (r508402) @@ -232,6 +232,7 @@ SUBDIR += py-ase SUBDIR += py-avogadrolibs SUBDIR += py-cdo + SUBDIR += py-chainer SUBDIR += py-chempy SUBDIR += py-coards SUBDIR += py-dlib Added: head/science/py-chainer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-chainer/Makefile Thu Aug 8 20:07:04 2019 (r508402) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= chainer +DISTVERSION= 6.2.0 +CATEGORIES= science biology +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Deep learning framework + +LICENSE= MIT + +LIB_DEPENDS= libprotobuf.so:devel/protobuf +RUN_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}filelock>0:sysutils/py-filelock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six@${PY_FLAVOR} \ + ${PY_TYPING} \ + ${PYTHON_PKGNAMEPREFIX}typing-extensions>0:devel/py-typing-extensions@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +NO_ARCH= yes + +.include Added: head/science/py-chainer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-chainer/distinfo Thu Aug 8 20:07:04 2019 (r508402) @@ -0,0 +1,3 @@ +TIMESTAMP = 1565290777 +SHA256 (chainer-6.2.0.tar.gz) = 59ffacca815ccad80acca218f111ada6d4507a8f69e3ac3f135f489219c4d86f +SIZE (chainer-6.2.0.tar.gz) = 873060 Added: head/science/py-chainer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/science/py-chainer/pkg-descr Thu Aug 8 20:07:04 2019 (r508402) @@ -0,0 +1,11 @@ +Chainer is a powerful, flexible and intuitive deep learning framework. +* Chainer supports CUDA computation. It only requires a few lines of code to + leverage a GPU. It also runs on multiple GPUs with little effort. +* Chainer supports various network architectures including feed-forward nets, + convnets, recurrent nets and recursive nets. It also supports per-batch + architectures. +* Forward computation can include any control flow statements of Python without + lacking the ability of backpropagation. It makes code intuitive and easy to + debug. + +WWW: https://chainer.org/