svn commit: r528778 - in head/graphics: . py-vecrec

Diane Bruce db at FreeBSD.org
Fri Mar 20 13:39:52 UTC 2020


Author: db
Date: Fri Mar 20 13:39:50 2020
New Revision: 528778
URL: https://svnweb.freebsd.org/changeset/ports/528778

Log:
  This package provides 2D vector and rectangle classes. These classes were
  written to be used in games, so they have some methods that conveniently tie
  into pyglet and pygame, but for the most part they are quite general and
  could be used for almost anything.
  
  WWW: https://pypi.org/project/vecrec

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Fri Mar 20 13:21:43 2020	(r528777)
+++ head/graphics/Makefile	Fri Mar 20 13:39:50 2020	(r528778)
@@ -869,6 +869,7 @@
     SUBDIR += py-termtosvg
     SUBDIR += py-toyplot
     SUBDIR += py-traitsui
+    SUBDIR += py-vecrec
     SUBDIR += py-visvis
     SUBDIR += py-wand
     SUBDIR += py-webcolors

Added: head/graphics/py-vecrec/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-vecrec/Makefile	Fri Mar 20 13:39:50 2020	(r528778)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+PORTNAME=	vecrec
+PORTVERSION=	0.3.0
+CATEGORIES=	graphics python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	db at FreeBSD.org
+COMMENT=	Cross-platform windowing and multimedia library
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python:3.5+
+USE_PYTHON=	autoplist distutils
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/graphics/py-vecrec/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-vecrec/distinfo	Fri Mar 20 13:39:50 2020	(r528778)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1584709751
+SHA256 (vecrec-0.3.0.tar.gz) = 7781b900a02ad4def8a53cd3bb96cd15d65bbde420503863bb3c2e4fbaaf36be
+SIZE (vecrec-0.3.0.tar.gz) = 118946

Added: head/graphics/py-vecrec/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/py-vecrec/pkg-descr	Fri Mar 20 13:39:50 2020	(r528778)
@@ -0,0 +1,6 @@
+This package provides 2D vector and rectangle classes. These classes were
+written to be used in games, so they have some methods that conveniently tie
+into pyglet and pygame, but for the most part they are quite general and
+could be used for almost anything.
+
+WWW: https://pypi.org/project/vecrec


More information about the svn-ports-head mailing list