r21115 - in /packages/unstable/update-manager/debian: changelog patches/ patches/00_pythonapt_systemerror_handling.patch

speijnik-guest at users.alioth.debian.org speijnik-guest at users.alioth.debian.org
Fri Aug 28 08:56:40 UTC 2009


Author: speijnik-guest
Date: Fri Aug 28 08:56:40 2009
New Revision: 21115

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=21115
Log:
Added patch for SystemError handling in python-apt backend.

Added:
    packages/unstable/update-manager/debian/patches/
    packages/unstable/update-manager/debian/patches/00_pythonapt_systemerror_handling.patch
Modified:
    packages/unstable/update-manager/debian/changelog

Modified: packages/unstable/update-manager/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/update-manager/debian/changelog?rev=21115&op=diff
==============================================================================
--- packages/unstable/update-manager/debian/changelog [utf-8] (original)
+++ packages/unstable/update-manager/debian/changelog [utf-8] Fri Aug 28 08:56:40 2009
@@ -6,6 +6,8 @@
   * Fixed incorrect gconf exception handling (Closes: #544009).
   * Removed backported patch for bashisms in 
     data/bug_script/debian_reportbug.sh: fixed upstream.
+  * Added patch for incorrect handling of SystemError exceptions in the
+    python-apt backend.
 
   [ Emilio Pozuelo Monfort ]
   * debian/control.in: Clean up trailing whitespaces and change tabs with
@@ -13,7 +15,7 @@
   * Standards-Version is 3.8.3, no changes needed.
   * debian/pycompat: Removed, no longer needed since the switch to pysupport.
 
- -- Stephan Peijnik <debian at sp.or.at>  Fri, 28 Aug 2009 10:10:25 +0200
+ -- Stephan Peijnik <debian at sp.or.at>  Fri, 28 Aug 2009 10:56:07 +0200
 
 update-manager (0.200.0~rc1-2) unstable; urgency=low
 

Added: packages/unstable/update-manager/debian/patches/00_pythonapt_systemerror_handling.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/update-manager/debian/patches/00_pythonapt_systemerror_handling.patch?rev=21115&op=file
==============================================================================
--- packages/unstable/update-manager/debian/patches/00_pythonapt_systemerror_handling.patch (added)
+++ packages/unstable/update-manager/debian/patches/00_pythonapt_systemerror_handling.patch [utf-8] Fri Aug 28 08:56:40 2009
@@ -1,0 +1,13 @@
+=== modified file 'UpdateManager/Backend/PythonApt.py'
+--- UpdateManager/Backend/PythonApt.py	2009-08-16 09:50:11 +0000
++++ UpdateManager/Backend/PythonApt.py	2009-08-28 08:53:40 +0000
+@@ -832,6 +832,8 @@
+                 pass
+             except apt.cache.FetchFailedException, ex:
+                 commit_progress_handler.download_failed(ex.message)
++            except SystemError, ex:
++                commit_progress_handler.download_failed(ex.message)
+                 
+             self.acquire_lock()
+             if not download_helper._abort:
+




More information about the pkg-gnome-commits mailing list