Date: Mon, 6 Feb 2017 21:10:09 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433520 - in head/devel: . py-ttystatus Message-ID: <201702062110.v16LA9js074144@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Mon Feb 6 21:10:09 2017 New Revision: 433520 URL: https://svnweb.freebsd.org/changeset/ports/433520 Log: ttystatus is a Python library for showing progress reporting and status updates on terminals, for (Unix) command line programs. Output is automatically adapted to the width of the terminal: truncated if it does not fit, and re-sized if the terminal size changes. WWW: https://liw.fi/ttystatus/ Added: head/devel/py-ttystatus/ head/devel/py-ttystatus/Makefile (contents, props changed) head/devel/py-ttystatus/distinfo (contents, props changed) head/devel/py-ttystatus/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Feb 6 21:08:31 2017 (r433519) +++ head/devel/Makefile Mon Feb 6 21:10:09 2017 (r433520) @@ -4715,6 +4715,7 @@ SUBDIR += py-traits SUBDIR += py-transaction SUBDIR += py-trollius + SUBDIR += py-ttystatus SUBDIR += py-turbocheetah SUBDIR += py-turbojson SUBDIR += py-turbojson11 Added: head/devel/py-ttystatus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ttystatus/Makefile Mon Feb 6 21:10:09 2017 (r433520) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= ttystatus +PORTVERSION= 0.32 +CATEGORIES= devel +MASTER_SITES= http://git.liw.fi/cgi-bin/cgit/cgit.cgi/ttystatus/snapshot/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Python progress reporting to /dev/tty + +LICENSE= GPLv3 +LICENSE_FILES= ${WRKSRC}/COPYING + +USES= python:2 +NO_ARCH= yes + +USE_PYTHON= distutils autoplist + +.include <bsd.port.mk> Added: head/devel/py-ttystatus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ttystatus/distinfo Mon Feb 6 21:10:09 2017 (r433520) @@ -0,0 +1,3 @@ +TIMESTAMP = 1486414119 +SHA256 (ttystatus-0.32.tar.gz) = ae2a054aa0bb6d1c6c71cb836bd5d55b9ade6863008c0803177908291342af2c +SIZE (ttystatus-0.32.tar.gz) = 33642 Added: head/devel/py-ttystatus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-ttystatus/pkg-descr Mon Feb 6 21:10:09 2017 (r433520) @@ -0,0 +1,6 @@ +ttystatus is a Python library for showing progress reporting and status updates +on terminals, for (Unix) command line programs. Output is automatically adapted +to the width of the terminal: truncated if it does not fit, and re-sized if the +terminal size changes. + +WWW: https://liw.fi/ttystatus/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201702062110.v16LA9js074144>