[DRE-commits] [SCM] Packaging for ruby-lapack branch, master, updated. upstream/1.2-3-g5ae315f

Lucas Nussbaum lucas at lucas-nussbaum.net
Sat Apr 9 08:52:02 UTC 2011


The following commit has been merged in the master branch:
commit 5ae315fb0b170bbbfd2aa624daeb4532e7000398
Author: Lucas Nussbaum <lucas at lucas-nussbaum.net>
Date:   Sat Apr 9 10:51:58 2011 +0200

    mention state in changelog

diff --git a/debian/changelog b/debian/changelog
index d79ef7a..c503294 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-ruby-lapack (1.2-1) unstable; urgency=low
+ruby-lapack (1.2-1) UNRELEASED; urgency=low
 
   * Initial release (Closes: #619219) 
+  TODO: need a short test suite
 
  -- Youhei SASAKI <uwabami at gfd-dennou.org>  Wed, 06 Apr 2011 00:09:42 +0900
diff --git a/debian/control b/debian/control
index 6e8dfbc..4ad6723 100644
--- a/debian/control
+++ b/debian/control
@@ -12,7 +12,7 @@ XS-Ruby-Versions: all
 Standards-Version: 3.9.1
 Homepage: http://www.gfd-dennou.org/arch/ruby/products/ruby-lapack/index.html
 Vcs-Git: git://git.debian.org/pkg-ruby-extras/ruby-lapack.git
-Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-lapack;a=summary
+Vcs-Browser: http://git.debian.org/?p=pkg-ruby-extras/ruby-lapack.git;a=summary
 
 Package: ruby-lapack
 Architecture: any
diff --git a/extconf.rb b/extconf.rb
index 12548eb..068976f 100644
--- a/extconf.rb
+++ b/extconf.rb
@@ -97,7 +97,7 @@ unless find_library("lapack")
 
   name = with_config("blas-name","blas_LINUX.a")
   unless have_library(name)
-    lib_path = with_config("blas-lib","/usr/local/lib")
+    lib_path = with_config("blas-lib","/usr/lib")
     _libarg = LIBARG
     LIBARG.replace "#{lib_path}/%s"
     unless have_library(name)
@@ -107,7 +107,7 @@ unless find_library("lapack")
   end
   name = with_config("lapack-name","lapack_LINUX.a")
   unless have_library(name)
-    lib_path = with_config("lapack-lib","/usr/local/lib")
+    lib_path = with_config("lapack-lib","/usr/lib")
     _libarg = LIBARG
     LIBARG.replace "#{lib_path}/%s"
     unless have_library(name)
@@ -117,8 +117,8 @@ unless find_library("lapack")
   end
 end
 
-sitearchdir = Config::CONFIG["sitearchdir"]
-dir_config("narray", sitearchdir, sitearchdir)
+archdir = Config::CONFIG["archdir"]
+dir_config("narray", archdir, archdir)
 unless find_header("narray.h") && have_header("narray_config.h")
   header_not_found("narray")
 end

-- 
Packaging for ruby-lapack



More information about the Pkg-ruby-extras-commits mailing list