[Pkg-mono-svn-commits] rev 2792 - in mono-tools/trunk/debian: . patches

Sebastian Dröge slomo-guest at costa.debian.org
Tue Oct 17 06:38:00 UTC 2006


Author: slomo-guest
Date: 2006-10-17 06:38:00 +0000 (Tue, 17 Oct 2006)
New Revision: 2792

Added:
   mono-tools/trunk/debian/patches/03_glade-callbacks-sig.dpatch
Removed:
   mono-tools/trunk/debian/patches/03_gtk-sharp2.dpatch
   mono-tools/trunk/debian/patches/04_glade-callbacks.dpatch
   mono-tools/trunk/debian/patches/05_empty-search.dpatch
Modified:
   mono-tools/trunk/debian/changelog
   mono-tools/trunk/debian/patches/00list
Log:
* update mono-tools to 1.1.17-1


Modified: mono-tools/trunk/debian/changelog
===================================================================
--- mono-tools/trunk/debian/changelog	2006-10-17 06:12:13 UTC (rev 2791)
+++ mono-tools/trunk/debian/changelog	2006-10-17 06:38:00 UTC (rev 2792)
@@ -1,3 +1,16 @@
+mono-tools (1.1.17-1) unstable; urgency=low
+
+  * Sebastian 'slomo' Dröge:
+    + New upstream release
+    + debian/patches/03_gtk-sharp2.dpatch,
+      debian/patches/04_glade-callbacks.dpatch,
+      debian/patches/05_empty-search.dpatch:
+      - Dropped, merged upstream
+    + debian/patches/03_glade-callbacks-sig.dpatch:
+      - Fix signatures for the Glade callbacks (Closes: #391044)
+
+ -- Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>  Tue, 17 Oct 2006 08:21:50 +0200
+
 mono-tools (1.1.11-5) unstable; urgency=low
 
   * Sebastian 'slomo' Dröge:

Modified: mono-tools/trunk/debian/patches/00list
===================================================================
--- mono-tools/trunk/debian/patches/00list	2006-10-17 06:12:13 UTC (rev 2791)
+++ mono-tools/trunk/debian/patches/00list	2006-10-17 06:38:00 UTC (rev 2792)
@@ -1,5 +1,3 @@
 01_use_real_nunit
 02_startup_mono_path
-03_gtk-sharp2
-04_glade-callbacks.dpatch
-05_empty-search.dpatch
+03_glade-callbacks-sig

Added: mono-tools/trunk/debian/patches/03_glade-callbacks-sig.dpatch
===================================================================
--- mono-tools/trunk/debian/patches/03_glade-callbacks-sig.dpatch	                        (rev 0)
+++ mono-tools/trunk/debian/patches/03_glade-callbacks-sig.dpatch	2006-10-17 06:38:00 UTC (rev 2792)
@@ -0,0 +1,15 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+
+ at DPATCH@
+
+--- mono-tools-1.1.17/gnunit/src/main.cs.old	2006-10-17 08:27:13.353725750 +0200
++++ mono-tools-1.1.17/gnunit/src/main.cs	2006-10-17 08:28:35.474858000 +0200
+@@ -563,7 +563,7 @@
+ 		}
+ 
+ 		// Window event handlers
+-		void OnWindowDelete (object sender, EventArgs args)
++		void OnWindowDelete (object sender, DeleteEventArgs args)
+ 		{
+ 			OnQuitActivate (sender, args);
+ 		}


Property changes on: mono-tools/trunk/debian/patches/03_glade-callbacks-sig.dpatch
___________________________________________________________________
Name: svn:executable
   + *

Deleted: mono-tools/trunk/debian/patches/03_gtk-sharp2.dpatch
===================================================================
--- mono-tools/trunk/debian/patches/03_gtk-sharp2.dpatch	2006-10-17 06:12:13 UTC (rev 2791)
+++ mono-tools/trunk/debian/patches/03_gtk-sharp2.dpatch	2006-10-17 06:38:00 UTC (rev 2792)
@@ -1,168 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-
- at DPATCH@
-
---- mono-tools/configure.in.old	2006-02-23 20:31:16.598094984 +0100
-+++ mono-tools/configure.in	2006-02-23 20:35:53.522996000 +0100
-@@ -38,22 +38,22 @@
- 
- 
- #PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0)
--PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp glade-sharp gconf-sharp)
-+PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0)
- AC_SUBST(GTK_SHARP_LIBS)
- 
- 
--PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp, enable_gtkhtml=yes, enable_gtkhtml=no)
-+PKG_CHECK_MODULES(GTKHTML_SHARP, gtkhtml-sharp-2.0, enable_gtkhtml=yes, enable_gtkhtml=no)
- AC_SUBST(GTKHTML_SHARP_LIBS)
- AM_CONDITIONAL(ENABLE_GTKHTML, test "x$enable_gtkhtml" = "xyes")
- 
- 
--PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp = 0.6, enable_gecko=yes, enable_gecko=no)
-+PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp-2.0 >= 0.6, enable_gecko=yes, enable_gecko=no)
- AC_SUBST(GECKO_SHARP_LIBS)
- AM_CONDITIONAL(ENABLE_GECKO, test "x$enable_gecko" = "xyes")
- 
- if test "x$enable_gecko" = "xyes"; then
-    # get the mozilla home directory
--   MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-+   MOZILLA_HOME="`$PKG_CONFIG --variable=libdir firefox-gtkmozembed`"
-    AC_SUBST(MOZILLA_HOME)
- fi
- 
---- mono-tools/configure.old	2006-02-23 20:31:19.705622568 +0100
-+++ mono-tools/configure	2006-02-23 20:35:59.262123520 +0100
-@@ -2366,23 +2366,23 @@
-   else
-      PKG_CONFIG_MIN_VERSION=0.9.0
-      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
--        echo "$as_me:$LINENO: checking for gtk-sharp glade-sharp gconf-sharp" >&5
--echo $ECHO_N "checking for gtk-sharp glade-sharp gconf-sharp... $ECHO_C" >&6
-+        echo "$as_me:$LINENO: checking for gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0" >&5
-+echo $ECHO_N "checking for gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0... $ECHO_C" >&6
- 
--        if $PKG_CONFIG --exists "gtk-sharp glade-sharp gconf-sharp" ; then
-+        if $PKG_CONFIG --exists "gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0" ; then
-             echo "$as_me:$LINENO: result: yes" >&5
- echo "${ECHO_T}yes" >&6
-             succeeded=yes
- 
-             echo "$as_me:$LINENO: checking GTK_SHARP_CFLAGS" >&5
- echo $ECHO_N "checking GTK_SHARP_CFLAGS... $ECHO_C" >&6
--            GTK_SHARP_CFLAGS=`$PKG_CONFIG --cflags "gtk-sharp glade-sharp gconf-sharp"`
-+            GTK_SHARP_CFLAGS=`$PKG_CONFIG --cflags "gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0"`
-             echo "$as_me:$LINENO: result: $GTK_SHARP_CFLAGS" >&5
- echo "${ECHO_T}$GTK_SHARP_CFLAGS" >&6
- 
-             echo "$as_me:$LINENO: checking GTK_SHARP_LIBS" >&5
- echo $ECHO_N "checking GTK_SHARP_LIBS... $ECHO_C" >&6
--            GTK_SHARP_LIBS=`$PKG_CONFIG --libs "gtk-sharp glade-sharp gconf-sharp"`
-+            GTK_SHARP_LIBS=`$PKG_CONFIG --libs "gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0"`
-             echo "$as_me:$LINENO: result: $GTK_SHARP_LIBS" >&5
- echo "${ECHO_T}$GTK_SHARP_LIBS" >&6
-         else
-@@ -2390,7 +2390,7 @@
-             GTK_SHARP_LIBS=""
-             ## If we have a custom action on failure, don't print errors, but
-             ## do set a variable so people can do so.
--            GTK_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk-sharp glade-sharp gconf-sharp"`
-+            GTK_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0"`
-             echo $GTK_SHARP_PKG_ERRORS
-         fi
- 
-@@ -2405,8 +2405,8 @@
-   if test $succeeded = yes; then
-      :
-   else
--     { { echo "$as_me:$LINENO: error: Library requirements (gtk-sharp glade-sharp gconf-sharp) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5
--echo "$as_me: error: Library requirements (gtk-sharp glade-sharp gconf-sharp) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;}
-+     { { echo "$as_me:$LINENO: error: Library requirements (gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&5
-+echo "$as_me: error: Library requirements (gtk-sharp-2.0 glade-sharp-2.0 gconf-sharp-2.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." >&2;}
-    { (exit 1); exit 1; }; }
-   fi
- 
-@@ -2467,23 +2467,23 @@
-   else
-      PKG_CONFIG_MIN_VERSION=0.9.0
-      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
--        echo "$as_me:$LINENO: checking for gtkhtml-sharp" >&5
-+        echo "$as_me:$LINENO: checking for gtkhtml-sharp-2.0" >&5
- echo $ECHO_N "checking for gtkhtml-sharp... $ECHO_C" >&6
- 
--        if $PKG_CONFIG --exists "gtkhtml-sharp" ; then
-+        if $PKG_CONFIG --exists "gtkhtml-sharp-2.0" ; then
-             echo "$as_me:$LINENO: result: yes" >&5
- echo "${ECHO_T}yes" >&6
-             succeeded=yes
- 
-             echo "$as_me:$LINENO: checking GTKHTML_SHARP_CFLAGS" >&5
- echo $ECHO_N "checking GTKHTML_SHARP_CFLAGS... $ECHO_C" >&6
--            GTKHTML_SHARP_CFLAGS=`$PKG_CONFIG --cflags "gtkhtml-sharp"`
-+            GTKHTML_SHARP_CFLAGS=`$PKG_CONFIG --cflags "gtkhtml-sharp-2.0"`
-             echo "$as_me:$LINENO: result: $GTKHTML_SHARP_CFLAGS" >&5
- echo "${ECHO_T}$GTKHTML_SHARP_CFLAGS" >&6
- 
-             echo "$as_me:$LINENO: checking GTKHTML_SHARP_LIBS" >&5
- echo $ECHO_N "checking GTKHTML_SHARP_LIBS... $ECHO_C" >&6
--            GTKHTML_SHARP_LIBS=`$PKG_CONFIG --libs "gtkhtml-sharp"`
-+            GTKHTML_SHARP_LIBS=`$PKG_CONFIG --libs "gtkhtml-sharp-2.0"`
-             echo "$as_me:$LINENO: result: $GTKHTML_SHARP_LIBS" >&5
- echo "${ECHO_T}$GTKHTML_SHARP_LIBS" >&6
-         else
-@@ -2491,7 +2491,7 @@
-             GTKHTML_SHARP_LIBS=""
-             ## If we have a custom action on failure, don't print errors, but
-             ## do set a variable so people can do so.
--            GTKHTML_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtkhtml-sharp"`
-+            GTKHTML_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gtkhtml-sharp-2.0"`
- 
-         fi
- 
-@@ -2576,23 +2576,23 @@
-   else
-      PKG_CONFIG_MIN_VERSION=0.9.0
-      if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
--        echo "$as_me:$LINENO: checking for gecko-sharp = 0.6" >&5
--echo $ECHO_N "checking for gecko-sharp = 0.6... $ECHO_C" >&6
-+        echo "$as_me:$LINENO: checking for gecko-sharp-2.0 >= 0.6" >&5
-+echo $ECHO_N "checking for gecko-sharp-2.0 >= 0.6... $ECHO_C" >&6
- 
--        if $PKG_CONFIG --exists "gecko-sharp = 0.6" ; then
-+        if $PKG_CONFIG --exists "gecko-sharp-2.0 >= 0.6" ; then
-             echo "$as_me:$LINENO: result: yes" >&5
- echo "${ECHO_T}yes" >&6
-             succeeded=yes
- 
-             echo "$as_me:$LINENO: checking GECKO_SHARP_CFLAGS" >&5
- echo $ECHO_N "checking GECKO_SHARP_CFLAGS... $ECHO_C" >&6
--            GECKO_SHARP_CFLAGS=`$PKG_CONFIG --cflags "gecko-sharp = 0.6"`
-+            GECKO_SHARP_CFLAGS=`$PKG_CONFIG --cflags "gecko-sharp-2.0 >= 0.6"`
-             echo "$as_me:$LINENO: result: $GECKO_SHARP_CFLAGS" >&5
- echo "${ECHO_T}$GECKO_SHARP_CFLAGS" >&6
- 
-             echo "$as_me:$LINENO: checking GECKO_SHARP_LIBS" >&5
- echo $ECHO_N "checking GECKO_SHARP_LIBS... $ECHO_C" >&6
--            GECKO_SHARP_LIBS=`$PKG_CONFIG --libs "gecko-sharp = 0.6"`
-+            GECKO_SHARP_LIBS=`$PKG_CONFIG --libs "gecko-sharp-2.0 >= 0.6"`
-             echo "$as_me:$LINENO: result: $GECKO_SHARP_LIBS" >&5
- echo "${ECHO_T}$GECKO_SHARP_LIBS" >&6
-         else
-@@ -2600,7 +2600,7 @@
-             GECKO_SHARP_LIBS=""
-             ## If we have a custom action on failure, don't print errors, but
-             ## do set a variable so people can do so.
--            GECKO_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gecko-sharp = 0.6"`
-+            GECKO_SHARP_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "gecko-sharp-2.0 >= 0.6"`
- 
-         fi
- 
-@@ -2632,7 +2632,7 @@
- 
- if test "x$enable_gecko" = "xyes"; then
-    # get the mozilla home directory
--   MOZILLA_HOME="`$PKG_CONFIG --variable=libdir mozilla-gtkmozembed`"
-+   MOZILLA_HOME="`$PKG_CONFIG --variable=libdir firefox-gtkmozembed`"
- 
- fi
- 

Deleted: mono-tools/trunk/debian/patches/04_glade-callbacks.dpatch
===================================================================
--- mono-tools/trunk/debian/patches/04_glade-callbacks.dpatch	2006-10-17 06:12:13 UTC (rev 2791)
+++ mono-tools/trunk/debian/patches/04_glade-callbacks.dpatch	2006-10-17 06:38:00 UTC (rev 2792)
@@ -1,82 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-
- at DPATCH@
-
---- mono-tools/docbrowser/browser.cs	2006/06/01 07:01:16	61357
-+++ mono-tools/docbrowser/browser.cs	2006/08/09 20:35:33	63562
-@@ -944,7 +944,7 @@
-                 //
- 		// Called on the Window delete icon clicked
- 		//
--		void OnDelete (object sender, EventArgs a)
-+		void OnDelete (object sender, DeleteEventArgs a)
- 		{
-                         AboutBox = null;
- 		}
-@@ -1204,7 +1204,7 @@
- 		//
- 		// Called on the Window delete icon clicked
- 		//
--		void OnDelete (object sender, EventArgs a)
-+		void OnDelete (object sender, DeleteEventArgs a)
- 		{
- 			config_wizard = null;
- 		}
-@@ -1361,7 +1361,7 @@
-                 //
- 		// Called on the Window delete icon clicked
- 		//
--		void OnDelete (object sender, EventArgs a)
-+		void OnDelete (object sender, DeleteEventArgs a)
- 		{
-                         NewCommentBox = null;
- 		}
-@@ -1406,7 +1406,7 @@
-                 //
- 		// Called on the Window delete icon clicked
- 		//
--		void OnDelete(object sender, EventArgs a)
-+		void OnDelete(object sender, DeleteEventArgs a)
- 		{
-                         LookupBox = null;
- 		}
-
---- mono-tools/docbrowser/GtkHtmlHtmlRender.cs	2005/10/27 16:17:18	52292
-+++ mono-tools/docbrowser/GtkHtmlHtmlRender.cs	2006/08/09 20:35:33	63562
-@@ -108,13 +108,13 @@
- 
- 		string Caption = "Monodoc Printing";
- 
--		PrintJob pj = new PrintJob (PrintConfig.Default ());
-+		Gnome.PrintJob pj = new Gnome.PrintJob (PrintConfig.Default ());
- 		PrintDialog dialog = new PrintDialog (pj, Caption, 0);
- 
- 		Gtk.HTML gtk_html = new Gtk.HTML (Html);
- 		gtk_html.PrintSetMaster (pj);
- 			
--		PrintContext ctx = pj.Context;
-+		Gnome.PrintContext ctx = pj.Context;
- 		gtk_html.Print (ctx);
- 
- 		pj.Close ();
-
-
---- mono-tools/docbrowser/GeckoHtmlRender.cs	2005/10/27 18:53:57	52296
-+++ mono-tools/docbrowser/GeckoHtmlRender.cs	2006/08/09 20:35:33	63562
-@@ -193,13 +193,13 @@
- #else
- 		string Caption = "Monodoc Printing";
- 
--		PrintJob pj = new PrintJob (PrintConfig.Default ());
-+		Gnome.PrintJob pj = new Gnome.PrintJob (PrintConfig.Default ());
- 		PrintDialog dialog = new PrintDialog (pj, Caption, 0);
- 
- 		Gtk.HTML gtk_html = new Gtk.HTML (Html);
- 		gtk_html.PrintSetMaster (pj);
- 			
--		PrintContext ctx = pj.Context;
-+		Gnome.PrintContext ctx = pj.Context;
- 		gtk_html.Print (ctx);
- 
- 		pj.Close ();
-

Deleted: mono-tools/trunk/debian/patches/05_empty-search.dpatch
===================================================================
--- mono-tools/trunk/debian/patches/05_empty-search.dpatch	2006-10-17 06:12:13 UTC (rev 2791)
+++ mono-tools/trunk/debian/patches/05_empty-search.dpatch	2006-10-17 06:38:00 UTC (rev 2792)
@@ -1,20 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-
- at DPATCH@
-
---- mono-tools/docbrowser/browser.cs	2005/11/20 08:13:04	53285
-+++ mono-tools/docbrowser/browser.cs	2006/06/01 07:01:16	61357
-@@ -399,9 +399,11 @@
- 	// 
- 	void OnSearchActivated (object sender, EventArgs a)
- 	{
-+		string term = search_term.Text;
-+		if (term == "")
-+			return; //Search cannot handle empty string
- 		search_tree.Model = null;
- 		search_term.Editable = false;
--		string term = search_term.Text;
- 		//search in the index
- 		Result r = search_index.Search (term);
- 		if (r == null)
-




More information about the Pkg-mono-svn-commits mailing list