[jblas] 14/24: Imported Debian patch 1.1.1-2
Tony Mancill
tmancill at moszumanska.debian.org
Sun Jan 5 05:45:58 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 cd5715b6383329c72bb3c1d763bedc99229d8f84
Author: Soeren Sonnenburg <sonne at debian.org>
Date: Tue Oct 19 12:11:02 2010 +0200
Imported Debian patch 1.1.1-2
---
debian/changelog | 8 +++
debian/orig-tar.sh | 0
debian/patches/jblas-diff-1.1.1-to-HEAD.patch | 72 +++++++++++++++++++++++++++
debian/patches/series | 1 +
debian/source/format | 1 +
5 files changed, 82 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index 942c0da..d7acf3d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+jblas (1.1.1-2) unstable; urgency=low
+
+ * Switch to dpkg-source 3.0 (quilt) format.
+ * Add patch from upstream fixing a number of complex matrix related
+ functions.
+
+ -- Soeren Sonnenburg <sonne at debian.org> Tue, 19 Oct 2010 12:11:02 +0200
+
jblas (1.1.1-1) unstable; urgency=low
* New upstream bugfix release.
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
old mode 100644
new mode 100755
diff --git a/debian/patches/jblas-diff-1.1.1-to-HEAD.patch b/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
new file mode 100644
index 0000000..ffcb77a
--- /dev/null
+++ b/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
@@ -0,0 +1,72 @@
+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()) {
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..2505c62
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+jblas-diff-1.1.1-to-HEAD.patch
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
--
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