Date: Tue, 28 Jan 2014 14:43:06 +0000 (UTC) From: Steven Kreuzer <skreuzer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341584 - in head/devel: . py-blessings Message-ID: <201401281443.s0SEh6P9019515@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: skreuzer Date: Tue Jan 28 14:43:06 2014 New Revision: 341584 URL: http://svnweb.freebsd.org/changeset/ports/341584 QAT: https://qat.redports.org/buildarchive/r341584/ Log: Blessings lifts several of curses' limiting assumptions, and it makes your code pretty Use styles, color, and maybe a little positioning without necessarily clearing the whole screen first. Leave more than one screenful of scrollback in the buffer after your program exits, like a well-behaved command-line app should. Get rid of all those noisy, C-like calls to tigetstr and tparm, so your code doesn't get crowded out by terminal bookkeeping. Act intelligently when somebody redirects your output to a file, omitting the terminal control codes the user doesn't want to see. WWW: https://github.com/erikrose/blessings Added: head/devel/py-blessings/ head/devel/py-blessings/Makefile (contents, props changed) head/devel/py-blessings/distinfo (contents, props changed) head/devel/py-blessings/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jan 28 14:40:41 2014 (r341583) +++ head/devel/Makefile Tue Jan 28 14:43:06 2014 (r341584) @@ -3519,6 +3519,7 @@ SUBDIR += py-bison SUBDIR += py-bitarray SUBDIR += py-bitstring + SUBDIR += py-blessings SUBDIR += py-blinker SUBDIR += py-bluelet SUBDIR += py-boto Added: head/devel/py-blessings/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-blessings/Makefile Tue Jan 28 14:43:06 2014 (r341584) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= blessings +PORTVERSION= 1.5.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= Thin wrapper around terminal coloring, styling, and positioning + +LICENSE= MIT + +USE_PYTHON= yes +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes + +.include <bsd.port.mk> Added: head/devel/py-blessings/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-blessings/distinfo Tue Jan 28 14:43:06 2014 (r341584) @@ -0,0 +1,2 @@ +SHA256 (blessings-1.5.1.tar.gz) = 2f6f5509fe180ae3092fdc559585a83a3cfce30afba9de25ccefc5ecfbfedbfc +SIZE (blessings-1.5.1.tar.gz) = 19239 Added: head/devel/py-blessings/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-blessings/pkg-descr Tue Jan 28 14:43:06 2014 (r341584) @@ -0,0 +1,12 @@ +Blessings lifts several of curses' limiting assumptions, and it makes +your code pretty + +Use styles, color, and maybe a little positioning without necessarily +clearing the whole screen first. Leave more than one screenful of +scrollback in the buffer after your program exits, like a well-behaved +command-line app should. Get rid of all those noisy, C-like calls to +tigetstr and tparm, so your code doesn't get crowded out by terminal +bookkeeping. Act intelligently when somebody redirects your output to a +file, omitting the terminal control codes the user doesn't want to see. + +WWW: https://github.com/erikrose/blessings
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401281443.s0SEh6P9019515>