[Pkg-mono-svn-commits] rev 2464 - mono/trunk/debian

Mirco Bauer meebey-guest at costa.debian.org
Sun Apr 23 13:55:27 UTC 2006


Author: meebey-guest
Date: 2006-04-23 13:55:25 +0000 (Sun, 23 Apr 2006)
New Revision: 2464

Modified:
   mono/trunk/debian/changelog
   mono/trunk/debian/control
   mono/trunk/debian/mono-common.prerm
   mono/trunk/debian/mono-gac.postinst
   mono/trunk/debian/mono-gac.prerm
Log:
- mono 1.1.13.6-3 with optional cli-common 0.4.0 support



Modified: mono/trunk/debian/changelog
===================================================================
--- mono/trunk/debian/changelog	2006-04-22 15:51:23 UTC (rev 2463)
+++ mono/trunk/debian/changelog	2006-04-23 13:55:25 UTC (rev 2464)
@@ -1,3 +1,14 @@
+mono (1.1.13.6-3) unstable; urgency=medium
+
+  * Mirco 'meebey' Bauer:
+    + debian/control:
+      - Package mono-gac can not depend on cli-common >= 0.4.0 yet, which is
+        still in, the NEW queue. Changed to use "Recommends" instead.
+        This caused FTBFS for packages that build-depend on  cli-common or
+        mono-gac, thus using urgency=medium.
+
+ -- Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>  Sun, 23 Apr 2006 15:32:29 +0200
+
 mono (1.1.13.6-2) unstable; urgency=low
 
   * Dylan R. E. Moonfire
@@ -9,7 +20,7 @@
       - Removed libmono-$version provides of libmono0, not needed anymore.
         The shlibs file uses now libmono0.
 
- -- Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>  Sun, 09 Apr 2006 14:07:23 -0500
+ -- Debian Mono Group <pkg-mono-group at lists.alioth.debian.org>  Sun, 9 Apr 2006 14:07:23 -0500
 
 mono (1.1.13.6-1) unstable; urgency=high
 

Modified: mono/trunk/debian/control
===================================================================
--- mono/trunk/debian/control	2006-04-22 15:51:23 UTC (rev 2463)
+++ mono/trunk/debian/control	2006-04-23 13:55:25 UTC (rev 2464)
@@ -944,7 +944,8 @@
 Package: mono-gac
 Section: devel
 Architecture: all
-Depends: ${cli:Depends}, cli-common (>= 0.4.0)
+Depends: ${cli:Depends}
+Recommends: cli-common (>= 0.4.0)
 Provides: global-assembly-cache-tool
 Description: Mono GAC tool
  Mono is a platform for running and developing applications based on the

Modified: mono/trunk/debian/mono-common.prerm
===================================================================
--- mono/trunk/debian/mono-common.prerm	2006-04-22 15:51:23 UTC (rev 2463)
+++ mono/trunk/debian/mono-common.prerm	2006-04-23 13:55:25 UTC (rev 2464)
@@ -1,7 +1,7 @@
 #!/bin/sh -e
 
-if test remove = "$1" && test -x /usr/sbin/update-binfmts ; then
-  /usr/sbin/update-binfmts --package mono-common --remove cli /usr/bin/cli >/dev/null 2>&1
+if [ remove = "$1" ] && [ -x /usr/sbin/update-binfmts ]; then
+	/usr/sbin/update-binfmts --package mono-common --remove cli /usr/bin/cli >/dev/null 2>&1
 fi
 
 #DEBHELPER#

Modified: mono/trunk/debian/mono-gac.postinst
===================================================================
--- mono/trunk/debian/mono-gac.postinst	2006-04-22 15:51:23 UTC (rev 2463)
+++ mono/trunk/debian/mono-gac.postinst	2006-04-23 13:55:25 UTC (rev 2464)
@@ -1,7 +1,9 @@
 #!/bin/sh -e
 
-# Install the gac
-/usr/share/cli-common/gac-install mono
+# Install the GAC
+if [ -x /usr/share/cli-common/gac-install ]; then
+	/usr/share/cli-common/gac-install mono
+fi
 
 # Update the alternatives
 update-alternatives \

Modified: mono/trunk/debian/mono-gac.prerm
===================================================================
--- mono/trunk/debian/mono-gac.prerm	2006-04-22 15:51:23 UTC (rev 2463)
+++ mono/trunk/debian/mono-gac.prerm	2006-04-23 13:55:25 UTC (rev 2464)
@@ -2,7 +2,11 @@
 
 if [ "$1" = remove ]; then
         update-alternatives --remove global-assembly-cache-tool /usr/bin/gacutil
-	/usr/share/cli-common/gac-remove mono
+        
+        # Remove the GAC
+        if [ -x /usr/share/cli-common/gac-remove ]; then
+		/usr/share/cli-common/gac-remove mono
+	fi
 fi
 
 #DEBHELPER#




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