From owner-svn-ports-all@freebsd.org Sat Dec 12 12:23:45 2015 Return-Path: Delivered-To: svn-ports-all@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 E7B07A141FC; Sat, 12 Dec 2015 12:23:44 +0000 (UTC) (envelope-from tota@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 A80411E3D; Sat, 12 Dec 2015 12:23:44 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBCCNhQb078278; Sat, 12 Dec 2015 12:23:43 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBCCNhJO078275; Sat, 12 Dec 2015 12:23:43 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201512121223.tBCCNhJO078275@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Sat, 12 Dec 2015 12:23:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403596 - head/graphics/py-webcolors X-SVN-Group: ports-head 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.20 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, 12 Dec 2015 12:23:45 -0000 Author: tota Date: Sat Dec 12 12:23:43 2015 New Revision: 403596 URL: https://svnweb.freebsd.org/changeset/ports/403596 Log: - Update to 1.5 - Unmute INSTALL_DATA - Update pkg-descr Modified: head/graphics/py-webcolors/Makefile head/graphics/py-webcolors/distinfo head/graphics/py-webcolors/pkg-descr Modified: head/graphics/py-webcolors/Makefile ============================================================================== --- head/graphics/py-webcolors/Makefile Sat Dec 12 11:01:36 2015 (r403595) +++ head/graphics/py-webcolors/Makefile Sat Dec 12 12:23:43 2015 (r403596) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= webcolors -PORTVERSION= 1.4 +PORTVERSION= 1.5 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,12 +17,12 @@ USE_PYTHON= distutils autoplist NO_ARCH= yes DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} -PORTDOCS= README +PORTDOCS= README.rst OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${INSTALL_WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${INSTALL_WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include Modified: head/graphics/py-webcolors/distinfo ============================================================================== --- head/graphics/py-webcolors/distinfo Sat Dec 12 11:01:36 2015 (r403595) +++ head/graphics/py-webcolors/distinfo Sat Dec 12 12:23:43 2015 (r403596) @@ -1,2 +1,2 @@ -SHA256 (webcolors-1.4.tar.gz) = 304fc95dab2848c7bf64f378356766e692c2f8b4a8b15fa3509544e6412936e8 -SIZE (webcolors-1.4.tar.gz) = 7843 +SHA256 (webcolors-1.5.tar.gz) = b3b1c3a41e9c69d1982b76b6531239115519f91cc034a24e975749832dc51b8e +SIZE (webcolors-1.5.tar.gz) = 29960 Modified: head/graphics/py-webcolors/pkg-descr ============================================================================== --- head/graphics/py-webcolors/pkg-descr Sat Dec 12 11:01:36 2015 (r403595) +++ head/graphics/py-webcolors/pkg-descr Sat Dec 12 12:23:43 2015 (r403596) @@ -1,19 +1,14 @@ -This module provides utility functions for working with the color names -and color value formats defined by the HTML and CSS specifications for -use in documents on the Web. +webcolors is a simple Python (2.6, 2.7, 3.3+) module for working +with HTML/CSS color definitions. -Support is included for the following formats (RGB colorspace only; -conversion to/from HSL can be handled by the ``colorsys`` module in -the Python standard library): +Support is included for normalizing and converting between the +following formats (RGB colorspace only; conversion to/from HSL can +be handled by the colorsys module in the Python standard library): * Specification-defined color names - * Six-digit hexadecimal - * Three-digit hexadecimal - * Integer rgb() triplet - * Percentage rgb() triplet -WWW: https://bitbucket.org/ubernostrum/webcolors/overview/ +WWW: https://github.com/ubernostrum/webcolors