Date: Mon, 10 Jun 2019 14:12:43 +0000 (UTC) From: Kai Knoblich <kai@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503899 - in head/devel: . py-colorful Message-ID: <201906101412.x5AEChC9050256@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: kai Date: Mon Jun 10 14:12:43 2019 New Revision: 503899 URL: https://svnweb.freebsd.org/changeset/ports/503899 Log: New port: devel/py-colorful Colorizes and styles the text of terminals in the right way. Key Features: * Expressive and consistent API * Support for different color modes (8 ANSI, 256 ANSI, true colors) * Support for predefined awesome styles (solarized, ...) * Support for custom color palettes * Support nesting styles * Support for different platforms * Context managers for clean color mode, color palette or style switch * Support len() on colored strings * Support color names from X11 rgb.txt * No dependencies WWW: https://pypi.org/project/colorful/ PR: 229350 Submitted by: Patrice Clement <monsieurp@gentoo.org> Added: head/devel/py-colorful/ head/devel/py-colorful/Makefile (contents, props changed) head/devel/py-colorful/distinfo (contents, props changed) head/devel/py-colorful/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Jun 10 13:57:10 2019 (r503898) +++ head/devel/Makefile Mon Jun 10 14:12:43 2019 (r503899) @@ -4258,6 +4258,7 @@ SUBDIR += py-collective.z3cform.datetimewidget SUBDIR += py-colorama SUBDIR += py-coloredlogs + SUBDIR += py-colorful SUBDIR += py-colorlog SUBDIR += py-columnize SUBDIR += py-conditional Added: head/devel/py-colorful/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-colorful/Makefile Mon Jun 10 14:12:43 2019 (r503899) @@ -0,0 +1,20 @@ +# Created by: Patrice Clement <monsieurp@gentoo.org> +# $FreeBSD$ + +PORTNAME= colorful +PORTVERSION= 0.4.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= monsieurp@gentoo.org +COMMENT= Terminal string styling done right in Python + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-colorful/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-colorful/distinfo Mon Jun 10 14:12:43 2019 (r503899) @@ -0,0 +1,3 @@ +TIMESTAMP = 1530028897 +SHA256 (colorful-0.4.1.tar.gz) = 443c8aa36d889a81f6fb902099294ed9f2da4996bdc4ba02f1f5c73596c0ac9f +SIZE (colorful-0.4.1.tar.gz) = 19696 Added: head/devel/py-colorful/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-colorful/pkg-descr Mon Jun 10 14:12:43 2019 (r503899) @@ -0,0 +1,16 @@ +Colorizes and styles the text of terminals in the right way. + +Key Features: + +* Expressive and consistent API +* Support for different color modes (8 ANSI, 256 ANSI, true colors) +* Support for predefined awesome styles (solarized, ...) +* Support for custom color palettes +* Support nesting styles +* Support for different platforms +* Context managers for clean color mode, color palette or style switch +* Support len() on colored strings +* Support color names from X11 rgb.txt +* No dependencies + +WWW: https://pypi.org/project/colorful/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906101412.x5AEChC9050256>