[MonoDevelop] monodevelop-0.7 release + boo-0.6.0 release fixes.

Peter Johanson latexer at gentoo.org
Tue Sep 6 21:48:39 EDT 2005


(cross-posted to get maximum coverage, smack me with a cod if you'd
like)

hey all,

For those wishing to use/package the latest release of both boo and
monodevelop, there are a few changes in the new boo release which currently make
this go *boom*. Attached is a patch which lets the monodevelop-0.7 release work
with the latest boo-0.6.0 release. Mainly posting this for
ubunut/debian/suse/whatever packagers who may find this useful.

No changes are necessary to use the latest boo release with current
monodevelop SVN.

Thanks,

-pete

-- 
Peter Johanson
<latexer at gentoo.org>
-------------- next part --------------
diff -aur monodevelop-0.7-orig/Extras/BooBinding/BooBindingCompilerServices.boo monodevelop-0.7/Extras/BooBinding/BooBindingCompilerServices.boo
--- monodevelop-0.7-orig/Extras/BooBinding/BooBindingCompilerServices.boo	2005-04-25 21:27:10.000000000 -0400
+++ monodevelop-0.7/Extras/BooBinding/BooBindingCompilerServices.boo	2005-09-06 21:31:23.000000000 -0400
@@ -105,7 +105,7 @@
 		try:
 			monitor.BeginTask (null, 2)
 			monitor.Log.WriteLine ("Compiling Boo source code ...")
-			arguments = String.Format ("-c \"{0} {1} > {2} 2> {3}\"", (compiler, args, output, error))
+			arguments = String.Format ("-c \"{0} {1} > {2} 2> {3}\"", compiler, args, output, error)
 			si = ProcessStartInfo ("/bin/sh", arguments)
 			// print "${si.FileName}, ${si.Arguments}"
 			si.RedirectStandardOutput = true
diff -aur monodevelop-0.7-orig/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo monodevelop-0.7/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo
--- monodevelop-0.7-orig/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo	2005-04-27 22:38:46.000000000 -0400
+++ monodevelop-0.7/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo	2005-08-29 09:29:06.000000000 -0400
@@ -119,9 +119,7 @@
 		labelCompileTarget.Markup = String.Format ("{0} :", GettextCatalog.GetString ("Output Assembly"))
 		
 
-		typeArray = array(System.Type, 1)
-		typeArray[0] = typeof(string)
-		store = ListStore (typeArray)
+		store = ListStore (typeof(string))
 
 		stringArray = array(System.String, 1)
 		stringArray[0] = GettextCatalog.GetString ("Executable")


More information about the Monodevelop-list mailing list