[med-svn] [libhac-java] 02/11: Initial commit

Andreas Tille tille at debian.org
Thu Nov 30 15:26:10 UTC 2017


This is an automated email from the git hooks/post-receive script.

tille pushed a commit to branch master
in repository libhac-java.

commit 3016892d953493d40aa60ce871d2f0a9cb00b85e
Author: Tim Booth <tbooth at ceh.ac.uk>
Date:   Thu Apr 10 13:13:42 2014 +0000

    Initial commit
---
 debian/changelog               |  5 +++++
 debian/compat                  |  1 +
 debian/control                 | 33 +++++++++++++++++++++++++++++++++
 debian/copyright               | 41 +++++++++++++++++++++++++++++++++++++++++
 debian/libhac-java-doc.javadoc |  1 +
 debian/libhac-java.docs        |  1 +
 debian/libhac-java.jlibs       |  1 +
 debian/rules                   | 14 ++++++++++++++
 debian/source/format           |  1 +
 debian/watch                   |  2 ++
 10 files changed, 100 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..0db4295
--- /dev/null
+++ b/debian/changelog
@@ -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
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..4a2d4e0
--- /dev/null
+++ b/debian/control
@@ -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.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..151b1b0
--- /dev/null
+++ b/debian/copyright
@@ -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'
+
+
diff --git a/debian/libhac-java-doc.javadoc b/debian/libhac-java-doc.javadoc
new file mode 100644
index 0000000..ce83b25
--- /dev/null
+++ b/debian/libhac-java-doc.javadoc
@@ -0,0 +1 @@
+internal
diff --git a/debian/libhac-java.docs b/debian/libhac-java.docs
new file mode 100644
index 0000000..30d29de
--- /dev/null
+++ b/debian/libhac-java.docs
@@ -0,0 +1 @@
+doc/*
diff --git a/debian/libhac-java.jlibs b/debian/libhac-java.jlibs
new file mode 100644
index 0000000..d392f0e
--- /dev/null
+++ b/debian/libhac-java.jlibs
@@ -0,0 +1 @@
+*.jar
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..93bb0e5
--- /dev/null
+++ b/debian/rules
@@ -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
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)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..879c65b
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+# The project is not tagged on GitHub, so no automated watch is possible.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/libhac-java.git



More information about the debian-med-commit mailing list