From owner-svn-ports-all@freebsd.org Thu Mar 19 11:47:36 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 6ADAC25D269; Thu, 19 Mar 2020 11:47:36 +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 48jlWr06Y7z42Ng; Thu, 19 Mar 2020 11:47:36 +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 B9CCDA5FB; Thu, 19 Mar 2020 11:47:35 +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 02JBlZiH044194; Thu, 19 Mar 2020 11:47:35 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02JBlY6v044190; Thu, 19 Mar 2020 11:47:34 GMT (envelope-from db@FreeBSD.org) Message-Id: <202003191147.02JBlY6v044190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Thu, 19 Mar 2020 11:47:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528715 - in head/graphics: . py-svg_path X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/graphics: . py-svg_path X-SVN-Commit-Revision: 528715 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: Thu, 19 Mar 2020 11:47:36 -0000 Author: db Date: Thu Mar 19 11:47:34 2020 New Revision: 528715 URL: https://svnweb.freebsd.org/changeset/ports/528715 Log: svg.path is a collection of objects that implement the different path commands in SVG, and a parser for SVG path definitions. WWW: https://pypi.org/project/svg.path/ Added: head/graphics/py-svg_path/ head/graphics/py-svg_path/Makefile (contents, props changed) head/graphics/py-svg_path/distinfo (contents, props changed) head/graphics/py-svg_path/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Thu Mar 19 11:33:41 2020 (r528714) +++ head/graphics/Makefile Thu Mar 19 11:47:34 2020 (r528715) @@ -865,6 +865,7 @@ SUBDIR += py-soya3d SUBDIR += py-spectra SUBDIR += py-stltools + SUBDIR += py-svg_path SUBDIR += py-svgwrite SUBDIR += py-termtosvg SUBDIR += py-toyplot Added: head/graphics/py-svg_path/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-svg_path/Makefile Thu Mar 19 11:47:34 2020 (r528715) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= svg_path +PORTVERSION= 4.0.2 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= svg.path-${PORTVERSION} + +MAINTAINER= db@FreeBSD.org +COMMENT= SVG path objects and parser + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/graphics/py-svg_path/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-svg_path/distinfo Thu Mar 19 11:47:34 2020 (r528715) @@ -0,0 +1,3 @@ +TIMESTAMP = 1584576249 +SHA256 (svg.path-4.0.2.tar.gz) = 4bd627ec6526cd5da14f3c6a51205d930187db2d8992aed626825492c033b195 +SIZE (svg.path-4.0.2.tar.gz) = 22880 Added: head/graphics/py-svg_path/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-svg_path/pkg-descr Thu Mar 19 11:47:34 2020 (r528715) @@ -0,0 +1,6 @@ +svg.path + +svg.path is a collection of objects that implement the different path commands +in SVG, and a parser for SVG path definitions. + +WWW: https://pypi.org/project/svg.path/