[Pkg-cli-apps-commits] r4142 - in /packages/tangerine/trunk/debian: changelog patches/04_fix_music_dir_delimiter.patch
hanska-guest at users.alioth.debian.org
hanska-guest at users.alioth.debian.org
Sat Sep 20 17:20:29 UTC 2008
Author: hanska-guest
Date: Sat Sep 20 17:20:28 2008
New Revision: 4142
URL: http://svn.debian.org/wsvn/pkg-cli-apps/?sc=1&rev=4142
Log:
* debian/patches/:
+ 04_fix_music_dir_delimiter.patch added, uses "," instead of ";"
to specify multiple directories. Thanks to Jo Shields
(Closes: #494123)
Added:
packages/tangerine/trunk/debian/patches/04_fix_music_dir_delimiter.patch
Modified:
packages/tangerine/trunk/debian/changelog
Modified: packages/tangerine/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/tangerine/trunk/debian/changelog?rev=4142&op=diff
==============================================================================
--- packages/tangerine/trunk/debian/changelog (original)
+++ packages/tangerine/trunk/debian/changelog Sat Sep 20 17:20:28 2008
@@ -1,8 +1,12 @@
tangerine (0.3.0+dfsg-3) UNRELEASED; urgency=low
* debian/watch added.
+ * debian/patches/:
+ + 04_fix_music_dir_delimiter.patch added, uses "," instead of ";"
+ to specify multiple directories. Thanks to Jo Shields
+ (Closes: #494123)
- -- David Paleino <d.paleino at gmail.com> Sat, 20 Sep 2008 18:55:32 +0200
+ -- David Paleino <d.paleino at gmail.com> Sat, 20 Sep 2008 19:19:30 +0200
tangerine (0.3.0+dfsg-2) unstable; urgency=low
Added: packages/tangerine/trunk/debian/patches/04_fix_music_dir_delimiter.patch
URL: http://svn.debian.org/wsvn/pkg-cli-apps/packages/tangerine/trunk/debian/patches/04_fix_music_dir_delimiter.patch?rev=4142&op=file
==============================================================================
--- packages/tangerine/trunk/debian/patches/04_fix_music_dir_delimiter.patch (added)
+++ packages/tangerine/trunk/debian/patches/04_fix_music_dir_delimiter.patch Sat Sep 20 17:20:28 2008
@@ -1,0 +1,18 @@
+See <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494123>
+
+The ";" character is interpreted as a "Comment starting" character
+by the library handling the config file. Replacing with "," lets
+tangerine use multiple directories.
+
+Thanks to Jo Shields <directhex at apebox.org>.
+--- tangerine-0.3.0+dfsg.orig/plugins/file/FilePlugin.cs
++++ tangerine-0.3.0+dfsg/plugins/file/FilePlugin.cs
+@@ -37,7 +37,7 @@
+ if (Daemon.ConfigSource.Configs["FilePlugin"] == null) {
+ directories = new string[] { defaultDir };
+ } else {
+- directories = Daemon.ConfigSource.Configs["FilePlugin"].Get ("directories", defaultDir).Split (';');
++ directories = Daemon.ConfigSource.Configs["FilePlugin"].Get ("directories", defaultDir).Split (',');
+ }
+
+ server = Daemon.Server;
More information about the Pkg-cli-apps-commits
mailing list