Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Mar 2020 14:21:40 +0000 (UTC)
From:      Diane Bruce <db@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r528725 - in head/math: . py-triangle
Message-ID:  <202003191421.02JELel9036876@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: db
Date: Thu Mar 19 14:21:39 2020
New Revision: 528725
URL: https://svnweb.freebsd.org/changeset/ports/528725

Log:
  *Triangle* is a python wrapper around Jonathan Richard Shewchuk's two-dimensional
  quality mesh generator and delaunay triangulator library.
  This implementation utilizes Cython_ to wrap the C API as closely as possible.
  
  WWW: https://rufat.be/triangle

Added:
  head/math/py-triangle/
  head/math/py-triangle/Makefile   (contents, props changed)
  head/math/py-triangle/distinfo   (contents, props changed)
  head/math/py-triangle/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Thu Mar 19 14:12:57 2020	(r528724)
+++ head/math/Makefile	Thu Mar 19 14:21:39 2020	(r528725)
@@ -808,6 +808,7 @@
     SUBDIR += py-symcxx
     SUBDIR += py-sympy
     SUBDIR += py-theano
+    SUBDIR += py-triangle
     SUBDIR += py-ufl
     SUBDIR += py-uncertainties
     SUBDIR += py-vincenty

Added: head/math/py-triangle/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-triangle/Makefile	Thu Mar 19 14:21:39 2020	(r528725)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	triangle
+PORTVERSION=	20190115.3
+CATEGORIES=	math
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	db@FreeBSD.org
+COMMENT=	Python interface to triangle
+
+LICENSE=	LGPL3
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		compiler:c++11-lang python
+
+USE_PYTHON=	distutils autoplist
+
+BUILD_DEPENDS=	triangle>0:math/triangle
+
+post-install:
+	${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/triangle/core.so
+
+.include <bsd.port.mk>

Added: head/math/py-triangle/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-triangle/distinfo	Thu Mar 19 14:21:39 2020	(r528725)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1584620539
+SHA256 (triangle-20190115.3.tar.gz) = 69442062a1705f75b64166b161ade8a32a26b9323e09f5fa43079dbb6bf04bcc
+SIZE (triangle-20190115.3.tar.gz) = 1554400

Added: head/math/py-triangle/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-triangle/pkg-descr	Thu Mar 19 14:21:39 2020	(r528725)
@@ -0,0 +1,5 @@
+*Triangle* is a python wrapper around Jonathan Richard Shewchuk's two-dimensional
+quality mesh generator and delaunay triangulator library.
+This implementation utilizes Cython_ to wrap the C API as closely as possible.
+
+WWW: https://rufat.be/triangle



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003191421.02JELel9036876>