[Monodevelop-patches-list] r2775 - in trunk/MonoDevelop/Extras/BooBinding: . BooShell Gui/OptionPanels

Peter Johanson <latexer@gentoo.org> pjohanson at mono-cvs.ximian.com
Sun Aug 21 17:54:56 EDT 2005


Author: pjohanson
Date: 2005-08-21 17:54:55 -0400 (Sun, 21 Aug 2005)
New Revision: 2775

Modified:
   trunk/MonoDevelop/Extras/BooBinding/BooShell/BooShell.boo
   trunk/MonoDevelop/Extras/BooBinding/ChangeLog
   trunk/MonoDevelop/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo
   trunk/MonoDevelop/Extras/BooBinding/Makefile.am
Log:
Various fixes to get boo addin working agian. Now requires boo from SVN.


Modified: trunk/MonoDevelop/Extras/BooBinding/BooShell/BooShell.boo
===================================================================
--- trunk/MonoDevelop/Extras/BooBinding/BooShell/BooShell.boo	2005-08-21 10:22:52 UTC (rev 2774)
+++ trunk/MonoDevelop/Extras/BooBinding/BooShell/BooShell.boo	2005-08-21 21:54:55 UTC (rev 2775)
@@ -56,7 +56,7 @@
 		get:
 			list = []
 			Monitor.Enter (_interpreter)
-			for assembly as System.Reflection.Assembly in _interpreter.References.List:
+			for assembly as System.Reflection.Assembly in _interpreter.References:
 				try:
 					loc = assembly.Location
 					list.Add (loc)

Modified: trunk/MonoDevelop/Extras/BooBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/Extras/BooBinding/ChangeLog	2005-08-21 10:22:52 UTC (rev 2774)
+++ trunk/MonoDevelop/Extras/BooBinding/ChangeLog	2005-08-21 21:54:55 UTC (rev 2775)
@@ -1,3 +1,10 @@
+2005-08-21  Peter Johanson  <latexer at gentoo.org> 
+
+	* Makefile.am: Use new -embedres option in boo.
+	* BooShell/BooShell.boo: Fix foreach over a CollectionBase.
+	* Gui/OptionPanels/CodeCompilationPanel.boo: Fix required for boo's
+	new method invocation changes.
+
 2005-08-20  Peter Johanson  <latexer at gentoo.org> 
 
 	* templates/BooGtkSharpProject.xpt.xml: Fix gtk-sharp references to

Modified: trunk/MonoDevelop/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo
===================================================================
--- trunk/MonoDevelop/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo	2005-08-21 10:22:52 UTC (rev 2774)
+++ trunk/MonoDevelop/Extras/BooBinding/Gui/OptionPanels/CodeCompilationPanel.boo	2005-08-21 21:54:55 UTC (rev 2775)
@@ -104,7 +104,7 @@
 		labelCompileTarget.Markup = String.Format ("{0} :", GettextCatalog.GetString ("Output Assembly"))
 		
 
-		store = ListStore ((typeof(string),))
+		store = ListStore (string)
 
 		stringArray = array(System.String, 1)
 		stringArray[0] = GettextCatalog.GetString ("Executable")

Modified: trunk/MonoDevelop/Extras/BooBinding/Makefile.am
===================================================================
--- trunk/MonoDevelop/Extras/BooBinding/Makefile.am	2005-08-21 10:22:52 UTC (rev 2774)
+++ trunk/MonoDevelop/Extras/BooBinding/Makefile.am	2005-08-21 21:54:55 UTC (rev 2775)
@@ -1,3 +1,4 @@
+#SUBDIRS = PythonShell
 
 ADDIN_BUILD = $(top_builddir)/build/AddIns/BackendBindings
 ASSEMBLY = $(ADDIN_BUILD)/BooBinding.dll
@@ -78,7 +79,7 @@
 
 $(ASSEMBLY): $(FILES) $(BOOSHELL_LIB) $(RES)
 	mkdir -p $(ADDIN_BUILD)
-	$(BOOC) $(DLLS) $(RES:%=/resource:%) $(build_sources) -o:$@ -t:library
+	$(BOOC) $(DLLS) $(RES:%=-embedres:%) $(build_sources) -o:$@ -t:library
 
 $(BOOSHELL_LIB): $(BOOSHELL_FILES)
 	mkdir -p $(ADDIN_BUILD)




More information about the Monodevelop-patches-list mailing list