[pkg-java] r16219 - in trunk/jblas/debian: . patches
Soeren Sonnenburg
sonne at alioth.debian.org
Sat Jun 30 17:56:53 UTC 2012
Author: sonne
Date: 2012-06-30 17:56:52 +0000 (Sat, 30 Jun 2012)
New Revision: 16219
Removed:
trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
trunk/jblas/debian/patches/series
Modified:
trunk/jblas/debian/changelog
trunk/jblas/debian/control
Log:
Explictly build depend on ruby 1.8 fixing the FTBS. (Closes: #676111)
Modified: trunk/jblas/debian/changelog
===================================================================
--- trunk/jblas/debian/changelog 2012-06-29 21:03:24 UTC (rev 16218)
+++ trunk/jblas/debian/changelog 2012-06-30 17:56:52 UTC (rev 16219)
@@ -1,9 +1,13 @@
-jblas (1.2.0-4) UNRELEASED; urgency=low
+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 ]
+ * Explictly 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
Modified: trunk/jblas/debian/control
===================================================================
--- trunk/jblas/debian/control 2012-06-29 21:03:24 UTC (rev 16218)
+++ trunk/jblas/debian/control 2012-06-30 17:56:52 UTC (rev 16219)
@@ -4,7 +4,7 @@
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
+ libatlas-base-dev, ruby1.8
Standards-Version: 3.9.3
Section: science
Homepage: http://jblas.org
Deleted: trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch
===================================================================
--- trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch 2012-06-29 21:03:24 UTC (rev 16218)
+++ trunk/jblas/debian/patches/jblas-diff-1.1.1-to-HEAD.patch 2012-06-30 17:56:52 UTC (rev 16219)
@@ -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()) {
Deleted: trunk/jblas/debian/patches/series
===================================================================
More information about the pkg-java-commits
mailing list