diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-12-12 12:23:43 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-12-12 12:23:43 +0000 |
commit | d06dbb12fbdf2bba7c9edbb75c97050c12162bff (patch) | |
tree | 4c93147b3522d59187052b79d703a4a9a0421619 /graphics | |
parent | 0147fe16afa34372979fd70dc64bddadf071e697 (diff) |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/py-webcolors/Makefile | 6 | ||||
-rw-r--r-- | graphics/py-webcolors/distinfo | 4 | ||||
-rw-r--r-- | graphics/py-webcolors/pkg-descr | 17 |
3 files changed, 11 insertions, 16 deletions
diff --git a/graphics/py-webcolors/Makefile b/graphics/py-webcolors/Makefile index 2c7acd8842b9..a2d2b6694eda 100644 --- a/graphics/py-webcolors/Makefile +++ b/graphics/py-webcolors/Makefile @@ -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 <bsd.port.mk> diff --git a/graphics/py-webcolors/distinfo b/graphics/py-webcolors/distinfo index 15cb88ff3aa3..7cd7edb5e421 100644 --- a/graphics/py-webcolors/distinfo +++ b/graphics/py-webcolors/distinfo @@ -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 diff --git a/graphics/py-webcolors/pkg-descr b/graphics/py-webcolors/pkg-descr index 33d46831c27c..13163247903a 100644 --- a/graphics/py-webcolors/pkg-descr +++ b/graphics/py-webcolors/pkg-descr @@ -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 |