Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Nov 2020 09:17:02 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r555816 - in head/graphics: . py-beziers
Message-ID:  <202011210917.0AL9H2qJ096301@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Nov 21 09:17:02 2020
New Revision: 555816
URL: https://svnweb.freebsd.org/changeset/ports/555816

Log:
  Add py-beziers 0.1.0
  
  Beziers provides a variety of classes for constructing, manipulating and drawing
  Bezier curves and paths. Principally designed for font design software, it
  allows you to join, split, offset, and perform many other operations on paths.
  
  WWW: https://github.com/simoncozens/beziers.py

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Sat Nov 21 08:22:27 2020	(r555815)
+++ head/graphics/Makefile	Sat Nov 21 09:17:02 2020	(r555816)
@@ -804,6 +804,7 @@
     SUBDIR += py-PyOpenGL
     SUBDIR += py-PyOpenGL-accelerate
     SUBDIR += py-actdiag
+    SUBDIR += py-beziers
     SUBDIR += py-blockdiag
     SUBDIR += py-blockdiagcontrib-cisco
     SUBDIR += py-cairo

Added: head/graphics/py-beziers/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-beziers/Makefile	Sat Nov 21 09:17:02 2020	(r555816)
@@ -0,0 +1,22 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	beziers
+PORTVERSION=	0.1.0
+CATEGORIES=	graphics python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Bezier curve manipulation library
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}pyclipper>=0:math/py-pyclipper@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/graphics/py-beziers/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-beziers/distinfo	Sat Nov 21 09:17:02 2020	(r555816)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1605901600
+SHA256 (beziers-0.1.0.tar.gz) = 9a8b274dcd590dd8ef5efec64c86d759ac7ce7e35ceaf1e2897b5d332c2ca6c1
+SIZE (beziers-0.1.0.tar.gz) = 34992

Added: head/graphics/py-beziers/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-beziers/pkg-descr	Sat Nov 21 09:17:02 2020	(r555816)
@@ -0,0 +1,5 @@
+Beziers provides a variety of classes for constructing, manipulating and drawing
+Bezier curves and paths. Principally designed for font design software, it
+allows you to join, split, offset, and perform many other operations on paths.
+
+WWW: https://github.com/simoncozens/beziers.py



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