From owner-svn-ports-all@freebsd.org Fri Mar 20 13:39:52 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3E96C26807D; Fri, 20 Mar 2020 13:39:52 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48kPyw105kz3wch; Fri, 20 Mar 2020 13:39:52 +0000 (UTC) (envelope-from db@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F26AB24596; Fri, 20 Mar 2020 13:39:51 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02KDdpJ2075393; Fri, 20 Mar 2020 13:39:51 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02KDdpUv075389; Fri, 20 Mar 2020 13:39:51 GMT (envelope-from db@FreeBSD.org) Message-Id: <202003201339.02KDdpUv075389@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Fri, 20 Mar 2020 13:39:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528778 - in head/graphics: . py-vecrec X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/graphics: . py-vecrec X-SVN-Commit-Revision: 528778 X-SVN-Commit-Repository: ports 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.29 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, 20 Mar 2020 13:39:52 -0000 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@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 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