[Pkg-mono-svn-commits] rev 3292 - in non-group/banshee/trunk/debian: . patches

Sebastian Dröge slomo at alioth.debian.org
Mon Aug 20 04:58:22 UTC 2007


Author: slomo
Date: 2007-08-20 04:58:22 +0000 (Mon, 20 Aug 2007)
New Revision: 3292

Removed:
   non-group/banshee/trunk/debian/patches/05_home.patch
Modified:
   non-group/banshee/trunk/debian/changelog
Log:
* New upstream release.
* debian/patches/05_home.patch:
  + Dropped, merged upstream.

Modified: non-group/banshee/trunk/debian/changelog
===================================================================
--- non-group/banshee/trunk/debian/changelog	2007-08-18 14:16:08 UTC (rev 3291)
+++ non-group/banshee/trunk/debian/changelog	2007-08-20 04:58:22 UTC (rev 3292)
@@ -1,3 +1,11 @@
+banshee (0.13.1+dfsg-1) unstable; urgency=low
+
+  * New upstream release.
+  * debian/patches/05_home.patch:
+    + Dropped, merged upstream.
+
+ -- Sebastian Dröge <slomo at debian.org>  Mon, 20 Aug 2007 06:57:27 +0200
+
 banshee (0.13.0+dfsg-2) unstable; urgency=low
 
   * debian/patches/05_home.patch:

Deleted: non-group/banshee/trunk/debian/patches/05_home.patch
===================================================================
--- non-group/banshee/trunk/debian/patches/05_home.patch	2007-08-18 14:16:08 UTC (rev 3291)
+++ non-group/banshee/trunk/debian/patches/05_home.patch	2007-08-20 04:58:22 UTC (rev 3292)
@@ -1,24 +0,0 @@
-Index: src/Core/Banshee.Base/Paths.cs
-===================================================================
---- src/Core/Banshee.Base/Paths.cs	(revision 2419)
-+++ src/Core/Banshee.Base/Paths.cs	(working copy)
-@@ -61,7 +61,17 @@
-                         line = line.Trim();
-                         int delim_index = line.IndexOf('=');
-                         if(delim_index > 8 && line.Substring (0, delim_index) == key) {
--                            return Path.Combine(home_dir, line.Substring(delim_index + 1));
-+                            string path = line.Substring(delim_index + 1).Trim('"');
-+                            bool relative = false;
-+
-+                            if(path.StartsWith("$HOME/")) {
-+                                relative = true;
-+                                path = path.Substring(6);
-+                            } else if(!path.StartsWith("/")) {
-+                                relative = true;
-+                            }
-+
-+                            return relative ? Path.Combine(home_dir, path) : path;
-                         }
-                     }
-                 }
-




More information about the Pkg-mono-svn-commits mailing list