[med-svn] [hat-trie] 02/07: initial packaging

Sascha Steinbiss satta at debian.org
Wed Jun 22 17:12:31 UTC 2016


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

satta pushed a commit to branch master
in repository hat-trie.

commit 42938a13197baa9750f397d4437676fee29e4916
Author: Sascha Steinbiss <satta at debian.org>
Date:   Wed Jun 22 16:47:21 2016 +0000

    initial packaging
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 31 +++++++++++++++++++++++++++++++
 debian/rules         | 16 ++++++++++++++++
 debian/source/format |  1 +
 debian/watch         |  2 ++
 7 files changed, 105 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2e81589
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+hat-trie (0.0~git25f9e946) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Sascha Steinbiss <satta at debian.org>  Wed, 22 Jun 2016 16:31:26 +0000
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..13222c7
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,49 @@
+Source: hat-trie
+Section: science
+Priority: optional
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Sascha Steinbiss <satta at debian.org>
+Build-Depends: debhelper (>= 9),
+               d-shlibs
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/hat-trie.git
+Vcs-Git: git://anonscm.debian.org/debian-med/hat-trie.git
+Homepage: https://github.com/dcjones/hat-trie
+
+Package: libhat-trie0
+Architecture: any
+Multi-Arch: same
+Section: libs
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Description: HAT-trie, an extremely efficient (space and time) modern variant of tries
+ This a ANSI C99 implementation of the HAT-trie data structure of Askitis and
+ Sinha, an extremely efficient (space and time) modern variant of tries.
+ .
+ The version implemented here maps arrays of bytes to words (i.e., unsigned
+ longs), which can be used to store counts, pointers, etc, or not used at all
+ if you simply want to maintain a set of unique strings.
+ .
+ For details see:
+ .
+ Askitis, N., & Sinha, R. (2007). HAT-trie: a cache-conscious trie-based
+ data structure for strings. Proceedings of the thirtieth Australasian
+ conference on Computer science-Volume 62 (pp. 97–105). Australian Computer
+ Society, Inc.
+ .
+ Askitis, N., & Zobel, J. (2005). Cache-conscious collision resolution in
+ string hash tables. String Processing and Information Retrieval 
+ (pp. 91–102). Springer.
+
+Package: libhat-trie-dev
+Provides: libhat-trie-dev
+Architecture: any
+Multi-Arch: same
+Section: libdevel
+Depends: ${shlibs:Depends},
+         ${misc:Depends},
+         libhat-trie0 (= ${binary:Version})
+Pre-Depends: ${misc:Pre-Depends}
+Description: Development headers and static libraries for HAT-trie library
+ This package provides development headers and static libraries for libhat-trie.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..c693578
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Contact: Daniel C. Jones <dcjones at cs.washington.edu>
+Upstream-Name: HAT-trie
+Source: https://github.com/dcjones/hat-trie
+
+Files: *
+Copyright: © 2011 Daniel C. Jones <dcjones at cs.washington.edu>
+License: MIT
+
+Files: debian/*
+Copyright: © 2016 Sascha Steinbiss <satta at debian.org>
+License: MIT
+
+License: MIT
+ 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/rules b/debian/rules
new file mode 100755
index 0000000..7159e4e
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,16 @@
+#!/usr/bin/make -f
+
+# DH_VERBOSE := 1
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
+%:
+	dh $@
+
+#override_dh_auto_install:
+#	d-shlibmove --commit \
+                    --multiarch \
+                    --devunversioned \
+                    --override s/libhts1-dev/libhts-dev/ \
+                    --movedev "*.hpp" usr/include/ \
+                    libtabixpp.so
+
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..5dca049
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://github.com/dcjones/hat-trie/tags .*/v?(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))

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



More information about the debian-med-commit mailing list