[Pkg-ocaml-maint-commits] [SCM] dose3 packaging branch, master, updated. debian/2.9.4-2-19-gb0cd288

Stefano Zacchiroli zack at upsilon.cc
Sun Jun 12 07:37:01 UTC 2011


The following commit has been merged in the master branch:
commit 9cd288e5d189f99da0390d91634b6bf8affbc51d
Author: Stefano Zacchiroli <zack at upsilon.cc>
Date:   Sat Jun 11 16:32:34 2011 +0200

    cosmetic changs: uniform indentation in update-cudf-solvers

diff --git a/debian/update-cudf-solvers b/debian/update-cudf-solvers
index 06a6324..cee0fd0 100755
--- a/debian/update-cudf-solvers
+++ b/debian/update-cudf-solvers
@@ -22,6 +22,22 @@ my $debug = 0;
 my $help_action = 0;
 my $remove_action = 0;
 
+sub warning($) {
+    my ($msg) = @_;
+    print STDERR "update-cudf-solvers: W: $msg\n";
+}
+
+sub debug($) {
+    my ($msg) = @_;
+    print STDERR "update-cudf-solvers: I: $msg\n" if $debug;
+}
+
+sub die_usage() {
+    my %podflags = ( "verbose" => 1,
+		     "exitval" => 2 );
+    pod2usage(%podflags);
+}
+
 sub shallow_find($$) {
     my ($dir, $pred) = @_;
     my @found = ();
@@ -32,15 +48,6 @@ sub shallow_find($$) {
     return @found;
 }
 
-sub warning($) { my ($msg) = @_; print STDERR "update-cudf-solvers: W: $msg\n"; }
-sub debug($) { my ($msg) = @_; print STDERR "update-cudf-solvers: I: $msg\n" if $debug; }
-
-sub die_usage() {
-    my %podflags = ( "verbose" => 1,
-		     "exitval" => 2 );
-    pod2usage(%podflags);
-}
-
 # check whether a given EDSP solver path originates from a CUDF solver
 sub is_cudf_solver($) {
     my ($path) = @_;

-- 
dose3 packaging



More information about the Pkg-ocaml-maint-commits mailing list