From owner-svn-ports-head@freebsd.org Wed Sep 19 23:11:37 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 83F6010A9BEB; Wed, 19 Sep 2018 23:11:37 +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 2FC6296F15; Wed, 19 Sep 2018 23:11:37 +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 10C6A159D1; Wed, 19 Sep 2018 23:11:37 +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 w8JNBaxA067383; Wed, 19 Sep 2018 23:11:36 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w8JNBacH067379; Wed, 19 Sep 2018 23:11:36 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201809192311.w8JNBacH067379@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Sep 2018 23:11:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480121 - in head/math: . py-pygslodeiv2 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . py-pygslodeiv2 X-SVN-Commit-Revision: 480121 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.27 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: Wed, 19 Sep 2018 23:11:37 -0000 Author: yuri Date: Wed Sep 19 23:11:35 2018 New Revision: 480121 URL: https://svnweb.freebsd.org/changeset/ports/480121 Log: New port: math/py-pygslodeiv2: Python binding for odeiv2 in GNU Scientific Library (GSL) Added: head/math/py-pygslodeiv2/ head/math/py-pygslodeiv2/Makefile (contents, props changed) head/math/py-pygslodeiv2/distinfo (contents, props changed) head/math/py-pygslodeiv2/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Sep 19 22:52:41 2018 (r480120) +++ head/math/Makefile Wed Sep 19 23:11:35 2018 (r480121) @@ -687,6 +687,7 @@ SUBDIR += py-gmpy2 SUBDIR += py-gnuplot SUBDIR += py-graphillion + SUBDIR += py-pygslodeiv2 SUBDIR += py-igakit SUBDIR += py-igraph SUBDIR += py-intspan Added: head/math/py-pygslodeiv2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pygslodeiv2/Makefile Wed Sep 19 23:11:35 2018 (r480121) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= pygslodeiv2 +DISTVERSION= 0.9.1 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Python binding for odeiv2 in GNU Scientific Library (GSL) + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYNUMPY} +LIB_DEPENDS= libgsl.so:math/gsl +RUN_DEPENDS= ${PYNUMPY} + +USES= localbase python +USE_PYTHON= distutils autoplist + +.include Added: head/math/py-pygslodeiv2/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pygslodeiv2/distinfo Wed Sep 19 23:11:35 2018 (r480121) @@ -0,0 +1,3 @@ +TIMESTAMP = 1537398210 +SHA256 (pygslodeiv2-0.9.1.tar.gz) = 4297d2a78d9cc05365dd0b7b614c71057a09dec04fb29544183ee3c684e321e6 +SIZE (pygslodeiv2-0.9.1.tar.gz) = 113497 Added: head/math/py-pygslodeiv2/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pygslodeiv2/pkg-descr Wed Sep 19 23:11:35 2018 (r480121) @@ -0,0 +1,6 @@ +pygslodeiv2 provides a Python binding to the Ordinary Differential Equation +integration routines exposed by the odeiv2 interface of GSL - GNU Scientific +Library. The odeiv2 interface allows a user to numerically integrate +(systems of) differential equations. + +WWW: https://github.com/bjodah/pygslodeiv2