Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Dec 2018 18:32:08 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r487613 - in head/math: . py-pyclipper
Message-ID:  <201812161832.wBGIW8Bv048096@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Sun Dec 16 18:32:07 2018
New Revision: 487613
URL: https://svnweb.freebsd.org/changeset/ports/487613

Log:
  Add math/py-pyclipper, cython wrapper for the C++ translation of Clipper
  library
  
  PR:		228027
  Submitted by:	Ting-Wei Lan <lantw44@gmail.com>

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

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Sun Dec 16 18:30:04 2018	(r487612)
+++ head/math/Makefile	Sun Dec 16 18:32:07 2018	(r487613)
@@ -757,6 +757,7 @@
     SUBDIR += py-pyFFTW
     SUBDIR += py-pyasp
     SUBDIR += py-pybloom
+    SUBDIR += py-pyclipper
     SUBDIR += py-pycosat
     SUBDIR += py-pygsl
     SUBDIR += py-pygslodeiv2

Added: head/math/py-pyclipper/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pyclipper/Makefile	Sun Dec 16 18:32:07 2018	(r487613)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	pyclipper
+PORTVERSION=	1.1.0
+CATEGORIES=	math python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	lantw44@gmail.com
+COMMENT=	Cython wrapper for the C++ translation of Clipper library
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.11.1:devel/py-setuptools_scm@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}setuptools_scm_git_archive>=1.0:devel/py-setuptools_scm_git_archive@${PY_FLAVOR}
+
+USES=		python zip
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/math/py-pyclipper/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pyclipper/distinfo	Sun Dec 16 18:32:07 2018	(r487613)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1525598760
+SHA256 (pyclipper-1.1.0.zip) = 3f11e87f0b82bccc6de57eead2628ca419694352e8b843bcd228eec9c9357680
+SIZE (pyclipper-1.1.0.zip) = 133364

Added: head/math/py-pyclipper/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/py-pyclipper/pkg-descr	Sun Dec 16 18:32:07 2018	(r487613)
@@ -0,0 +1,4 @@
+Pyclipper is a Cython wrapper exposing public functions and classes of the C++
+translation of the Angus Johnson's Clipper library.
+
+WWW: https://github.com/greginvm/pyclipper



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