From owner-svn-ports-head@freebsd.org Wed Jul 15 17:35:05 2015 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 E213D9A2998; Wed, 15 Jul 2015 17:35:04 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 D120F1A15; Wed, 15 Jul 2015 17:35:04 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from svnmir.geo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6FHZ4JP076727; Wed, 15 Jul 2015 17:35:04 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by svnmir.geo.freebsd.org (8.14.9/8.14.9/Submit) id t6FHZ3GI076722; Wed, 15 Jul 2015 17:35:03 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <201507151735.t6FHZ3GI076722@svnmir.geo.freebsd.org> X-Authentication-Warning: svnmir.geo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Wed, 15 Jul 2015 17:35:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r392173 - in head/math: . py-colormath X-SVN-Group: ports-head 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.20 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: Wed, 15 Jul 2015 17:35:05 -0000 Author: skreuzer Date: Wed Jul 15 17:35:02 2015 New Revision: 392173 URL: https://svnweb.freebsd.org/changeset/ports/392173 Log: colormath is a simple Python module that spares the user from directly dealing with color math. Some features include: * Support for a wide range of color spaces. A good chunk of the CIE spaces, RGB, HSL/HSV, CMY/CMYK, and many more. * Conversions between the various color spaces. For example, XYZ to sRGB, Spectral to XYZ, CIE Lab to Adobe RGB. * Calculation of color difference. All CIE Delta E functions, plus CMC. * Chromatic adaptations (changing illuminants). * RGB to hex and vice-versa. * 16-bit RGB support. WWW: https://pypi.python.org/pypi/colormath Added: head/math/py-colormath/ head/math/py-colormath/Makefile (contents, props changed) head/math/py-colormath/distinfo (contents, props changed) head/math/py-colormath/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Jul 15 17:19:13 2015 (r392172) +++ head/math/Makefile Wed Jul 15 17:35:02 2015 (r392173) @@ -554,6 +554,7 @@ SUBDIR += py-bitmath SUBDIR += py-bitvector SUBDIR += py-bottleneck + SUBDIR += py-colormath SUBDIR += py-cryptominisat SUBDIR += py-fastcluster SUBDIR += py-ffc Added: head/math/py-colormath/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-colormath/Makefile Wed Jul 15 17:35:02 2015 (r392173) @@ -0,0 +1,21 @@ +# Created by: Steven Kreuzer +# $FreeBSD$ + +PORTNAME= colormath +PORTVERSION= 2.1.1 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Module that spares the user from directly dealing with color math + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.9.2:${PORTSDIR}/math/py-numpy \ + ${PYTHON_PKGNAMEPREFIX}networkx>=1.9.1:${PORTSDIR}/math/py-networkx + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/math/py-colormath/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-colormath/distinfo Wed Jul 15 17:35:02 2015 (r392173) @@ -0,0 +1,2 @@ +SHA256 (colormath-2.1.1.tar.gz) = 003a2b2d9c1f43aa7d90addf1863fb2d822463c839b1166ae3092950792f9707 +SIZE (colormath-2.1.1.tar.gz) = 39048 Added: head/math/py-colormath/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-colormath/pkg-descr Wed Jul 15 17:35:02 2015 (r392173) @@ -0,0 +1,15 @@ +colormath is a simple Python module that spares the user from directly dealing +with color math. + +Some features include: + + * Support for a wide range of color spaces. A good chunk of the CIE spaces, + RGB, HSL/HSV, CMY/CMYK, and many more. + * Conversions between the various color spaces. For example, XYZ to sRGB, + Spectral to XYZ, CIE Lab to Adobe RGB. + * Calculation of color difference. All CIE Delta E functions, plus CMC. + * Chromatic adaptations (changing illuminants). + * RGB to hex and vice-versa. + * 16-bit RGB support. + +WWW: https://pypi.python.org/pypi/colormath