Your message dated Thu, 20 Mar 2008 14:47:03 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#470340: fixed in gnome-rdp 0.2.2-6
has caused the Debian Bug report #470340,
regarding FTBFS with glib-sharp 2.12
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
470340: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470340
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: gnome-rdp
Version: 0.2.2-5
Severity: important

Hi,
gnome-rdp FTBFS with glib-sharp 2.12 and maybe also with older versions
(can't check right now). Attached patch fixes this, please include it...
thanks :)


> ./ProcessCaller.cs(65,44): error CS0104: `Process' is an ambiguous reference 
> between `System.Diagnostics.Process' and `GLib.Process'
> /usr/lib/mono/gac/System/1.0.5000.0__b77a5c561934e089/System.dll (Location of 
> the symbol related to previous error)
> /usr/lib/mono/gac/glib-sharp/2.12.0.0__35e10195dab3c99f/glib-sharp.dll 
> (Location of the symbol related to previous error)
> ./ProcessCaller.cs(66,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(67,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(68,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(69,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(70,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(71,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(72,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(73,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(74,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
> ./ProcessCaller.cs(75,27): error CS0246: The type or namespace name `Process' 
> could not be found. Are you missing a using directive or an assembly 
> reference?
--- src/ProcessCaller.cs.old	2008-03-13 20:48:43.000000000 +0100
+++ src/ProcessCaller.cs	2008-03-13 20:49:39.000000000 +0100
@@ -62,17 +62,17 @@
 			this._vnc = vnc;
 			this._passwd = passwd;
 			this._wnd = pwnd;
-			_processes.Add(new Process());
-			((Process)_processes[_processes.Count-1]).StartInfo.UseShellExecute 		= false;
-			((Process)_processes[_processes.Count-1]).StartInfo.RedirectStandardOutput	= true;
-			((Process)_processes[_processes.Count-1]).StartInfo.RedirectStandardError	= true;
-			((Process)_processes[_processes.Count-1]).StartInfo.RedirectStandardInput	= true;
-			((Process)_processes[_processes.Count-1]).StartInfo.CreateNoWindow 			= true;
-			((Process)_processes[_processes.Count-1]).StartInfo.FileName	 			= this._fileName;
-			((Process)_processes[_processes.Count-1]).StartInfo.Arguments 			 	= this._arguments;
-			((Process)_processes[_processes.Count-1]).StartInfo.WorkingDirectory	 	= this._workingDirectory;
-			((Process)_processes[_processes.Count-1]).EnableRaisingEvents 			 	= true;
-			((Process)_processes[_processes.Count-1]).WaitForInputIdle();			
+			_processes.Add(new System.Diagnostics.Process());
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.UseShellExecute 		= false;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.RedirectStandardOutput	= true;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.RedirectStandardError	= true;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.RedirectStandardInput	= true;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.CreateNoWindow 			= true;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.FileName	 			= this._fileName;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.Arguments 			 	= this._arguments;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.WorkingDirectory	 	= this._workingDirectory;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).EnableRaisingEvents 			 	= true;
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).WaitForInputIdle();			
 		}
 		
 		public void StartProcess()
@@ -85,12 +85,12 @@
 		{
 			_connectionCount++;
 			try {
-				((Process)_processes[_processes.Count-1]).Start();
+				((System.Diagnostics.Process)_processes[_processes.Count-1]).Start();
 			}
 			catch (Exception ex) {
 				Console.WriteLine(ex.Message);
 				Gdk.Threads.Enter();
-				MessageDialog md = new MessageDialog(this._wnd, DialogFlags.Modal, MessageType.Error, ButtonsType.Close, String.Format(Catalog.GetString("{0} seems not to be installed."), ((Process)_processes[_processes.Count-1]).StartInfo.FileName));
+				MessageDialog md = new MessageDialog(this._wnd, DialogFlags.Modal, MessageType.Error, ButtonsType.Close, String.Format(Catalog.GetString("{0} seems not to be installed."), ((System.Diagnostics.Process)_processes[_processes.Count-1]).StartInfo.FileName));
 				md.Run();
 				md.Destroy();
 				Gdk.Threads.Leave();
@@ -103,7 +103,7 @@
 			{
 				try
 				{
-					((Process)_processes[_processes.Count-1]).StandardInput.WriteLine(this._passwd);
+					((System.Diagnostics.Process)_processes[_processes.Count-1]).StandardInput.WriteLine(this._passwd);
 
 				}
 				catch (Exception e)
@@ -111,13 +111,13 @@
 					Console.WriteLine(e.Message);
 				}
 			}
-			((Process)_processes[_processes.Count-1]).WaitForExit();
+			((System.Diagnostics.Process)_processes[_processes.Count-1]).WaitForExit();
 			_connectionCount--;
 		}	
 		
 		public virtual void ReadStdOut()
 		{
-			string msg = GLib.Markup.EscapeText(((Process)_processes[_processes.Count-1]).StandardOutput.ReadToEnd());
+			string msg = GLib.Markup.EscapeText(((System.Diagnostics.Process)_processes[_processes.Count-1]).StandardOutput.ReadToEnd());
 			if (msg != null)
 			{
 				if (msg.Trim().Length > 0)
@@ -133,7 +133,7 @@
 		
 		public virtual void ReadStdErr()
 		{
-			string msg = GLib.Markup.EscapeText(((Process)_processes[_processes.Count-1]).StandardError.ReadToEnd());
+			string msg = GLib.Markup.EscapeText(((System.Diagnostics.Process)_processes[_processes.Count-1]).StandardError.ReadToEnd());
 			if (msg != null)
 			{
 				if (msg.Trim().Length > 0)

Attachment: signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


--- End Message ---
--- Begin Message ---
Source: gnome-rdp
Source-Version: 0.2.2-6

We believe that the bug you reported is fixed in the latest version of
gnome-rdp, which is due to be installed in the Debian FTP archive:

gnome-rdp_0.2.2-6.diff.gz
  to pool/main/g/gnome-rdp/gnome-rdp_0.2.2-6.diff.gz
gnome-rdp_0.2.2-6.dsc
  to pool/main/g/gnome-rdp/gnome-rdp_0.2.2-6.dsc
gnome-rdp_0.2.2-6_all.deb
  to pool/main/g/gnome-rdp/gnome-rdp_0.2.2-6_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Paleino <[EMAIL PROTECTED]> (supplier of updated gnome-rdp package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Thu, 20 Mar 2008 15:24:13 +0100
Source: gnome-rdp
Binary: gnome-rdp
Architecture: source all
Version: 0.2.2-6
Distribution: unstable
Urgency: low
Maintainer: David Paleino <[EMAIL PROTECTED]>
Changed-By: David Paleino <[EMAIL PROTECTED]>
Description: 
 gnome-rdp  - remote desktop client for GNOME
Closes: 470340 470820 470821
Changes: 
 gnome-rdp (0.2.2-6) unstable; urgency=low
 .
   * Urgency set to medium because of Serious bugs being fixed.
   * debian/patches/:
     - 09-vte-sharp-0.16.patch added (Closes: #470821)
     - 10-glib-sharp-2.12.patch added (Closes: #470340, #470820)
   * debian/control updated:
     - libvte dependency updated
   * debian/copyright updated to machine-readable format
Files: 
 6fc04029aeb2c65e0de301a86db6a757 1015 gnome optional gnome-rdp_0.2.2-6.dsc
 a61bbd5d5c436436918fa2d6bbaeffc8 8871 gnome optional gnome-rdp_0.2.2-6.diff.gz
 a290d9628f2efd168a688cf6f4d82ed5 107604 gnome optional 
gnome-rdp_0.2.2-6_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFH4nb3BsBdh1vkHyERAhvPAJ9lzmR8DS03/fMzdoYwC0coYPqX4QCdGx8i
HmvWvHAfn7s2n0kLRqvhl38=
=Y4Ra
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to