Date: Sat, 6 May 2017 07:43:45 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440242 - in head/graphics: . py-pyembree Message-ID: <201705060743.v467hjLm025140@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Sat May 6 07:43:45 2017 New Revision: 440242 URL: https://svnweb.freebsd.org/changeset/ports/440242 Log: Python wrapper for Embree. WWW: https://github.com/scopatz/pyembree PR: 214563 Submitted by: Yuri Victorovich <yuri@rawbw.com> Added: head/graphics/py-pyembree/ head/graphics/py-pyembree/Makefile (contents, props changed) head/graphics/py-pyembree/distinfo (contents, props changed) head/graphics/py-pyembree/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat May 6 07:40:39 2017 (r440241) +++ head/graphics/Makefile Sat May 6 07:43:45 2017 (r440242) @@ -877,6 +877,7 @@ SUBDIR += py-pycha SUBDIR += py-pycollada SUBDIR += py-pydot + SUBDIR += py-pyembree SUBDIR += py-pygal SUBDIR += py-pyganim SUBDIR += py-pyglet Added: head/graphics/py-pyembree/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyembree/Makefile Sat May 6 07:43:45 2017 (r440242) @@ -0,0 +1,25 @@ +# Created by: Yuri Victorovich <yuri@rawbw.com> +# $FreeBSD$ + +PORTNAME= pyembree +PORTVERSION= 0.1.0 +CATEGORIES= graphics python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@rawbw.com +COMMENT= Python wrapper for Embree + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= cython:lang/cython \ + ${PYNUMPY} +LIB_DEPENDS= libembree.so:graphics/embree +RUN_DEPENDS= ${PYNUMPY} + +USES= localbase python:2 +USE_PYTHON= autoplist distutils +USE_GITHUB= yes +GH_ACCOUNT= scopatz + +.include <bsd.port.mk> Added: head/graphics/py-pyembree/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyembree/distinfo Sat May 6 07:43:45 2017 (r440242) @@ -0,0 +1,3 @@ +TIMESTAMP = 1479273825 +SHA256 (scopatz-pyembree-0.1.0_GH0.tar.gz) = 2f34c2807377bf8f24d26a4ca65bce00c25120188205e66438ee653a92db88d5 +SIZE (scopatz-pyembree-0.1.0_GH0.tar.gz) = 9571 Added: head/graphics/py-pyembree/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pyembree/pkg-descr Sat May 6 07:43:45 2017 (r440242) @@ -0,0 +1,3 @@ +Python wrapper for Embree. + +WWW: https://github.com/scopatz/pyembree
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705060743.v467hjLm025140>