[med-svn] [libhpptools] 02/02: Add initial Debian packaging. This package is a precondition for nanocall.

Andreas Tille tille at debian.org
Wed Sep 14 08:27:29 UTC 2016


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

tille pushed a commit to branch master
in repository libhpptools.

commit 98a689c73049e1fe06ebeec263aa0b0187d0fac6
Author: Andreas Tille <tille at debian.org>
Date:   Wed Sep 14 10:26:14 2016 +0200

    Add initial Debian packaging.  This package is a precondition for nanocall.
---
 debian/changelog                    |  5 +++++
 debian/clean                        |  1 +
 debian/compat                       |  1 +
 debian/control                      | 25 +++++++++++++++++++++++++
 debian/copyright                    | 33 +++++++++++++++++++++++++++++++++
 debian/docs                         |  1 +
 debian/install                      |  1 +
 debian/patches/include_math_h.patch | 14 ++++++++++++++
 debian/patches/series               |  1 +
 debian/rules                        | 10 ++++++++++
 debian/source/format                |  1 +
 debian/watch                        |  3 +++
 12 files changed, 96 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..91f94a2
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libhpptools (1.1.0-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #<bug>)
+
+ -- Andreas Tille <tille at debian.org>  Tue, 13 Sep 2016 14:28:24 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..daa30a3
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+README.html
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..b68c746
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,25 @@
+Source: libhpptools
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
+Section: libdevel
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               emacs
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/libhpptools.git
+Vcs-Git: https://anonscm.debian.org/git/debian-med/libhpptools.git
+Homepage: https://github.com/mateidavid/hpptools
+
+Package: libhpptools-dev
+Architecture: all
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
+Description: various C++ Header Tools
+ A collection of C++ (mostly, C++11) header-only utility libraries.
+ .
+  * thread-safe facility-based logging mechanism
+  * ZLib wrapper
+  * Collection of new and extended SL algorithms
+  * Floating point additions in logarithmic space using table lookup
+  * C++11-based parallel for, with optional output sorting
+  * C++11-based thread pool
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f5288de
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,33 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: hpptools
+Upstream-Contact: Matei David <matei.david at oicr.on.ca>
+Source: https://github.com/mateidavid/hpptools/releases
+
+Files: *
+Copyright: 2015-2016 Matei David <matei.david at oicr.on.ca>,
+                     Jared Simpson,
+                     Ontario Institute for Cancer Research
+License: expat
+
+Files: debian/*
+Copyright: 2016 Andreas Tille <tille at debian.org>
+License: expat
+
+License: expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..daa30a3
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.html
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..e68c234
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+include/*	usr/include/hpptools
diff --git a/debian/patches/include_math_h.patch b/debian/patches/include_math_h.patch
new file mode 100644
index 0000000..838c979
--- /dev/null
+++ b/debian/patches/include_math_h.patch
@@ -0,0 +1,14 @@
+Author: Andreas Tille <tille at debian.org>
+Last-Update: Tue, 13 Sep 2016 14:28:24 +0200
+Description: Add missing header file
+
+--- a/include/alg.hpp
++++ b/include/alg.hpp
+@@ -71,6 +71,7 @@
+ #include <iostream>
+ #include <sstream>
+ #include <type_traits>
++#include <math.h>
+ 
+ namespace alg
+ {
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..cadf9d0
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+include_math_h.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d36524f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# DH_VERBOSE := 1
+
+%:
+	dh $@
+
+override_dh_installdocs:
+	emacs README.org --batch -f org-html-export-to-html --kill
+	dh_installdocs
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..1785118
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+
+https://github.com/mateidavid/hpptools/releases .*/archive/(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz)

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



More information about the debian-med-commit mailing list