packages: gnome-do-plugins/gnome-do-plugins.spec, gnome-do-plugins/gnome-do...
baggins
baggins at pld-linux.org
Thu Oct 28 23:58:32 CEST 2010
Author: baggins Date: Thu Oct 28 21:58:32 2010 GMT
Module: packages Tag: HEAD
---- Log message:
- fix mono 2.8 build (https://bugs.launchpad.net/do-plugins/+bug/634561)
---- Files affected:
packages/gnome-do-plugins:
gnome-do-plugins.spec (1.10 -> 1.11) , gnome-do-plugins-cs0834.patch (NONE -> 1.1) (NEW)
---- Diffs:
================================================================
Index: packages/gnome-do-plugins/gnome-do-plugins.spec
diff -u packages/gnome-do-plugins/gnome-do-plugins.spec:1.10 packages/gnome-do-plugins/gnome-do-plugins.spec:1.11
--- packages/gnome-do-plugins/gnome-do-plugins.spec:1.10 Thu Oct 28 23:52:52 2010
+++ packages/gnome-do-plugins/gnome-do-plugins.spec Thu Oct 28 23:58:26 2010
@@ -10,6 +10,7 @@
# Source0-md5: 32b88c062209e5b107602ccc5df285e7
Patch0: %{name}-banshee_indexer.patch
Patch1: %{name}-no-protected-struct.patch
+Patch2: %{name}-cs0834.patch
URL: http://do.davebsd.com/
BuildRequires: autoconf
BuildRequires: automake
@@ -37,6 +38,7 @@
%setup -q
%patch0 -p1
%patch1 -p1
+%patch2 -p0
%build
%{__aclocal} -I m4/shamrock
@@ -70,6 +72,9 @@
All persons listed below can be reached at <cvs_login>@pld-linux.org
$Log$
+Revision 1.11 2010/10/28 21:58:26 baggins
+- fix mono 2.8 build (https://bugs.launchpad.net/do-plugins/+bug/634561)
+
Revision 1.10 2010/10/28 21:52:52 baggins
- error CS0666: Structs cannot contain protected members
================================================================
Index: packages/gnome-do-plugins/gnome-do-plugins-cs0834.patch
diff -u /dev/null packages/gnome-do-plugins/gnome-do-plugins-cs0834.patch:1.1
--- /dev/null Thu Oct 28 23:58:32 2010
+++ packages/gnome-do-plugins/gnome-do-plugins-cs0834.patch Thu Oct 28 23:58:26 2010
@@ -0,0 +1,28 @@
+--- Evolution/src/ContactItemSource.cs 2009-10-12 14:30:04.000000000 -0600
++++ Evolution/src/ContactItemSource.cs 2010-09-01 16:18:37.000000000 -0600
+@@ -37,8 +37,8 @@
+
+ public ContactAttribute (string key, string detail)
+ {
+- Key = key;
+- Detail = detail;
++ this.Key = key;
++ this.Detail = detail;
+ }
+ }
+
+--- File/src/Do/Do.FilesAndFolders/IndexedFolder.cs 2009-10-12 14:30:04.000000000 -0600
++++ File/src/Do/Do.FilesAndFolders/IndexedFolder.cs 2010-09-01 16:32:36.000000000 -0600
+@@ -37,9 +37,9 @@
+ {
+ if (path == null) throw new ArgumentNullException ("path");
+
+- Path = Plugin.UnwrapHomeFolder (path);
+- Level = level;
+- Status = status;
++ this.Path = Plugin.UnwrapHomeFolder (path);
++ this.Level = level;
++ this.Status = status;
+ }
+
+ public IndexedFolder (string path, uint level) : this (path, level, FolderStatus.Indexed)
================================================================
---- CVS-web:
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/gnome-do-plugins/gnome-do-plugins.spec?r1=1.10&r2=1.11&f=u
More information about the pld-cvs-commit
mailing list