From owner-svn-ports-head@FreeBSD.ORG Tue Jan 28 14:43:07 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D00A3EF0; Tue, 28 Jan 2014 14:43:07 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BBD6613CC; Tue, 28 Jan 2014 14:43:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0SEh77Q019521; Tue, 28 Jan 2014 14:43:07 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0SEh6P9019515; Tue, 28 Jan 2014 14:43:06 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201401281443.s0SEh6P9019515@svn.freebsd.org> From: Steven Kreuzer Date: Tue, 28 Jan 2014 14:43:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341584 - in head/devel: . py-blessings X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 14:43:08 -0000 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 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