Date: Sun, 29 Dec 2019 17:31:21 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r521368 - in head/devel: . py-pastel Message-ID: <201912291731.xBTHVLmf072551@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sun Dec 29 17:31:21 2019 New Revision: 521368 URL: https://svnweb.freebsd.org/changeset/ports/521368 Log: Add py-pastel 0.2.0 Pastel is a simple library to help you colorize strings in your terminal. It comes bundled with predefined styles: - info: green - comment: yellow - question: black on cyan - error: white on red WWW: https://github.com/sdispater/pastel Added: head/devel/py-pastel/ head/devel/py-pastel/Makefile (contents, props changed) head/devel/py-pastel/distinfo (contents, props changed) head/devel/py-pastel/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Dec 29 17:31:14 2019 (r521367) +++ head/devel/Makefile Sun Dec 29 17:31:21 2019 (r521368) @@ -4755,6 +4755,7 @@ SUBDIR += py-parallax SUBDIR += py-parsedatetime SUBDIR += py-parver + SUBDIR += py-pastel SUBDIR += py-patch SUBDIR += py-path.py SUBDIR += py-pathlib Added: head/devel/py-pastel/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pastel/Makefile Sun Dec 29 17:31:21 2019 (r521368) @@ -0,0 +1,21 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pastel +PORTVERSION= 0.2.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Bring colors to your terminal + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/devel/py-pastel/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pastel/distinfo Sun Dec 29 17:31:21 2019 (r521368) @@ -0,0 +1,3 @@ +TIMESTAMP = 1577626021 +SHA256 (pastel-0.2.0.tar.gz) = 46155fc523bdd4efcd450bbcb3f2b94a6e3b25edc0eb493e081104ad09e1ca36 +SIZE (pastel-0.2.0.tar.gz) = 7601 Added: head/devel/py-pastel/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pastel/pkg-descr Sun Dec 29 17:31:21 2019 (r521368) @@ -0,0 +1,9 @@ +Pastel is a simple library to help you colorize strings in your terminal. + +It comes bundled with predefined styles: +- info: green +- comment: yellow +- question: black on cyan +- error: white on red + +WWW: https://github.com/sdispater/pastel
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912291731.xBTHVLmf072551>