diff options
author | bapt <bapt@FreeBSD.org> | 2017-02-07 05:10:09 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2017-02-07 05:10:09 +0800 |
commit | 2add8ac489693e8c6f08d82d63655369fe04b92f (patch) | |
tree | 4d0dfe9b7d4ed6c1ee8044a65e8fa41f260641e8 /devel | |
parent | c0fa3adf76a8da8214cfddbc431ec88fc64afd0c (diff) | |
download | freebsd-ports-gnome-2add8ac489693e8c6f08d82d63655369fe04b92f.tar.gz freebsd-ports-gnome-2add8ac489693e8c6f08d82d63655369fe04b92f.tar.zst freebsd-ports-gnome-2add8ac489693e8c6f08d82d63655369fe04b92f.zip |
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/
Diffstat (limited to 'devel')
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/py-ttystatus/Makefile | 20 | ||||
-rw-r--r-- | devel/py-ttystatus/distinfo | 3 | ||||
-rw-r--r-- | devel/py-ttystatus/pkg-descr | 6 |
4 files changed, 30 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 6ed21aa080d8..1892ad4e5b87 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -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 diff --git a/devel/py-ttystatus/Makefile b/devel/py-ttystatus/Makefile new file mode 100644 index 000000000000..e48517f8f123 --- /dev/null +++ b/devel/py-ttystatus/Makefile @@ -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> diff --git a/devel/py-ttystatus/distinfo b/devel/py-ttystatus/distinfo new file mode 100644 index 000000000000..abfd6a7c7202 --- /dev/null +++ b/devel/py-ttystatus/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1486414119 +SHA256 (ttystatus-0.32.tar.gz) = ae2a054aa0bb6d1c6c71cb836bd5d55b9ade6863008c0803177908291342af2c +SIZE (ttystatus-0.32.tar.gz) = 33642 diff --git a/devel/py-ttystatus/pkg-descr b/devel/py-ttystatus/pkg-descr new file mode 100644 index 000000000000..4fed05e76d19 --- /dev/null +++ b/devel/py-ttystatus/pkg-descr @@ -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/ |