[Python-modules-commits] r26225 - in packages/python-progressbar/trunk/debian (3 files)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Sun Oct 20 20:21:19 UTC 2013
Date: Sunday, October 20, 2013 @ 20:21:17
Author: morph
Revision: 26225
* debian/patches/10_add_simpleprogress.patch
- removed, merged upstream
Modified:
packages/python-progressbar/trunk/debian/changelog
packages/python-progressbar/trunk/debian/control
Deleted:
packages/python-progressbar/trunk/debian/patches/
Modified: packages/python-progressbar/trunk/debian/changelog
===================================================================
--- packages/python-progressbar/trunk/debian/changelog 2013-10-20 13:51:07 UTC (rev 26224)
+++ packages/python-progressbar/trunk/debian/changelog 2013-10-20 20:21:17 UTC (rev 26225)
@@ -7,8 +7,8 @@
- bump Standards-Version to 3.9.4 (no changes needed)
* debian/rules
- converted to dh sequencer
- * debian/{control, patches/*, rules}
- - converted from dpatch to quilt
+ * debian/patches/10_add_simpleprogress.patch
+ - removed, merged upstream
* debian/source/format
- use 3.0 (quilt) source format
* debian/{examples/*, rules}
@@ -20,7 +20,7 @@
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
- -- Sandro Tosi <morph at debian.org> Sun, 20 Oct 2013 15:50:55 +0200
+ -- Sandro Tosi <morph at debian.org> Sun, 20 Oct 2013 22:20:02 +0200
python-progressbar (2.2-2) unstable; urgency=low
Modified: packages/python-progressbar/trunk/debian/control
===================================================================
--- packages/python-progressbar/trunk/debian/control 2013-10-20 13:51:07 UTC (rev 26224)
+++ packages/python-progressbar/trunk/debian/control 2013-10-20 20:21:17 UTC (rev 26225)
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Sandro Tosi <morph at debian.org>
-Build-Depends: debhelper (>= 5), python, quilt
+Build-Depends: debhelper (>= 5), python
Build-Depends-Indep: python-support (>= 0.4)
Standards-Version: 3.9.4
Homepage: http://code.google.com/p/python-progressbar/
@@ -13,7 +13,16 @@
Package: python-progressbar
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}
-Description: text progressbar library for Python
- This library provides a text mode progressbar. This is typically used
- to display the progress of a long running operation, providing a
- visual clue that processing is underway.
+Description: text progress bar library for Python
+ A text progress bar is typically used to display the progress of a long
+ running operation, providing a visual cue that processing is underway.
+ .
+ The ProgressBar class manages the current progress, and the format of the line
+ is given by a number of widgets. A widget is an object that may display
+ differently depending on the state of the progress bar. There are three types
+ of widgets:
+ - a string, which always shows itself
+ - a ProgressBarWidget, which may return a different value every time its
+ update method is called
+ - a ProgressBarWidgetHFill, which is like ProgressBarWidget, except it
+ expands to fill the remaining width of the line.
More information about the Python-modules-commits
mailing list