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

Mirco Bauer meebey-guest@costa.debian.org
Sat, 14 May 2005 14:48:35 +0000


Author: meebey-guest
Date: 2005-05-14 14:48:35 +0000 (Sat, 14 May 2005)
New Revision: 1696

Modified:
   cli-common/trunk/debian/changelog
   cli-common/trunk/debian/control
   cli-common/trunk/dh_clideps
   cli-common/trunk/dh_makeclilibs
Log:
- fixed dh_clidep to forget the dependency on the virtual machine.



Modified: cli-common/trunk/debian/changelog
===================================================================
--- cli-common/trunk/debian/changelog	2005-05-14 14:36:50 UTC (rev 1695)
+++ cli-common/trunk/debian/changelog	2005-05-14 14:48:35 UTC (rev 1696)
@@ -1,3 +1,11 @@
+cli-common (0.1.3) experimental; urgency=low
+
+  * Mirco 'meebey' Bauer
+    + fixed bug in dh_clidep, when no "-r" was passed it didn't generate a 
+      depdency on the virtual machine.
+
+ -- Debian Mono Group <pkg-mono-group@lists.alioth.debian.org>  Sat, 14 May 2005 16:47:37 +0200
+
 cli-common (0.1.2) experimental; urgency=low
 
   * Mirco 'meebey' Bauer

Modified: cli-common/trunk/debian/control
===================================================================
--- cli-common/trunk/debian/control	2005-05-14 14:36:50 UTC (rev 1695)
+++ cli-common/trunk/debian/control	2005-05-14 14:48:35 UTC (rev 1696)
@@ -3,12 +3,12 @@
 Priority: optional
 Maintainer: Debian Mono Group <pkg-mono-group@lists.alioth.debian.org>
 Uploaders: Mirco Bauer <meebey@meebey.net>
-Build-Depends: debhelper (>> 4.0.0)
+Build-Depends: debhelper (>= 4.0.0)
 Standards-Version: 3.6.1
 
 Package: cli-common
 Architecture: all
-Depends: debhelper (>> 4.0.0), mono-utils | cil-disassembler, mono-mcs | strong-name-tool
+Depends: debhelper (>= 4.0.0), mono-utils | cil-disassembler, mono-mcs | strong-name-tool
 Description: base of all CLI (.NET) packages
  This package must be installed if a CLI (Common Language Infrastructure)/.NET
  environment is desired.
@@ -18,4 +18,4 @@
   * The CLI policy describes how CLI packages should behave and integrate.
   * Automatic dependency tracking for CLI packages (via dh_clideps and 
     dh_makeclilibs).
-  * A FAQ for users of CLI/.NET applications.
+  * A FAQ for package maintainers of CLI/.NET applications.

Modified: cli-common/trunk/dh_clideps
===================================================================
--- cli-common/trunk/dh_clideps	2005-05-14 14:36:50 UTC (rev 1695)
+++ cli-common/trunk/dh_clideps	2005-05-14 14:48:35 UTC (rev 1696)
@@ -83,8 +83,8 @@
   open(FILE, 'debian/control');
   my @filedata = <FILE>;
   close FILE;
-  if (!($filedata[0] =~ /Build-Depends(-Indep)?: .*cli-common \(>= 0\.1\.1\)/)) {
-      warning("Warning! No Build-Depends(-Indep) on cli-common (>= 0.1.1)!");
+  if (!($filedata[0] =~ /Build-Depends(-Indep)?: .*cli-common \(>= 0\.1\.3\)/)) {
+      warning("Warning! No Build-Depends(-Indep) on cli-common (>= 0.1.3)!");
   }
 }
 
@@ -197,7 +197,7 @@
     }
 
     my $deps;
-    if (defined($dh{R_FLAG})) {
+    if (!defined($dh{R_FLAG})) {
         if ($clr eq "mono") {
           $deps = "mono-jit (>= $cli_version)";
         } elsif ($clr eq "pnet") {

Modified: cli-common/trunk/dh_makeclilibs
===================================================================
--- cli-common/trunk/dh_makeclilibs	2005-05-14 14:36:50 UTC (rev 1695)
+++ cli-common/trunk/dh_makeclilibs	2005-05-14 14:48:35 UTC (rev 1696)
@@ -144,8 +144,8 @@
   open(FILE, 'debian/control');
   my @filedata = <FILE>;
   close FILE;
-  if (!($filedata[0] =~ /Build-Depends(-Indep)?: .*cli-common \(>= 0\.1\.1\)/)) {
-      warning("Warning! No Build-Depends(-Indep) on cli-common (>= 0.1.1)!");
+  if (!($filedata[0] =~ /Build-Depends(-Indep)?: .*cli-common \(>= 0\.1\.3\)/)) {
+      warning("Warning! No Build-Depends(-Indep) on cli-common (>= 0.1.3)!");
   }
 }