Index: head/graphics/py-webcolors/Makefile =================================================================== --- head/graphics/py-webcolors/Makefile (revision 403595) +++ head/graphics/py-webcolors/Makefile (revision 403596) @@ -1,28 +1,28 @@ # Created by: TAKATSU Tomonari # $FreeBSD$ PORTNAME= webcolors -PORTVERSION= 1.4 +PORTVERSION= 1.5 CATEGORIES= graphics python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= tota@FreeBSD.org COMMENT= Library working with the sRGB color space as used in the HTML and CSS LICENSE= BSD3CLAUSE USES= python 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 Index: head/graphics/py-webcolors/distinfo =================================================================== --- head/graphics/py-webcolors/distinfo (revision 403595) +++ head/graphics/py-webcolors/distinfo (revision 403596) @@ -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 Index: head/graphics/py-webcolors/pkg-descr =================================================================== --- head/graphics/py-webcolors/pkg-descr (revision 403595) +++ head/graphics/py-webcolors/pkg-descr (revision 403596) @@ -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