From owner-svn-ports-all@freebsd.org Fri Feb 24 17:16:32 2017 Return-Path: Delivered-To: svn-ports-all@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 BF0DACECE23; Fri, 24 Feb 2017 17:16:32 +0000 (UTC) (envelope-from krion@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 8111610F2; Fri, 24 Feb 2017 17:16:32 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1OHGVA6063696; Fri, 24 Feb 2017 17:16:31 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1OHGV0g063692; Fri, 24 Feb 2017 17:16:31 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201702241716.v1OHGV0g063692@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarew Date: Fri, 24 Feb 2017 17:16:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434735 - in head/graphics: . py-pycollada X-SVN-Group: ports-head 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.23 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, 24 Feb 2017 17:16:32 -0000 Author: krion Date: Fri Feb 24 17:16:31 2017 New Revision: 434735 URL: https://svnweb.freebsd.org/changeset/ports/434735 Log: New port: graphics/py-pycollada Pycollada is a python module for creating, editing and loading COLLADA, which is a COLLAborative Design Activity for establishing an interchange file format for interactive 3D applications. WWW: http://pycollada.readthedocs.org/ PR: 214318 Submitted by: tj+freebsd_bugs@a13.fr Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D9775 Added: head/graphics/py-pycollada/ head/graphics/py-pycollada/Makefile (contents, props changed) head/graphics/py-pycollada/distinfo (contents, props changed) head/graphics/py-pycollada/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Fri Feb 24 17:14:38 2017 (r434734) +++ head/graphics/Makefile Fri Feb 24 17:16:31 2017 (r434735) @@ -869,6 +869,7 @@ SUBDIR += py-poppler SUBDIR += py-poppler-qt4 SUBDIR += py-pycha + SUBDIR += py-pycollada SUBDIR += py-pydot SUBDIR += py-pygal SUBDIR += py-pyganim Added: head/graphics/py-pycollada/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pycollada/Makefile Fri Feb 24 17:16:31 2017 (r434735) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= pycollada +PORTVERSION= 0.4.1 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= tj+freebsd_ports@a13.fr +COMMENT= Python library for reading and writing collada documents + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>0:math/py-numpy \ + ${PYTHON_PKGNAMEPREFIX}dateutil>=2.0:devel/py-dateutil + +NO_ARCH= yes +USES= python +USE_PYTHON= autoplist distutils + +OPTIONS_DEFINE= LXML + +LXML_DESC= Uses lxml for XML loading, construction, and saving. +LXML_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:devel/py-lxml + +.include Added: head/graphics/py-pycollada/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pycollada/distinfo Fri Feb 24 17:16:31 2017 (r434735) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478552877 +SHA256 (pycollada-0.4.1.tar.gz) = 9b7aba2af93adbe207dab48b427902f56afd717cf9bf5f52e617948212a4a044 +SIZE (pycollada-0.4.1.tar.gz) = 110434 Added: head/graphics/py-pycollada/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-pycollada/pkg-descr Fri Feb 24 17:16:31 2017 (r434735) @@ -0,0 +1,5 @@ +Pycollada is a python module for creating, editing and loading COLLADA, which +is a COLLAborative Design Activity for establishing an interchange file format +for interactive 3D applications. + +WWW: http://pycollada.readthedocs.org/