Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id F38AF7A170 for ; Wed, 12 Apr 2017 11:41:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A2F7984D9E; Wed, 12 Apr 2017 11:41:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 32D0A84D79 for ; Wed, 12 Apr 2017 11:41:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id KLZmDSPuYhvF for ; Wed, 12 Apr 2017 11:41:44 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A4E6184CDB for ; Wed, 12 Apr 2017 11:41:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9EDA5FBE4; Wed, 12 Apr 2017 11:41:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1491997304225590" MIME-Version: 1.0 Date: Wed, 12 Apr 2017 11:41:44 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-blessings To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170412114144.9EDA5FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1491997304225590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Apr 12 11:41:44 UTC 2017 Added Files: pkgsrc/devel/py-blessings: DESCR Makefile PLIST distinfo Log Message: Blessings lifts several of curses' limiting assumptions, and it makes your code pretty, too: * 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 (optional). To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/devel/py-blessings/DESCR \ pkgsrc/devel/py-blessings/Makefile pkgsrc/devel/py-blessings/PLIST \ pkgsrc/devel/py-blessings/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1491997304225590 Content-Disposition: inline Content-Length: 2791 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/devel/py-blessings/DESCR diff -u /dev/null pkgsrc/devel/py-blessings/DESCR:1.1 --- /dev/null Wed Apr 12 11:41:44 2017 +++ pkgsrc/devel/py-blessings/DESCR Wed Apr 12 11:41:44 2017 @@ -0,0 +1,10 @@ +Blessings lifts several of curses' limiting assumptions, and it makes your +code pretty, too: +* 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 (optional). Index: pkgsrc/devel/py-blessings/Makefile diff -u /dev/null pkgsrc/devel/py-blessings/Makefile:1.1 --- /dev/null Wed Apr 12 11:41:44 2017 +++ pkgsrc/devel/py-blessings/Makefile Wed Apr 12 11:41:44 2017 @@ -0,0 +1,16 @@ +# $NetBSD: Makefile,v 1.1 2017/04/12 11:41:44 adam Exp $ + +DISTNAME= blessings-1.6 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=b/blessings/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/erikrose/blessings +COMMENT= Thin, practical wrapper around terminal +LICENSE= mit + +USE_LANGUAGES= # none + +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-blessings/PLIST diff -u /dev/null pkgsrc/devel/py-blessings/PLIST:1.1 --- /dev/null Wed Apr 12 11:41:44 2017 +++ pkgsrc/devel/py-blessings/PLIST Wed Apr 12 11:41:44 2017 @@ -0,0 +1,11 @@ +@comment $NetBSD: PLIST,v 1.1 2017/04/12 11:41:44 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/blessings/__init__.py +${PYSITELIB}/blessings/__init__.pyc +${PYSITELIB}/blessings/__init__.pyo +${PYSITELIB}/blessings/tests.py +${PYSITELIB}/blessings/tests.pyc +${PYSITELIB}/blessings/tests.pyo Index: pkgsrc/devel/py-blessings/distinfo diff -u /dev/null pkgsrc/devel/py-blessings/distinfo:1.1 --- /dev/null Wed Apr 12 11:41:44 2017 +++ pkgsrc/devel/py-blessings/distinfo Wed Apr 12 11:41:44 2017 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2017/04/12 11:41:44 adam Exp $ + +SHA1 (blessings-1.6.tar.gz) = f7a0bda2eb0463ca3ae8c4a1e1e71aa457a292e5 +RMD160 (blessings-1.6.tar.gz) = 00014f95d6c303cb87f02476f9b4c1d3e242293a +SHA512 (blessings-1.6.tar.gz) = 5d0fc365416bf2b36b6de72f6b8c01bf0ab8df4a0148f492c80056a9ebd5d569e9c01966481e0d70a25add16da2bc3e73be933226369abca533ce019f97479f2 +Size (blessings-1.6.tar.gz) = 19974 bytes --_----------=_1491997304225590--