[Python-apps-commits] r3113 - in packages/jokosher/trunk/debian (3 files)

dktrkranz-guest at users.alioth.debian.org dktrkranz-guest at users.alioth.debian.org
Sat Jun 13 09:24:20 UTC 2009


    Date: Saturday, June 13, 2009 @ 09:24:11
  Author: dktrkranz-guest
Revision: 3113

Remove 20_LevelList_IOError.dpatch, fixed upstream with a different approach

Modified:
  packages/jokosher/trunk/debian/changelog
  packages/jokosher/trunk/debian/patches/00list
Deleted:
  packages/jokosher/trunk/debian/patches/20_LevelList_IOError.dpatch

Modified: packages/jokosher/trunk/debian/changelog
===================================================================
--- packages/jokosher/trunk/debian/changelog	2009-06-13 00:42:52 UTC (rev 3112)
+++ packages/jokosher/trunk/debian/changelog	2009-06-13 09:24:11 UTC (rev 3113)
@@ -1,12 +1,14 @@
 jokosher (0.11.3-1) UNRELEASED; urgency=low
 
   * New upstream release.
+  * debian/patches/20_LevelList_IOError.dpatch:
+    - Removed, upstream fixed the issue with a different approach.
   * debian/patches/50_CreateNewProject_return.dpatch:
     - Removed, applied upstream.
   * Install jokosher-C.omf file to display help menu.
   * debian/patches/60-hard-code-omf-location.dpatch: fix help menu URI.
 
- -- Luca Falavigna <dktrkranz at ubuntu.com>  Thu, 11 Jun 2009 13:31:01 +0000
+ -- Luca Falavigna <dktrkranz at ubuntu.com>  Sat, 13 Jun 2009 11:21:13 +0200
 
 jokosher (0.11.2-2) unstable; urgency=low
 

Modified: packages/jokosher/trunk/debian/patches/00list
===================================================================
--- packages/jokosher/trunk/debian/patches/00list	2009-06-13 00:42:52 UTC (rev 3112)
+++ packages/jokosher/trunk/debian/patches/00list	2009-06-13 09:24:11 UTC (rev 3113)
@@ -1,5 +1,4 @@
 10_update_mime_database
-20_LevelList_IOError
 30_desktop_file
 40_load_extensions_from_unpacked_eggs
 60-hard-code-omf-location.dpatch

Deleted: packages/jokosher/trunk/debian/patches/20_LevelList_IOError.dpatch
===================================================================
--- packages/jokosher/trunk/debian/patches/20_LevelList_IOError.dpatch	2009-06-13 00:42:52 UTC (rev 3112)
+++ packages/jokosher/trunk/debian/patches/20_LevelList_IOError.dpatch	2009-06-13 09:24:11 UTC (rev 3113)
@@ -1,20 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## 20_LevelList_IOError.dpatch by Luca Falavigna <dktrkranz at ubuntu.com>
-## DP: Fix IOError exception trying to add an audio file to a project.
-
- at DPATCH@
-diff -urNad jokosher-0.11.1~/Jokosher/LevelsList.py jokosher-0.11.1/Jokosher/LevelsList.py
---- jokosher-0.11.1~/Jokosher/LevelsList.py	2009-03-17 04:07:01.000000000 +0100
-+++ jokosher-0.11.1/Jokosher/LevelsList.py	2009-04-18 03:05:08.000000000 +0200
-@@ -139,7 +139,10 @@
- 	#_____________________________________________________________________
- 	
- 	def tofile(self,  path):
--		f = open(path,  "wb")
-+		try:
-+			f = open(path,  "wb")
-+		except IOError:
-+			return
- 		info = array(self.ARRAY_TYPE)
- 		info.append(self.MAGIC_NUMBER)
- 		info.append(self.VERSION)




More information about the Python-apps-commits mailing list