[Pkg-mono-svn-commits] rev 1149 - mcs/trunk/debian

Eduard Bloch blade@haydn.debian.org
Mon, 21 Jun 2004 15:45:54 -0600


Author: blade
Date: 2004-06-21 15:45:51 -0600 (Mon, 21 Jun 2004)
New Revision: 1149

Removed:
   mcs/trunk/debian/mcs-wrapper
   mcs/trunk/debian/mono-mcs.undocumented
   mcs/trunk/debian/rename-exes
Modified:
   mcs/trunk/debian/changelog
   mcs/trunk/debian/control
Log:
 - cleanups
 - fixed the description, mono-gac contains not the GAC, it contains the
   GAC _utility_



Modified: mcs/trunk/debian/changelog
===================================================================
--- mcs/trunk/debian/changelog	2004-06-21 07:35:24 UTC (rev 1148)
+++ mcs/trunk/debian/changelog	2004-06-21 21:45:51 UTC (rev 1149)
@@ -1,3 +1,9 @@
+mcs (0.96-2) unstable; urgency=low
+
+  * NOT RELEASED YET
+
+ -- Eduard Bloch <blade@debian.org>  Sat, 19 Jun 2004 15:11:20 +0200
+
 mcs (0.96-1) unstable; urgency=low
 
   * New upstream release

Modified: mcs/trunk/debian/control
===================================================================
--- mcs/trunk/debian/control	2004-06-21 07:35:24 UTC (rev 1148)
+++ mcs/trunk/debian/control	2004-06-21 21:45:51 UTC (rev 1149)
@@ -62,8 +62,8 @@
  working to develop an open source, Linux-based version of the Microsoft .NET
  development platform.
  .
- This package includes the Global Assembly Cache (GAC) used by Mono to
- store shared libraries.
+ This package includes the Global Assembly Cache (GAC) Tool (gacutil)
+ used by Mono to store shared libraries.
 
 Package: mono-jay
 Section: devel

Deleted: mcs/trunk/debian/mcs-wrapper
===================================================================
--- mcs/trunk/debian/mcs-wrapper	2004-06-21 07:35:24 UTC (rev 1148)
+++ mcs/trunk/debian/mcs-wrapper	2004-06-21 21:45:51 UTC (rev 1149)
@@ -1,2 +0,0 @@
-#!/bin/sh
-/usr/bin/cli /usr/lib/mono/1.0/mcs.exe -lib:/usr/lib/mono/gtk-sharp "$@"

Deleted: mcs/trunk/debian/mono-mcs.undocumented
===================================================================
--- mcs/trunk/debian/mono-mcs.undocumented	2004-06-21 07:35:24 UTC (rev 1148)
+++ mcs/trunk/debian/mono-mcs.undocumented	2004-06-21 21:45:51 UTC (rev 1149)
@@ -1 +0,0 @@
-monoresgen

Deleted: mcs/trunk/debian/rename-exes
===================================================================
--- mcs/trunk/debian/rename-exes	2004-06-21 07:35:24 UTC (rev 1148)
+++ mcs/trunk/debian/rename-exes	2004-06-21 21:45:51 UTC (rev 1149)
@@ -1,11 +0,0 @@
-#!/bin/bash
-#remove .exe suffix
-
-FILES=`ls *`
-
-for f in $FILES
-do
-	NEW=`echo $f | /bin/sed -e 's/.exe$//'`
-	/bin/mv $f $NEW
-	chmod 755 $NEW
-done