[libejml-java] 02/04: Initial packaging skeleton

Andreas Tille tille at debian.org
Mon Nov 16 12:49:18 UTC 2015


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

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

commit c387c5e2dd0caf7ec54ab5000da8fae735d41afe
Author: Andreas Tille <tille at debian.org>
Date:   Mon Nov 16 11:25:03 2015 +0100

    Initial packaging skeleton
---
 debian/changelog                |  5 ++++
 debian/compat                   |  1 +
 debian/control                  | 66 +++++++++++++++++++++++++++++++++++++++++
 debian/copyright                | 44 +++++++++++++++++++++++++++
 debian/libejml-java-doc.javadoc |  1 +
 debian/libejml-java.jlibs       |  1 +
 debian/rules                    |  6 ++++
 debian/source/format            |  1 +
 debian/watch                    |  3 ++
 9 files changed, 128 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2afdcf3
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libejml-java (0.28-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #???)
+
+ -- Andreas Tille <tille at debian.org>  Wed, 05 Jun 2013 14:51:51 +0200
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..fd4f4fa
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,66 @@
+Source: libejml-java
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
+Section: java
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               javahelper,
+               default-jdk,
+               ant
+Standards-Version: 3.9.6
+Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/libejml-java.git
+Vcs-Git: git://anonscm.debian.org/pkg-java/libejml-java.git
+Homepage: http://ejml.org/wiki
+
+Package: libejml-java
+Architecture: all
+Depends: ${misc:Depends},
+         ${java:Depends}
+Recommends: ${java:Recommends}
+Description: Efficient Java Matrix Library
+ Efficient Java Matrix Library (EJML) is a linear algebra library for
+ manipulating dense matrices. Its design goals are;
+  1) to be as computationally and memory efficient as possible for both
+     small and large matrices, and
+  2) to be accessible to both novices and experts.
+ These goals are accomplished by dynamically selecting the best
+ algorithms to use at runtime, clean API, and multiple interfaces.
+ .
+ EJML has three distinct ways to interact with it:
+  1) procedural,
+  2) SimpleMatrix, and
+  3) Equations.
+ Procedure provides all capabilities of EJML and almost complete control
+ over memory creation, speed, and specific algorithms. SimpleMatrix
+ provides a simplified subset of the core capabilities in an easy to use
+ flow styled object-oriented API, inspired by Jama. Equations is a
+ symbolic interface, similar in spirit to Matlab and other CAS, that
+ provides a compact way of writing equations.
+
+Package: libejml-java-doc
+Architecture: all
+Section: doc
+Depends: ${misc:Depends},
+         ${java:Depends}
+Recommends: ${java:Recommends}
+Description: API documentation for libejml-java
+ Efficient Java Matrix Library (EJML) is a linear algebra library for
+ manipulating dense matrices. Its design goals are;
+  1) to be as computationally and memory efficient as possible for both
+     small and large matrices, and
+  2) to be accessible to both novices and experts.
+ These goals are accomplished by dynamically selecting the best
+ algorithms to use at runtime, clean API, and multiple interfaces.
+ .
+ EJML has three distinct ways to interact with it:
+  1) procedural,
+  2) SimpleMatrix, and
+  3) Equations.
+ Procedure provides all capabilities of EJML and almost complete control
+ over memory creation, speed, and specific algorithms. SimpleMatrix
+ provides a simplified subset of the core capabilities in an easy to use
+ flow styled object-oriented API, inspired by Jama. Equations is a
+ symbolic interface, similar in spirit to Matlab and other CAS, that
+ provides a compact way of writing equations.
+ .
+ This package contains the javadoc documentation files.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4248395
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,44 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Contact: Sebastiano Vigna <vigna at acm.org>
+Source: http://fastutil.di.unimi.it/
+
+Files: *
+Copyright: © 2003-2013 Sebastiano Vigna <vigna at acm.org>, Paolo Boldi
+License: Apache-2.0
+
+Files: src/it/unimi/dsi/fastutil/io/*.java test/it/unimi/dsi/fastutil/io/InspectableFileCachedInputStreamTest.java
+Copyright: © 2003-2011 Sebastiano Vigna <vigna at acm.org>, Paolo Boldi
+License: LGPL-2.1+
+ This library is free software; you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published by the Free
+ Software Foundation; either version 2.1 of the License, or (at your option)
+ any later version.
+ .
+ This library is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
+ for more details.
+ .
+ On Debian systems you can find a copy of GNU Lesser General Public License
+ at /usr/share/common-licenses/LGPL-2.1
+
+Files: debian/*
+Copyright: © 2013 Andreas Tille <tille at debian.org>
+License: Apache-2.0 
+
+License: Apache-2.0 
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+      http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License. 
+ .
+ On Debian systems you can find a copy of Apache 2.0 at
+ /usr/share/common-licenses/Apache-2.0
+
diff --git a/debian/libejml-java-doc.javadoc b/debian/libejml-java-doc.javadoc
new file mode 100644
index 0000000..9699968
--- /dev/null
+++ b/debian/libejml-java-doc.javadoc
@@ -0,0 +1 @@
+docs /usr/share/doc/ejml-java
diff --git a/debian/libejml-java.jlibs b/debian/libejml-java.jlibs
new file mode 100644
index 0000000..a9f3cb7
--- /dev/null
+++ b/debian/libejml-java.jlibs
@@ -0,0 +1 @@
+ejmlutil*.jar
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..59f50fc
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+# DH_VERBOSE := 1
+
+%:
+	dh $@ --with javahelper
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..669b7b0
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+
+https://github.com/lessthanoptimal/ejml/releases .*/archive/v(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz)

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



More information about the pkg-java-commits mailing list