From owner-svn-ports-all@freebsd.org Thu Sep 20 00:54:32 2018 Return-Path: Delivered-To: svn-ports-all@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 7041E10AC0B8; Thu, 20 Sep 2018 00:54:32 +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 1DD93738E6; Thu, 20 Sep 2018 00:54:32 +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 0A24B16A68; Thu, 20 Sep 2018 00:54:32 +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 w8K0sVCe022642; Thu, 20 Sep 2018 00:54:31 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8K0sVLs022638; Thu, 20 Sep 2018 00:54:31 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809200054.w8K0sVLs022638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Sep 2018 00:54:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480148 - in head/math: . py-pyodeint X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-pyodeint X-SVN-Commit-Revision: 480148 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.27 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, 20 Sep 2018 00:54:32 -0000 Author: yuri Date: Thu Sep 20 00:54:30 2018 New Revision: 480148 URL: https://svnweb.freebsd.org/changeset/ports/480148 Log: New port: math/py-pyodeint: Python binding for odeint from boost Added: head/math/py-pyodeint/ head/math/py-pyodeint/Makefile (contents, props changed) head/math/py-pyodeint/distinfo (contents, props changed) head/math/py-pyodeint/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Sep 20 00:38:27 2018 (r480147) +++ head/math/Makefile Thu Sep 20 00:54:30 2018 (r480148) @@ -724,6 +724,7 @@ SUBDIR += py-pymc3 SUBDIR += py-pyneqsys SUBDIR += py-pynleq2 + SUBDIR += py-pyodeint SUBDIR += py-pyodesys SUBDIR += py-pysparse SUBDIR += py-pysym Added: head/math/py-pyodeint/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyodeint/Makefile Thu Sep 20 00:54:30 2018 (r480148) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= pyodeint +DISTVERSION= 0.10.1 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python binding for odeint from boost + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} \ + ${LOCALBASE}/include/boost/config.hpp:devel/boost-libs +RUN_DEPENDS= ${PYNUMPY} + +USES= localbase python +USE_PYTHON= distutils autoplist + +.include Added: head/math/py-pyodeint/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyodeint/distinfo Thu Sep 20 00:54:30 2018 (r480148) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537403474 +SHA256 (pyodeint-0.10.1.tar.gz) = b235f94ba02740da2ff7f4a9150109cd133687a833e0b69dc9f902e89bbcc1e9 +SIZE (pyodeint-0.10.1.tar.gz) = 170100 Added: head/math/py-pyodeint/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyodeint/pkg-descr Thu Sep 20 00:54:30 2018 (r480148) @@ -0,0 +1,14 @@ +pyodeint provides a Python binding to odeint. Currently, the following steppers +are exposed: +* rosenbrock4: 4th order Rosenbrock (implicit multistep) stepper +* dopri5: 5th order DOPRI5 (explicit runge-kutta) +* bs: Bulirsch-Stoer stepper (modified midpoint rule). + +The Rosenbrock4 stepper requires that the user provides a routine for +calculating the Jacobian. + +You may also want to know that you can use pyodeint from pyodesys which can e.g. +derive the Jacobian analytically for you (pyodesys also provides plotting +functions, C++ code-generation and more). + +WWW: https://github.com/bjodah/pyodeint