[jblas] 19/24: Imported Debian patch 1.2.0-4

Tony Mancill tmancill at moszumanska.debian.org
Sun Jan 5 05:45:59 UTC 2014


This is an automated email from the git hooks/post-receive script.

tmancill pushed a commit to branch master
in repository jblas.

commit d132fe008e12202da27514405d0b78ffd640d7f6
Author: tony mancill <tmancill at debian.org>
Date:   Sat Apr 21 20:45:10 2012 -0700

    Imported Debian patch 1.2.0-4
---
 debian/changelog                              | 12 +++++
 debian/control                                |  6 +--
 debian/patches/jblas-diff-1.1.1-to-HEAD.patch | 72 ---------------------------
 3 files changed, 15 insertions(+), 75 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 48b3894..ebafb0f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,15 @@
+jblas (1.2.0-4) unstable; urgency=low
+
+  [ tony mancill ]
+  * Team upload.
+  * Remove "+ssh" from Vcs-Svn URL (Closes: #669573)
+  * Bump Standards-Version to 3.9.3 (no changes).
+
+  [ Soeren Sonnenburg ]
+  * Explicitly build depend on ruby 1.8 fixing the FTBS. (Closes: #676111)
+
+ -- tony mancill <tmancill at debian.org>  Sat, 21 Apr 2012 20:45:10 -0700
+
 jblas (1.2.0-3) unstable; urgency=low
 
   * Switch to default-jdk. (Closes: #643513)
diff --git a/debian/control b/debian/control
index f115844..bc6d117 100644
--- a/debian/control
+++ b/debian/control
@@ -4,11 +4,11 @@ Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.or
 Uploaders: Soeren Sonnenburg <sonne at debian.org>,
  Torsten Werner <twerner at debian.org>
 Build-Depends: cdbs, debhelper (>= 7), default-jdk, ant-optional, gfortran,
- libatlas-base-dev, ruby
-Standards-Version: 3.9.1.0
+ libatlas-base-dev, ruby1.8
+Standards-Version: 3.9.3
 Section: science
 Homepage: http://jblas.org
-Vcs-Svn: svn+ssh://svn.debian.org/svn/pkg-java/trunk/jblas
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/jblas
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/jblas/
 
 Package: jblas
diff --git a/debian/patches/jblas-diff-1.1.1-to-HEAD.patch b/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
deleted file mode 100644
index ffcb77a..0000000
--- a/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-Index: jblas-1.1.1/src/org/jblas/ComplexDoubleMatrix.java
-===================================================================
---- jblas-1.1.1.orig/src/org/jblas/ComplexDoubleMatrix.java	2010-08-27 16:41:48.000000000 +0200
-+++ jblas-1.1.1/src/org/jblas/ComplexDoubleMatrix.java	2010-10-19 12:09:57.000000000 +0200
-@@ -768,7 +768,7 @@
- 
-         /** Get matrix element, passing the variable to store the result. */
-         public ComplexDouble get(int rowIndex, int columnIndex, ComplexDouble result) {
--            return get(index(rowIndex, columnIndex));
-+            return get(index(rowIndex, columnIndex), result);
-         }
- 	
- 	public DoubleMatrix getReal() {
-Index: jblas-1.1.1/src/org/jblas/ComplexFloatMatrix.java
-===================================================================
---- jblas-1.1.1.orig/src/org/jblas/ComplexFloatMatrix.java	2010-08-27 16:41:48.000000000 +0200
-+++ jblas-1.1.1/src/org/jblas/ComplexFloatMatrix.java	2010-10-19 12:09:57.000000000 +0200
-@@ -768,7 +768,7 @@
- 
-         /** Get matrix element, passing the variable to store the result. */
-         public ComplexFloat get(int rowIndex, int columnIndex, ComplexFloat result) {
--            return get(index(rowIndex, columnIndex));
-+            return get(index(rowIndex, columnIndex), result);
-         }
- 	
- 	public FloatMatrix getReal() {
-Index: jblas-1.1.1/src/org/jblas/DoubleMatrix.java
-===================================================================
---- jblas-1.1.1.orig/src/org/jblas/DoubleMatrix.java	2010-08-27 16:41:48.000000000 +0200
-+++ jblas-1.1.1/src/org/jblas/DoubleMatrix.java	2010-10-19 12:09:57.000000000 +0200
-@@ -91,8 +91,8 @@
-  * <tr><th>Method<th>Description
-  * <tr><td>DoubleMatrix(m)<td>Constructs a column vector.
-  * <tr><td>DoubleMatrix(new double[] {value1, value2, ...})<td>Constructs a column vector.
-- * <tr><td>DoubleMatrix.zeros(m) <td>Initial values set to 1.0.
-- * <tr><td>DoubleMatrix.ones(m) <td>Initial values set to 0.0.
-+ * <tr><td>DoubleMatrix.zeros(m) <td>Initial values set to 0.0.
-+ * <tr><td>DoubleMatrix.ones(m) <td>Initial values set to 1.0.
-  * <tr><td>DoubleMatrix.rand(m) <td>Values drawn at random between 0.0 and 1.0.
-  * <tr><td>DoubleMatrix.randn(m) <td>Values drawn from normal distribution.
-  * </table>
-@@ -835,6 +835,7 @@
-         }
-     }
- 
-+
-     /** Set elements in linear ordering in the specified indices. */
-     public DoubleMatrix put(int[] indices, DoubleMatrix x) {
-         if (x.isScalar()) {
-Index: jblas-1.1.1/src/org/jblas/FloatMatrix.java
-===================================================================
---- jblas-1.1.1.orig/src/org/jblas/FloatMatrix.java	2010-08-27 16:41:48.000000000 +0200
-+++ jblas-1.1.1/src/org/jblas/FloatMatrix.java	2010-10-19 12:09:57.000000000 +0200
-@@ -91,8 +91,8 @@
-  * <tr><th>Method<th>Description
-  * <tr><td>FloatMatrix(m)<td>Constructs a column vector.
-  * <tr><td>FloatMatrix(new float[] {value1, value2, ...})<td>Constructs a column vector.
-- * <tr><td>FloatMatrix.zeros(m) <td>Initial values set to 1.0f.
-- * <tr><td>FloatMatrix.ones(m) <td>Initial values set to 0.0f.
-+ * <tr><td>FloatMatrix.zeros(m) <td>Initial values set to 0.0f.
-+ * <tr><td>FloatMatrix.ones(m) <td>Initial values set to 1.0f.
-  * <tr><td>FloatMatrix.rand(m) <td>Values drawn at random between 0.0f and 1.0f.
-  * <tr><td>FloatMatrix.randn(m) <td>Values drawn from normal distribution.
-  * </table>
-@@ -835,6 +835,7 @@
-         }
-     }
- 
-+
-     /** Set elements in linear ordering in the specified indices. */
-     public FloatMatrix put(int[] indices, FloatMatrix x) {
-         if (x.isScalar()) {

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jblas.git



More information about the pkg-java-commits mailing list