[pkg-java] r13030 - in trunk/jblas/debian: . patches source
Soeren Sonnenburg
sonne at alioth.debian.org
Tue Oct 19 10:12:42 UTC 2010
Author: sonne
Date: 2010-10-19 10:12:38 +0000 (Tue, 19 Oct 2010)
New Revision: 13030
Added:
trunk/jblas/debian/patches/
trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
trunk/jblas/debian/patches/series
trunk/jblas/debian/source/
trunk/jblas/debian/source/format
Modified:
trunk/jblas/debian/changelog
Log:
* Switch to dpkg-source 3.0 (quilt) format.
* Add patch from upstream fixing a number of complex matrix related
functions.
Modified: trunk/jblas/debian/changelog
===================================================================
--- trunk/jblas/debian/changelog 2010-10-15 12:26:15 UTC (rev 13029)
+++ trunk/jblas/debian/changelog 2010-10-19 10:12:38 UTC (rev 13030)
@@ -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.
Added: trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
===================================================================
--- trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch (rev 0)
+++ trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch 2010-10-19 10:12:38 UTC (rev 13030)
@@ -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()) {
Added: trunk/jblas/debian/patches/series
===================================================================
--- trunk/jblas/debian/patches/series (rev 0)
+++ trunk/jblas/debian/patches/series 2010-10-19 10:12:38 UTC (rev 13030)
@@ -0,0 +1 @@
+jblas-diff-1.1.1-to-HEAD.patch
Added: trunk/jblas/debian/source/format
===================================================================
--- trunk/jblas/debian/source/format (rev 0)
+++ trunk/jblas/debian/source/format 2010-10-19 10:12:38 UTC (rev 13030)
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the pkg-java-commits
mailing list