From owner-svn-ports-head@freebsd.org Tue Nov 28 03:09:29 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 53139DF5934; Tue, 28 Nov 2017 03:09:29 +0000 (UTC) (envelope-from yuri@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 1D8A772791; Tue, 28 Nov 2017 03:09:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAS39Swj025544; Tue, 28 Nov 2017 03:09:28 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAS39RCm025540; Tue, 28 Nov 2017 03:09:27 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711280309.vAS39RCm025540@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 28 Nov 2017 03:09:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455017 - in head/graphics: . py-gizeh X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics: . py-gizeh X-SVN-Commit-Revision: 455017 X-SVN-Commit-Repository: ports 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.25 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: Tue, 28 Nov 2017 03:09:29 -0000 Author: yuri Date: Tue Nov 28 03:09:27 2017 New Revision: 455017 URL: https://svnweb.freebsd.org/changeset/ports/455017 Log: New port: graphics/py-gizeh: Simple vector graphics in Python Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13263 Added: head/graphics/py-gizeh/ head/graphics/py-gizeh/Makefile (contents, props changed) head/graphics/py-gizeh/distinfo (contents, props changed) head/graphics/py-gizeh/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Nov 28 03:06:58 2017 (r455016) +++ head/graphics/Makefile Tue Nov 28 03:09:27 2017 (r455017) @@ -862,6 +862,7 @@ SUBDIR += py-gd SUBDIR += py-gdal SUBDIR += py-gimp + SUBDIR += py-gizeh SUBDIR += py-glewpy SUBDIR += py-goocanvas SUBDIR += py-gphoto2 Added: head/graphics/py-gizeh/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-gizeh/Makefile Tue Nov 28 03:09:27 2017 (r455017) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= gizeh +DISTVERSION= 0.1.10 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Simple vector graphics in Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENCE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairocffi>0:graphics/py-cairocffi \ + ${PYNUMPY} + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include Added: head/graphics/py-gizeh/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-gizeh/distinfo Tue Nov 28 03:09:27 2017 (r455017) @@ -0,0 +1,3 @@ +TIMESTAMP = 1511749579 +SHA256 (gizeh-0.1.10.tar.gz) = 495780b00020ecb9bd70cf81461d131174020abdc3bf7447ccf137ea081a06ac +SIZE (gizeh-0.1.10.tar.gz) = 16393 Added: head/graphics/py-gizeh/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-gizeh/pkg-descr Tue Nov 28 03:09:27 2017 (r455017) @@ -0,0 +1,5 @@ +Cairo graphics made easy for use from the Python language. +You can draw beautiful vector graphics consisting of gradient-filled +circles, ellipses, polygons. + +WWW: https://github.com/Zulko/gizeh