From owner-svn-ports-all@freebsd.org Fri Dec 25 09:20:39 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B83E8A514C3; Fri, 25 Dec 2015 09:20:39 +0000 (UTC) (envelope-from vanilla@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 mx1.freebsd.org (Postfix) with ESMTPS id 6FC501E41; Fri, 25 Dec 2015 09:20:39 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBP9Kccr021395; Fri, 25 Dec 2015 09:20:38 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBP9Kcb1021391; Fri, 25 Dec 2015 09:20:38 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201512250920.tBP9Kcb1021391@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Fri, 25 Dec 2015 09:20:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404409 - in head/math: . py-pyhull X-SVN-Group: ports-head 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.20 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: Fri, 25 Dec 2015 09:20:39 -0000 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 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 +# $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 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