New port: math/py-PyMetis: Python wrapper for the Metis graph partititioning software

This commit is contained in:
Yuri Victorovich 2018-05-24 21:30:51 +00:00
parent a90b7c6d43
commit 0e7572a103
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=470811
4 changed files with 35 additions and 0 deletions

View File

@ -645,6 +645,7 @@
SUBDIR += pure-rational
SUBDIR += py-Diofant
SUBDIR += py-GridDataFormats
SUBDIR += py-PyMetis
SUBDIR += py-PySCIPOpt
SUBDIR += py-PyWavelets
SUBDIR += py-Pyomo

21
math/py-PyMetis/Makefile Normal file
View File

@ -0,0 +1,21 @@
# $FreeBSD$
PORTNAME= PyMetis
DISTVERSION= 2016.2
CATEGORIES= math python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yuri@FreeBSD.org
COMMENT= Python wrapper for the Metis graph partititioning software
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${FLAVOR}
USES= localbase python
USE_PYTHON= distutils autoplist
.include <bsd.port.mk>

3
math/py-PyMetis/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1527196473
SHA256 (PyMetis-2016.2.tar.gz) = ebf68b865ed274f5c6db5ccfdf2fbec2123bf72171f3f0b54213fec4fa3b502a
SIZE (PyMetis-2016.2.tar.gz) = 1721282

10
math/py-PyMetis/pkg-descr Normal file
View File

@ -0,0 +1,10 @@
PyMetis is a Python wrapper for the Metis graph partititioning software by
George Karypis, Vipin Kumar and others. It includes version 5.0pre2 of Metis
and wraps it using the Boost Python wrapper generator library. So far, it only
wraps the most basic graph partitioning functionality (which is enough for my
current use), but extending it in case you need more should be quite
straightforward. Using PyMetis to partition your meshes is really easy -
essentially all you need to pass into PyMetis is an adjacency list for the
graph and the number of parts you would like.
WWW: https://mathema.tician.de/software/pymetis/