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

Eduard Bloch blade@haydn.debian.org
Sun, 20 Jun 2004 12:49:04 -0600


Author: blade
Date: 2004-06-20 12:49:00 -0600 (Sun, 20 Jun 2004)
New Revision: 1141

Removed:
   mono/trunk/debian/control.libmono
Modified:
   mono/trunk/debian/TODO
Log:
More cleanups, Ackermann works again


Modified: mono/trunk/debian/TODO
===================================================================
--- mono/trunk/debian/TODO	2004-06-20 18:19:31 UTC (rev 1140)
+++ mono/trunk/debian/TODO	2004-06-20 18:49:00 UTC (rev 1141)
@@ -2,36 +2,7 @@
 
  - enable IPv6 in machine.config!
 
- - Choose a good policy for future assembly packages
-   mono-assemblies-base, mono-assemblies-foo for 3rd party stuff
-
  - look over the AOD package
 
- - (meebey) package some .NET programs like monodoc and monodevelop (CVS branch only)
-
  - (pabl0) package some other .NET programs like evolution-sharp, beagle, mbloggy, daybook and dashboard when they are available
 
-Test this with recent mono n=11:
-
-// $Id: ackermann.csharp,v 1.0 2002/02/14 10:58:00 dada Exp $
-// http://dada.perl.it/shootout/
-
-using System;
-
-class App {
-
-    public static int Ack(int M, int N) {
-        if (M == 0) return( N + 1 );
-        if (N == 0) return( Ack(M - 1, 1) );
-        return( Ack(M - 1, Ack(M, (N - 1))) );
-    }
-    
-    public static int Main(String[] args) {
-        int n;
-        n = System.Convert.ToInt32(args[0]);
-        if(n < 1) n = 1;
-    
-        Console.WriteLine("Ack(3," + n.ToString() + "): " + System.Convert.ToString(Ack(3, n)) + "\n");
-        return(0);
-    }
-}

Deleted: mono/trunk/debian/control.libmono
===================================================================
--- mono/trunk/debian/control.libmono	2004-06-20 18:19:31 UTC (rev 1140)
+++ mono/trunk/debian/control.libmono	2004-06-20 18:49:00 UTC (rev 1141)
@@ -1,12 +0,0 @@
-Package: libmono0
-Architecture: any
-Section: libs
-Depends: ${shlibs:Depends}
-Description: Mono libraries
- Shared libraries for the use of Mono by native applications.
-
-Package: libmono-dev
-Architecture: any
-Depends: libmono0 (= ${Source-Version})
-Description: Mono libraries - Development files
- Header files and static libraries for libmono.