Date: Fri, 25 Dec 2015 09:20:38 +0000 (UTC) From: "Vanilla I. Shu" <vanilla@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404409 - in head/math: . py-pyhull Message-ID: <201512250920.tBP9Kcb1021391@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vanilla Date: Fri Dec 25 09:20:38 2015 New Revision: 404409 URL: https://svnweb.freebsd.org/changeset/ports/404409 Log: Add py-pyhull 1.5.6, computation of convex hull, Delaunay triangulation and Voronoi diagram. PR: 205593 Submitted by: Yuri Victorovich <yuri@rawbw.com> Added: head/math/py-pyhull/ head/math/py-pyhull/Makefile (contents, props changed) head/math/py-pyhull/distinfo (contents, props changed) head/math/py-pyhull/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Dec 25 09:19:42 2015 (r404408) +++ head/math/Makefile Fri Dec 25 09:20:38 2015 (r404409) @@ -609,6 +609,7 @@ SUBDIR += py-pybloom SUBDIR += py-pycosat SUBDIR += py-pyfst + SUBDIR += py-pyhull SUBDIR += py-pymc SUBDIR += py-roman SUBDIR += py-scientific Added: head/math/py-pyhull/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyhull/Makefile Fri Dec 25 09:20:38 2015 (r404409) @@ -0,0 +1,24 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= pyhull +PORTVERSION= 1.5.6 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Computation of convex hull, Delaunay triangulation and Voronoi diagram + +LICENSE= MIT + +BUILD_DEPENDS= ${PYNUMPY} +RUN_DEPENDS= ${PYNUMPY} + +USES= python +USE_PYTHON= autoplist distutils + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pyhull/_pyhull.so + +.include <bsd.port.mk> Added: head/math/py-pyhull/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyhull/distinfo Fri Dec 25 09:20:38 2015 (r404409) @@ -0,0 +1,2 @@ +SHA256 (pyhull-1.5.6.tar.gz) = 4d14bf6e6ba695de4d4ae28d2c15b97eb2dabc1e840bb9d1120ed1ffa2c52cb1 +SIZE (pyhull-1.5.6.tar.gz) = 298717 Added: head/math/py-pyhull/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-pyhull/pkg-descr Fri Dec 25 09:20:38 2015 (r404409) @@ -0,0 +1,5 @@ +A Python wrapper to Qhull (www.qhull.org) for the computation +of the convex hull, Delaunay triangulation and Voronoi diagram. + +WWW: https://github.com/materialsvirtuallab/pyhull +WWW: https://pypi.python.org/pypi/pyhull
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512250920.tBP9Kcb1021391>