[Pkg-mono-svn-commits] rev 2368 - in cli-common/trunk: . debian

D. Moonfire dmoonfire-guest at costa.debian.org
Tue Mar 28 19:41:22 UTC 2006


Author: dmoonfire-guest
Date: 2006-03-28 19:41:20 +0000 (Tue, 28 Mar 2006)
New Revision: 2368

Modified:
   cli-common/trunk/debian/changelog
   cli-common/trunk/gac-install
   cli-common/trunk/gac-package-install
   cli-common/trunk/gac-remove
Log:
Updated the change version to get tao and log4net to build with proper
dependencies. Also changed the formatting on the informational messages.


Modified: cli-common/trunk/debian/changelog
===================================================================
--- cli-common/trunk/debian/changelog	2006-03-27 20:44:54 UTC (rev 2367)
+++ cli-common/trunk/debian/changelog	2006-03-28 19:41:20 UTC (rev 2368)
@@ -1,4 +1,4 @@
-cli-common (0.2.3pre1) unstable; urgency=low
+cli-common (0.4.0) unstable; urgency=low
 
   * NOT RELEASED YET
   * Mirco 'meebey' Bauer

Modified: cli-common/trunk/gac-install
===================================================================
--- cli-common/trunk/gac-install	2006-03-27 20:44:54 UTC (rev 2367)
+++ cli-common/trunk/gac-install	2006-03-28 19:41:20 UTC (rev 2368)
@@ -2,7 +2,7 @@
 
 # Make sure the GAC file exists
 if [ ! -x /usr/share/cli-common/runtimes.d/$1 ]; then
-    echo E: Cannot install GAC $1
+    echo ! Cannot install GAC $1
     exit 1
 fi
 

Modified: cli-common/trunk/gac-package-install
===================================================================
--- cli-common/trunk/gac-package-install	2006-03-27 20:44:54 UTC (rev 2367)
+++ cli-common/trunk/gac-package-install	2006-03-28 19:41:20 UTC (rev 2368)
@@ -28,14 +28,14 @@
 # Make sure it exists
 if ( ! -f "$full.installcligac" )
 {
-    print STDERR "E: $full.installcligac doesn't exist!\n";
+    print STDERR "! $full.installcligac doesn't exist!\n";
     exit 1;
 }
 
 # Parse the file
 unless (open INPUT, "<$full.installcligac")
 {
-    print STDERR "E: Cannot open $full.installcligac ($!)\n";
+    print STDERR "! Cannot open $full.installcligac ($!)\n";
     exit 2;
 }
 
@@ -60,7 +60,7 @@
 
     if (! -f $dll)
     {
-	print STDERR "E: Assembly $dll does not exist, ignoring\n";
+	print STDERR "! Assembly $dll does not exist, ignoring\n";
 	next;
     }
 
@@ -94,8 +94,8 @@
 {
     if (defined($whitelist{"dll:$dll"}) && defined($blacklist{"dll:$dll"}))
     {
-	print STDERR "E: $dll has both a white- and blacklist.\n";
-	print STDERR "E:   Ignoring blacklist.\n";
+	print STDERR "! $dll has both a white- and blacklist.\n";
+	print STDERR "!   Ignoring blacklist.\n";
     }
 }
 
@@ -141,6 +141,6 @@
     $t = "one assembly" if (@install == 1);
 
     #print "D: ", join(", ", @install), "\n";
-    print STDERR "I: Installing $t from $pkg into $formal\n";
+    print STDERR "* Installing $t from $pkg into $formal\n";
     system($clr, "install", $pkg, @install);
 }

Modified: cli-common/trunk/gac-remove
===================================================================
--- cli-common/trunk/gac-remove	2006-03-27 20:44:54 UTC (rev 2367)
+++ cli-common/trunk/gac-remove	2006-03-28 19:41:20 UTC (rev 2368)
@@ -1,11 +1,11 @@
 #!/bin/bash
 
 if [ ! -x /usr/share/cli-common/runtimes.d/$1 ]; then
-    echo E: Cannot remove GAC $1
+    echo ! Cannot remove GAC $1
     exit 1
 fi
 
-echo "Removing packages from $1"
+echo "* Removing packages from $1"
 
 for file in /usr/share/cli-common/packages.d/*.installcligac
 do




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