From owner-svn-ports-all@freebsd.org Sat Sep 21 16:21: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 7F415128E04; Sat, 21 Sep 2019 16:21:34 +0000 (UTC) (envelope-from pi@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 46bG722w0dz3DkR; Sat, 21 Sep 2019 16:21:34 +0000 (UTC) (envelope-from pi@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 2C7A818E02; Sat, 21 Sep 2019 16:21:34 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8LGLYI3086108; Sat, 21 Sep 2019 16:21:34 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8LGLX5q086105; Sat, 21 Sep 2019 16:21:33 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201909211621.x8LGLX5q086105@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sat, 21 Sep 2019 16:21:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512522 - in head/graphics: . py-colour X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/graphics: . py-colour X-SVN-Commit-Revision: 512522 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: Sat, 21 Sep 2019 16:21:34 -0000 Author: pi Date: Sat Sep 21 16:21:33 2019 New Revision: 512522 URL: https://svnweb.freebsd.org/changeset/ports/512522 Log: New port: graphics/py-colour Converts and manipulates common colour representation (RGB, HSL, web, ...) WWW: http://github.com/vaab/colour PR: 240604 Submitted by: m.ne@gmx.net Reviewed by: koobs Added: head/graphics/py-colour/ head/graphics/py-colour/Makefile (contents, props changed) head/graphics/py-colour/distinfo (contents, props changed) head/graphics/py-colour/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat Sep 21 16:15:19 2019 (r512521) +++ head/graphics/Makefile Sat Sep 21 16:21:33 2019 (r512522) @@ -825,6 +825,7 @@ SUBDIR += py-cairocffi SUBDIR += py-cartopy SUBDIR += py-chart + SUBDIR += py-colour SUBDIR += py-descartes SUBDIR += py-django-easy-thumbnails SUBDIR += py-djvulibre Added: head/graphics/py-colour/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-colour/Makefile Sat Sep 21 16:21:33 2019 (r512522) @@ -0,0 +1,24 @@ +# Created by: Martin Neubauer +# $FreeBSD$ + +PORTNAME= colour +PORTVERSION= 0.1.5 +CATEGORIES= graphics devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= m.ne@gmx.net +COMMENT= Python colour representations manipulation library + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}d2to1>0:devel/py-d2to1@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include Added: head/graphics/py-colour/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-colour/distinfo Sat Sep 21 16:21:33 2019 (r512522) @@ -0,0 +1,3 @@ +TIMESTAMP = 1564604074 +SHA256 (colour-0.1.5.tar.gz) = af20120fefd2afede8b001fbef2ea9da70ad7d49fafdb6489025dae8745c3aee +SIZE (colour-0.1.5.tar.gz) = 24776 Added: head/graphics/py-colour/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-colour/pkg-descr Sat Sep 21 16:21:33 2019 (r512522) @@ -0,0 +1,3 @@ +Converts and manipulates common colour representation (RGB, HSL, web, ...) + +WWW: http://github.com/vaab/colour