[libaec] 02/08: WIP: First cut of debian/ dir

Alastair McKinstry mckinstry at moszumanska.debian.org
Fri Jul 28 11:05:33 UTC 2017


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

mckinstry pushed a commit to branch debian/master
in repository libaec.

commit 69b12a9bda15cfb30d36bc09b2bbbad2c1aa09e0
Author: Alastair McKinstry <mckinstry at debian.org>
Date:   Sat Nov 21 23:08:57 2015 +0000

    WIP: First cut of debian/ dir
---
 debian/changelog      |  5 +++++
 debian/control        | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/copyright      | 37 +++++++++++++++++++++++++++++++++++++
 debian/rules          | 21 +++++++++++++++++++++
 debian/source/format  |  1 +
 debian/source/options |  1 +
 6 files changed, 107 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..cccc1c0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+libaec (0.3.2-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Alastair McKinstry <mckinstry at debian.org>  Sat, 21 Nov 2015 22:58:59 +0000
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..28d755c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,42 @@
+Source: libaec
+Section: utils
+Priority: optional
+Maintainer: Alastair McKinstry <mckinstry at debian.org>
+Build-Depends: debhelper (>= 9), dh-buildinfo, autoconf, automake,
+Homepage: https://www.dkrz.de/redmine/projects/aec
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/libaec.git
+
+Package: libaec0
+Section: libs
+Architecture: any
+Priority: optional
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Multi-Arch: same
+Description: Adaptive Entropy Coding library
+ Libaec provides fast lossless compression of 1 up to 32 bit wide
+ signed or unsigned integers (samples). The library achieves best
+ results for low entropy data as often encountered in space imaging
+ instrument data or numerical model output from weather or climate
+ simulations. While floating point representations are not directly
+ supported, they can also be efficiently coded by grouping exponents
+ and mantissa.
+ .
+ Libaec implements Golomb Rice coding as defined in the Space Data
+ System Standard documents 121.0-B-2 [1] and 120.0-G-2[2].
+
+Package: libaec-dev
+Section: libdevel
+Architecture: any
+Priority: extra
+Depends: ${misc:Depends}, libaec0 (= ${binary:Version})
+Multi-Arch: same
+Description: Development files for the Adaptive Entropy Coding library
+ Libaec provides fast lossless compression of 1 up to 32 bit wide
+ signed or unsigned integers (samples). The library achieves best
+ results for low entropy data as often encountered in space imaging
+ instrument data or numerical model output from weather or climate
+ simulations. While floating point representations are not directly
+ supported, they can also be efficiently coded by grouping exponents
+ and mantissa.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4a50f36
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,37 @@
+Copyright 2012 - 2014
+
+Mathis Rosenhauer, Moritz Hanke, Joerg Behrens
+Deutsches Klimarechenzentrum GmbH
+Bundesstr. 45a
+20146 Hamburg
+Germany
+
+Luis Kornblueh
+Max-Planck-Institut fuer Meteorologie
+Bundesstr. 53
+20146 Hamburg
+Germany
+
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+2. 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.
+
+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.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..0ff12b8
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,21 @@
+#!/usr/bin/make -f
+
+# The magic debhelper  rule
+%:
+	dh $@ --with autoreconf
+
+DESTDIR:=`pwd`/debian/tmp/
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+LIBDIR:=/usr/lib/$(DEB_HOST_MULTIARCH)
+
+# To enable all, uncomment following line
+DEB_BUILD_MAINT_OPTIONS:= hardening=+all
+DEB_CFLAGS_MAINT_APPEND:= -Wall -pedantic -fPIC
+export DEB_BUILD_MAINT_OPTIONS
+export DEB_CFLAGS_MAINT_APPEND
+
+
+ARCH:=$(shell dpkg --print-architecture)
+
+override_dh_autoreconf:
+	dh_autoreconf --as-needed
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/source/options b/debian/source/options
new file mode 100644
index 0000000..b7bc1f2
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+compression = "xz"

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/libaec.git



More information about the debian-science-commits mailing list