[pkg-java] r13984 - in trunk/jama/debian: . source
Torsten Werner
twerner at alioth.debian.org
Sat Aug 6 08:36:23 UTC 2011
Author: twerner
Date: 2011-08-06 08:36:23 +0000 (Sat, 06 Aug 2011)
New Revision: 13984
Added:
trunk/jama/debian/libjama-java-doc.doc-base
trunk/jama/debian/libjama-java-doc.docs
trunk/jama/debian/source/
trunk/jama/debian/source/format
Removed:
trunk/jama/debian/libjama-java.docs
Modified:
trunk/jama/debian/build.xml
trunk/jama/debian/changelog
trunk/jama/debian/control
Log:
* Added myself to uploaders.
* Removed dependency on default-jdk. (Closes: #590461)
* Updated Standards-Version to 3.9.1.
* Added Vcs-* and Homepage fields.
* Moved javadoc and examples to a separate package.
- To get the javadoc, install libjama-java-doc.
* Registered javadoc with docbase.
* Changed to 3.0 (quilt) source format.
Modified: trunk/jama/debian/build.xml
===================================================================
--- trunk/jama/debian/build.xml 2011-08-06 08:29:09 UTC (rev 13983)
+++ trunk/jama/debian/build.xml 2011-08-06 08:36:23 UTC (rev 13984)
@@ -60,6 +60,8 @@
description="Create component Javadoc documentation">
<javadoc packagenames="Jama,Jama.util" sourcepath="${source.home}"
destdir="${build.home}/docs/api" defaultexcludes="yes">
+
+ <link href="/usr/share/doc/default-jdk-doc/api" />
</javadoc>
</target>
Modified: trunk/jama/debian/changelog
===================================================================
--- trunk/jama/debian/changelog 2011-08-06 08:29:09 UTC (rev 13983)
+++ trunk/jama/debian/changelog 2011-08-06 08:36:23 UTC (rev 13984)
@@ -1,3 +1,16 @@
+jama (1.0.2-4) unstable; urgency=low
+
+ * Added myself to uploaders.
+ * Removed dependency on default-jdk. (Closes: #590461)
+ * Updated Standards-Version to 3.9.1.
+ * Added Vcs-* and Homepage fields.
+ * Moved javadoc and examples to a separate package.
+ - To get the javadoc, install libjama-java-doc.
+ * Registered javadoc with docbase.
+ * Changed to 3.0 (quilt) source format.
+
+ -- Melvin Winstrøm-Møller <mithunder at gmail.com> Wed, 28 Jul 2010 17:20:52 +0200
+
jama (1.0.2-3) unstable; urgency=low
* (Build-)Depends on default-jdk.
Modified: trunk/jama/debian/control
===================================================================
--- trunk/jama/debian/control 2011-08-06 08:29:09 UTC (rev 13983)
+++ trunk/jama/debian/control 2011-08-06 08:36:23 UTC (rev 13984)
@@ -2,14 +2,18 @@
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Michael Koch <konqueror at gmx.de>
-Build-Depends: debhelper (>= 7), cdbs, ant, default-jdk
-Standards-Version: 3.8.3
+Uploaders: Michael Koch <konqueror at gmx.de>, Melvin Winstrøm-Møller <mithunder at gmail.com>
+Build-Depends: debhelper (>= 7), cdbs, ant, default-jdk, default-jdk-doc
+Standards-Version: 3.9.1
+Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/jama
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/jama/
+Homepage: http://math.nist.gov/javanumerics/jama/
Package: libjama-java
Architecture: all
-Depends: default-jdk, ${misc:Depends}
-Description: a basic linear algebra library for java
+Depends: ${misc:Depends}
+Suggests: libjama-java-doc
+Description: a basic linear algebra library for Java
Provides fundamental operations of numerical linear algebra. The package
provides five matrix decompositions. These decompositions are accessed by
the Matrix class to compute solutions of simultaneous linear equations,
@@ -21,3 +25,24 @@
* QR Decomposition of rectangular matrices
* Eigenvalue Decomposition of both symmetric and nonsymmetric square matrices
* Singular Value Decomposition of rectangular matrices
+
+Package: libjama-java-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}
+Recommends: default-jdk-doc,
+Suggests: libjama-java
+Description: a basic linear algebra library for Java (documentation)
+ Provides fundamental operations of numerical linear algebra. The package
+ provides five matrix decompositions. These decompositions are accessed by
+ the Matrix class to compute solutions of simultaneous linear equations,
+ determinants, inverses and other matrix functions.
+ .
+ The five decompositions are:
+ * Cholesky Decomposition of symmetric, positive definite matrices
+ * LU Decomposition (Gaussian elimination) of rectangular matrices
+ * QR Decomposition of rectangular matrices
+ * Eigenvalue Decomposition of both symmetric and nonsymmetric square matrices
+ * Singular Value Decomposition of rectangular matrices
+ .
+ This package contains the documentation of libjama-java.
Added: trunk/jama/debian/libjama-java-doc.doc-base
===================================================================
--- trunk/jama/debian/libjama-java-doc.doc-base (rev 0)
+++ trunk/jama/debian/libjama-java-doc.doc-base 2011-08-06 08:36:23 UTC (rev 13984)
@@ -0,0 +1,12 @@
+Document: libjama-java
+Title: JAMA: a basic linear algebra library for Java
+Author: The MathWorks and NIST
+Abstract: JAMA provides fundamental operations of numerical linear algebra.
+ The package provides five matrix decompositions. These decompositions are
+ accessed by the Matrix class to compute solutions of simultaneous linear
+ equations, determinants, inverses and other matrix functions.
+Section: Programming/Java
+
+Format: HTML
+Index: /usr/share/doc/libjama-java-doc/api/index.html
+Files: /usr/share/doc/libjama-java-doc/api/*.html
Added: trunk/jama/debian/libjama-java-doc.docs
===================================================================
--- trunk/jama/debian/libjama-java-doc.docs (rev 0)
+++ trunk/jama/debian/libjama-java-doc.docs 2011-08-06 08:36:23 UTC (rev 13984)
@@ -0,0 +1,3 @@
+target/docs/api
+src/Jama/examples
+src/Jama/test
Deleted: trunk/jama/debian/libjama-java.docs
===================================================================
--- trunk/jama/debian/libjama-java.docs 2011-08-06 08:29:09 UTC (rev 13983)
+++ trunk/jama/debian/libjama-java.docs 2011-08-06 08:36:23 UTC (rev 13984)
@@ -1,3 +0,0 @@
-target/docs/api
-src/Jama/examples
-src/Jama/test
Added: trunk/jama/debian/source/format
===================================================================
--- trunk/jama/debian/source/format (rev 0)
+++ trunk/jama/debian/source/format 2011-08-06 08:36:23 UTC (rev 13984)
@@ -0,0 +1 @@
+3.0 (quilt)
More information about the pkg-java-commits
mailing list