python-progressbar 2.2-2 source package in Ubuntu

Changelog

python-progressbar (2.2-2) unstable; urgency=low

  * debian/control
    - switch Vcs-Browser field to viewsvn
    - updated my email address
    - removed DM-Upload-Allowed flag
  * debian/README.source
    - added to comply to Policy 3.8.0 (we use a patch system)
  * debian/rules
    - don't compress .py files (in doc dir)
    - merged 'rm' call into 'dh_clean' one
    - added $(CURDIR) to installation dir
  * debian/copyright
    - updated my email address
    - fixed copyright notice and updated years for Debian packaging

 -- Ubuntu Archive Auto-Sync <email address hidden>   Wed,  29 Apr 2009 12:09:31 +0100

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Karmic
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe python

Builds

Karmic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-progressbar_2.2.orig.tar.gz 5.0 KiB dfee5201237ca0e942baa4d451fee8bf8a54065a337fabe7378b8585aeda56a3
python-progressbar_2.2-2.diff.gz 3.0 KiB ded64a10d9ff9869cda6d3a03f64fa8e77ebc19c4d5ca8175efac7b3e3a5a177
python-progressbar_2.2-2.dsc 1.3 KiB b549dc9fed02e8c710ff281887b2b8b3e30b6bbe1f87936308538d87e6f3875f

Available diffs

View changes file

Binary packages built by this source

python-progressbar: 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.