New port: math/py-pygslodeiv2: Python binding for odeiv2 in GNU Scientific Library (GSL)

This commit is contained in:
Yuri Victorovich 2018-09-19 23:11:35 +00:00
parent f1d7e25ee8
commit 1558e3bfc4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=480121
4 changed files with 32 additions and 0 deletions

View file

@ -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

View file

@ -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 <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1537398210
SHA256 (pygslodeiv2-0.9.1.tar.gz) = 4297d2a78d9cc05365dd0b7b614c71057a09dec04fb29544183ee3c684e321e6
SIZE (pygslodeiv2-0.9.1.tar.gz) = 113497

View file

@ -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