summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2014-03-18 21:47:42 +0000
committerLars Wirzenius <liw@liw.fi>2014-03-18 21:47:42 +0000
commit72f225fc49f918754e8056cb8d7c0f74eef13c51 (patch)
tree81761f093ca893a9104f8c6967206fccfd000915 /debian
parente899b539741d0d62643508ed26a1a5825f722aa1 (diff)
downloadttystatus-72f225fc49f918754e8056cb8d7c0f74eef13c51.tar.gz
Make Debian package description more useful
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog7
-rw-r--r--debian/control17
2 files changed, 21 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index d67dc33..f1da0ed 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+python-ttystatus (0.24-1) UNRELEASED; urgency=low
+
+ * New upstream version.
+ * debian/control: Make long description longer, more useful.
+
+ -- Lars Wirzenius <liw@liw.fi> Tue, 18 Mar 2014 21:46:57 +0000
+
python-ttystatus (0.23-1) unstable; urgency=low
* New upstream version.
diff --git a/debian/control b/debian/control
index 6d79c33..8e9b41e 100644
--- a/debian/control
+++ b/debian/control
@@ -12,6 +12,17 @@ Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python (>= 2.6)
Homepage: http://liw.fi/ttystatus/
Description: terminal progress bar and status output for Python
- The ttystatus Python library provides a simple widget-based way to show
- progress and current status in command line programs.
-
+ 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.
+ .
+ Output is provided via widgets. Each widgets formats some data into
+ a suitable form for output. It gets the data either via its initializer,
+ or from key/value pairs maintained by the master object. The values are
+ set by the user. Every time a value is updated, widgets get updated
+ (although the terminal is only updated every so often to give user time
+ to actually read the output).
+ .
+ The output from ttystatus goes to the terminal (`/dev/tty`) and is
+ restricted to a single line.