[med-svn] r16649 - in trunk/packages/libhac-java/trunk/debian: . source
Timothy Booth
tbooth-guest at moszumanska.debian.org
Thu Apr 10 13:13:42 UTC 2014
Author: tbooth-guest
Date: 2014-04-10 13:13:42 +0000 (Thu, 10 Apr 2014)
New Revision: 16649
Added:
trunk/packages/libhac-java/trunk/debian/changelog
trunk/packages/libhac-java/trunk/debian/compat
trunk/packages/libhac-java/trunk/debian/control
trunk/packages/libhac-java/trunk/debian/copyright
trunk/packages/libhac-java/trunk/debian/libhac-java-doc.javadoc
trunk/packages/libhac-java/trunk/debian/libhac-java.docs
trunk/packages/libhac-java/trunk/debian/libhac-java.jlibs
trunk/packages/libhac-java/trunk/debian/rules
trunk/packages/libhac-java/trunk/debian/source/
trunk/packages/libhac-java/trunk/debian/source/format
trunk/packages/libhac-java/trunk/debian/watch
Log:
Initial commit
Added: trunk/packages/libhac-java/trunk/debian/changelog
===================================================================
--- trunk/packages/libhac-java/trunk/debian/changelog (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/changelog 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1,5 @@
+libhac-java (0.20110510-0ubuntu1) precise; urgency=low
+
+ * Initial release to support Acacia
+
+ -- Tim Booth <tbooth at ceh.ac.uk> Fri, 04 Apr 2014 09:54:37 +0100
Added: trunk/packages/libhac-java/trunk/debian/compat
===================================================================
--- trunk/packages/libhac-java/trunk/debian/compat (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/compat 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1 @@
+9
Added: trunk/packages/libhac-java/trunk/debian/control
===================================================================
--- trunk/packages/libhac-java/trunk/debian/control (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/control 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1,33 @@
+Source: libhac-java
+Section: java
+Priority: optional
+Maintainer: Tim Booth <tbooth at ceh.ac.uk>
+Build-Depends: debhelper (>= 9), default-jdk, javahelper
+Build-Depends-Indep: default-jdk-doc
+Standards-Version: 3.9.3
+Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/libhac-java
+Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/libhac-java
+Homepage: http://sape.inf.usi.ch/hac
+
+Package: libhac-java
+Architecture: all
+Depends: ${misc:Depends}, ${java:Depends}
+Suggests: libhac-java-doc
+Description: hierarchical agglomerative clustering
+ Hac is a simple library for hierarchical agglomerative clustering. The goal of
+ Hac is to be easy to use in any context that might require a hierarchical
+ agglomerative clustering approach. You can use Hac by bundling Hac with your
+ application, and by implementing two interfaces:
+ - Experiment (to tell Hac what to cluster), and
+ - DissimilarityMeasure (to tell Hac how to compute the dissimilarity between
+ two observations).
+
+Package: libhac-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends}
+Suggests: libhac-java
+Description: Documentation for HAC
+ Hac is a simple library for hierarchical agglomerative clustering.
+ .
+ This package contains the API documentation of libhac-java.
Added: trunk/packages/libhac-java/trunk/debian/copyright
===================================================================
--- trunk/packages/libhac-java/trunk/debian/copyright (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/copyright 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1,41 @@
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: HAC
+Source: https://github.com/sape/hac
+
+Files: *
+Copyright: 2011, the Sape Research Group
+Authors: Matthias.Hauswirth at usi.ch
+License: Simplified BSD
+ This software is licensed to You under the "Simplified BSD License".
+ You may not use this software except in compliance with the License.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ * Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+ * Neither the name of the Sape Research Group, nor
+ the names of its contributors may be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files: debian/*
+Copyright: 2013, Tim Booth <tbooth at ceh.ac.uk>
+License: BSD
+ On Debian GNU/Linux system you can find the complete text of the
+ BSD license in '/usr/share/common-licenses/BSD'
+
+
Added: trunk/packages/libhac-java/trunk/debian/libhac-java-doc.javadoc
===================================================================
--- trunk/packages/libhac-java/trunk/debian/libhac-java-doc.javadoc (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/libhac-java-doc.javadoc 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1 @@
+internal
Added: trunk/packages/libhac-java/trunk/debian/libhac-java.docs
===================================================================
--- trunk/packages/libhac-java/trunk/debian/libhac-java.docs (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/libhac-java.docs 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1 @@
+doc/*
Added: trunk/packages/libhac-java/trunk/debian/libhac-java.jlibs
===================================================================
--- trunk/packages/libhac-java/trunk/debian/libhac-java.jlibs (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/libhac-java.jlibs 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1 @@
+*.jar
Added: trunk/packages/libhac-java/trunk/debian/rules
===================================================================
--- trunk/packages/libhac-java/trunk/debian/rules (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/rules 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+export JAVA_HOME=/usr/lib/jvm/default-java
+
+%:
+ dh $@ --with javahelper
+
+override_dh_auto_build:
+ jh_build -J hac.jar src
+
+override_dh_auto_clean:
+ dh_auto_clean
+ rm -rf .[a-z]*
+ rm -rf *.jar
Property changes on: trunk/packages/libhac-java/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: trunk/packages/libhac-java/trunk/debian/source/format
===================================================================
--- trunk/packages/libhac-java/trunk/debian/source/format (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/source/format 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: trunk/packages/libhac-java/trunk/debian/watch
===================================================================
--- trunk/packages/libhac-java/trunk/debian/watch (rev 0)
+++ trunk/packages/libhac-java/trunk/debian/watch 2014-04-10 13:13:42 UTC (rev 16649)
@@ -0,0 +1,2 @@
+version=3
+# The project is not tagged on GitHub, so no automated watch is possible.
More information about the debian-med-commit
mailing list