From owner-svn-ports-head@freebsd.org Sat May 6 07:43:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCBDED60C20; Sat, 6 May 2017 07:43:47 +0000 (UTC) (envelope-from miwi@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 mx1.freebsd.org (Postfix) with ESMTPS id 090201707; Sat, 6 May 2017 07:43:46 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v467hjm2025144; Sat, 6 May 2017 07:43:45 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v467hjLm025140; Sat, 6 May 2017 07:43:45 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201705060743.v467hjLm025140@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 6 May 2017 07:43:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440242 - in head/graphics: . py-pyembree X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 May 2017 07:43:47 -0000 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 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 +# $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 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