From owner-svn-ports-head@freebsd.org Tue Apr 17 22:24:53 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 6B8C8FA1018; Tue, 17 Apr 2018 22:24:53 +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 1893C6E9B0; Tue, 17 Apr 2018 22:24:53 +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 0C88B1290D; Tue, 17 Apr 2018 22:24:53 +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 w3HMOqqr014550; Tue, 17 Apr 2018 22:24:52 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3HMOq48014546; Tue, 17 Apr 2018 22:24:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201804172224.w3HMOq48014546@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 17 Apr 2018 22:24:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r467660 - in head/math: . py-algopy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-algopy X-SVN-Commit-Revision: 467660 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: Tue, 17 Apr 2018 22:24:53 -0000 Author: yuri Date: Tue Apr 17 22:24:52 2018 New Revision: 467660 URL: https://svnweb.freebsd.org/changeset/ports/467660 Log: New port: math/py-algopy: Algorithmic Differentiation (AD) and Taylor polynomial approximations Added: head/math/py-algopy/ head/math/py-algopy/Makefile (contents, props changed) head/math/py-algopy/distinfo (contents, props changed) head/math/py-algopy/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Tue Apr 17 21:17:42 2018 (r467659) +++ head/math/Makefile Tue Apr 17 22:24:52 2018 (r467660) @@ -645,6 +645,7 @@ SUBDIR += py-PySCIPOpt SUBDIR += py-PyWavelets SUBDIR += py-Pyomo + SUBDIR += py-algopy SUBDIR += py-altgraph SUBDIR += py-apgl SUBDIR += py-basemap Added: head/math/py-algopy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-algopy/Makefile Tue Apr 17 22:24:52 2018 (r467660) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= algopy +DISTVERSION= 0.5.7 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Algorithmic Differentiation (AD) and Taylor polynomial approximations + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYNUMPY} + +USES= python zip +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include Added: head/math/py-algopy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-algopy/distinfo Tue Apr 17 22:24:52 2018 (r467660) @@ -0,0 +1,3 @@ +TIMESTAMP = 1524003219 +SHA256 (algopy-0.5.7.zip) = 6955f676fce3858fa3585cb7f3f7e1796cb93377d24016419b6699291584b7df +SIZE (algopy-0.5.7.zip) = 189516 Added: head/math/py-algopy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-algopy/pkg-descr Tue Apr 17 22:24:52 2018 (r467660) @@ -0,0 +1,10 @@ +The purpose of AlgoPy is the evaluation of higher-order derivatives in the +forward and reverse mode of Algorithmic Differentiation (AD) of functions +that are implemented as Python programs. Particular focus are functions that +contain numerical linear algebra functions as they often appear in statistically +motivated functions. The intended use of AlgoPy is for easy prototyping at +reasonable execution speeds. More precisely, for a typical program a directional +derivative takes order 10 times as much time as time as the function evaluation. +This is approximately also true for the gradient. + +WWW: https://pythonhosted.org/algopy/