[Pkg-scicomp-commits] [SCM] suitesparse branch, master, updated. 6d12237ecbe29154eb999f0cbbd5a918448c1ed0

Rafael Laboissiere rafael at debian.org
Sun May 10 22:04:30 UTC 2009


The following commit has been merged in the master branch:
commit 6d12237ecbe29154eb999f0cbbd5a918448c1ed0
Author: Rafael Laboissiere <rafael at debian.org>
Date:   Mon May 11 00:04:25 2009 +0200

    Add missing Perl script library-soname.pl

diff --git a/debian/library-soname.pl b/debian/library-soname.pl
new file mode 100644
index 0000000..9a4f552
--- /dev/null
+++ b/debian/library-soname.pl
@@ -0,0 +1,22 @@
+#!/usr/bin/perl
+
+%soversion = (
+    AMD, "2.2",
+    CAMD, "2.2",
+    BTF, "1.0",
+    COLAMD, "2.7",
+    CCOLAMD, "2.7",
+    CHOLMOD, "1.7.1",
+    CSparse, "2.2.3",
+    CXSparse, "2.2.3",
+    KLU, "1.1",
+    LDL, "2.0",
+    UMFPACK, "5.3.0"
+);
+
+die "Usage: $0 LIB\n" if $#ARGV != 0;
+
+my $lib = $ARGV [0];
+die "$0: Unknown library $lib\n" if not exists $soversion {$lib};
+
+print "lib" . lc ($lib) . $soversion {$lib};

-- 
suitesparse



More information about the Pkg-scicomp-commits mailing list