From owner-svn-ports-all@freebsd.org Sun Sep 22 15:54:34 2019 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 DB44D12563D; Sun, 22 Sep 2019 15:54:34 +0000 (UTC) (envelope-from jwb@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 46bsTQ5TBZz3QK1; Sun, 22 Sep 2019 15:54:34 +0000 (UTC) (envelope-from jwb@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 9F0A2D3A; Sun, 22 Sep 2019 15:54:34 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8MFsYGk025731; Sun, 22 Sep 2019 15:54:34 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8MFsXUT025728; Sun, 22 Sep 2019 15:54:33 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <201909221554.x8MFsXUT025728@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Sun, 22 Sep 2019 15:54:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512590 - in head/graphics: . py-spectra X-SVN-Group: ports-head X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in head/graphics: . py-spectra X-SVN-Commit-Revision: 512590 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: Sun, 22 Sep 2019 15:54:34 -0000 Author: jwb Date: Sun Sep 22 15:54:33 2019 New Revision: 512590 URL: https://svnweb.freebsd.org/changeset/ports/512590 Log: graphics/py-spectra: Color scales and color conversion made easy for Python Spectra is a Python library that makes color math, color scales, and color-space conversion easy. Support for: Color scales Color ranges Color blending Brightening/darkening colors Saturating/desaturating colors Conversion to/from multiple color spaces Spectra is built on colormath and grapefruit. Spectra is enormously inspired by chroma.js and d3's scales. Added: head/graphics/py-spectra/ head/graphics/py-spectra/Makefile (contents, props changed) head/graphics/py-spectra/distinfo (contents, props changed) head/graphics/py-spectra/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Sep 22 14:45:50 2019 (r512589) +++ head/graphics/Makefile Sun Sep 22 15:54:33 2019 (r512590) @@ -897,6 +897,7 @@ SUBDIR += py-seqdiag SUBDIR += py-sorl-thumbnail SUBDIR += py-soya3d + SUBDIR += py-spectra SUBDIR += py-stltools SUBDIR += py-svgwrite SUBDIR += py-termtosvg Added: head/graphics/py-spectra/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-spectra/Makefile Sun Sep 22 15:54:33 2019 (r512590) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= spectra +DISTVERSION= 0.0.11 +CATEGORIES= graphics python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= jwb@FreeBSD.org +COMMENT= Color scales and color conversion made easy for Python + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m nose -v test + +.include Added: head/graphics/py-spectra/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-spectra/distinfo Sun Sep 22 15:54:33 2019 (r512590) @@ -0,0 +1,3 @@ +TIMESTAMP = 1569116785 +SHA256 (spectra-0.0.11.tar.gz) = 8eb362a5187cb63cee13cd01186799c0c791a3ad3bec57b279132e12521762b8 +SIZE (spectra-0.0.11.tar.gz) = 18819 Added: head/graphics/py-spectra/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-spectra/pkg-descr Sun Sep 22 15:54:33 2019 (r512590) @@ -0,0 +1,16 @@ +Spectra is a Python library that makes color math, color scales, and +color-space conversion easy. + +Support for: + + Color scales + Color ranges + Color blending + Brightening/darkening colors + Saturating/desaturating colors + Conversion to/from multiple color spaces + +Spectra is built on colormath and grapefruit. Spectra is enormously inspired by +chroma.js and d3's scales. + +WWW: https://pypi.python.org/pypi/spectra