python-progressbar: Update to 2.3.

This commit is contained in:
Michael Tremer 2013-06-13 19:12:36 +02:00
parent bea58a22c1
commit 77b17fbf82
2 changed files with 16 additions and 3 deletions

View File

@ -0,0 +1,12 @@
Index: progressbar-2.3/progressbar/__init__.py
===================================================================
--- progressbar-2.3.orig/progressbar/__init__.py
+++ progressbar-2.3/progressbar/__init__.py
@@ -141,6 +141,7 @@ class ProgressBar(object):
try:
self._handle_resize()
signal.signal(signal.SIGWINCH, self._handle_resize)
+ signal.siginterrupt(signal.SIGWINCH, False)
self.signal_set = True
except (SystemExit, KeyboardInterrupt): raise
except:

View File

@ -4,13 +4,13 @@
###############################################################################
name = python-progressbar
version = 2.2
version = 2.3
release = 1
arch = noarch
thisapp = progressbar-%{version}
groups = System/Libraries
url = http://pypi.python.org/pypi/progressbar
url = http://code.google.com/p/python-progressbar/
license = LGPLv2+
summary = Text progressbar library for python.
@ -20,10 +20,11 @@ description
processing is under way.
end
source_dl =
source_dl = https://%{name}.googlecode.com/files/
build
requires
python-setuptools
python-devel
end