[laszip] 02/03: Initial packaging.

Bas Couwenberg sebastic at xs4all.nl
Fri Jun 6 11:37:19 UTC 2014


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

sebastic-guest pushed a commit to branch master
in repository laszip.

commit a928e7b541a09746b7c8b6712f96e819a2747e97
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Fri May 30 01:32:20 2014 +0200

    Initial packaging.
---
 debian/changelog                    |   5 ++
 debian/compat                       |   1 +
 debian/control                      |  60 ++++++++++++++
 debian/copyright                    | 151 ++++++++++++++++++++++++++++++++++++
 debian/laszip-bin.install           |   1 +
 debian/liblaszip-dev.install        |   3 +
 debian/liblaszip6.install           |   1 +
 debian/liblaszip6.lintian-overrides |   2 +
 debian/rules                        |  15 ++++
 debian/source/format                |   1 +
 debian/watch                        |   3 +
 11 files changed, 243 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1ada133
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+laszip (2.2.0-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #750731)
+
+ -- Bas Couwenberg <sebastic at xs4all.nl>  Fri, 30 May 2014 00:26:37 +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..4bfe361
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,60 @@
+Source: laszip
+Maintainer: Debian GIS Project <pkg-grass-devel at lists.alioth.debian.org>
+Uploaders: Bas Couwenberg <sebastic at xs4all.nl>
+Section: science
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-autoreconf
+Standards-Version: 3.9.5
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-grass/laszip.git
+Vcs-Git: git://anonscm.debian.org/pkg-grass/laszip.git
+Homepage: http://www.laszip.org/
+
+Package: liblaszip6
+Architecture: any
+Multi-Arch: same
+Section: libs
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Description: Lossless LiDAR compression -- shared library
+ LASzip quickly turns bulky LAS files into compact LAZ files without
+ information loss.
+ .
+ This package contains the shared library.
+
+Package: liblaszip-dev
+Architecture: any
+Multi-Arch: same
+Section: libdevel
+Depends: liblaszip6 (= ${binary:Version}),
+         ${misc:Depends}
+Description: Lossless LiDAR compression - development files
+ LASzip quickly turns bulky LAS files into compact LAZ files without
+ information loss.
+ .
+ This package contains development files.
+
+Package: liblaszip6-dbg
+Architecture: any
+Multi-Arch: same
+Section: debug
+Priority: extra
+Depends: liblaszip6 (= ${binary:Version}),
+         ${misc:Depends}
+Description: Lossless LiDAR compression - debugging symbols
+ LASzip quickly turns bulky LAS files into compact LAZ files without
+ information loss.
+ .
+ This package contains debugging symbols for the library.
+
+Package: laszip-bin
+Architecture: any
+Depends: ${shlibs:Depends},
+         ${misc:Depends}
+Description: Lossless LiDAR compression - tools
+ LASzip quickly turns bulky LAS files into compact LAZ files without
+ information loss.
+ .
+ This package contains the tools.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bb27a08
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,151 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: laszip
+Upstream-Contact: Martin Isenburg <martin.isenburg at rapidlasso.com>
+Source: http://www.laszip.org/
+
+Files: *
+Copyright: 2005-2013, Martin Isenburg <martin.isenburg at rapidlasso.com>
+License: LGPL-2.1+
+
+Files: ltmain.sh
+Copyright: 1996-2001, 2003-2011, Free Software Foundation, Inc.
+License: GPL-2.0+ with Libtool exception
+
+Files: src/arithmeticdecoder.cpp
+ src/arithmeticencoder.cpp
+ src/arithmeticmodel.cpp
+Copyright: 2004, Amir Said <said at ieee.org>
+ 2004, William A. Pearlman <pearlw at ecse.rpi.edu>
+ 2005-2012, Martin Isenburg <martin.isenburg at rapidlasso.com>
+Comment:    A modular C++ wrapper for an adapted version of Amir Said's FastAC Code.
+ see: http://www.cipr.rpi.edu/~said/FastAC.html
+ .
+ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ //                                                                           -
+ // Fast arithmetic coding implementation                                     -
+ // -> 32-bit variables, 32-bit product, periodic updates, table decoding     -
+ //                                                                           -
+ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ //                                                                           -
+ // Version 1.00  -  April 25, 2004                                           -
+ //                                                                           -
+ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ //                                                                           -
+ //                                  WARNING                                  -
+ //                                 =========                                 -
+ //                                                                           -
+ // The only purpose of this program is to demonstrate the basic principles   -
+ // of arithmetic coding. It is provided as is, without any express or        -
+ // implied warranty, without even the warranty of fitness for any particular -
+ // purpose, or that the implementations are correct.                         -
+ //                                                                           -
+ // Permission to copy and redistribute this code is hereby granted, provided -
+ // that this warning and copyright notices are not removed or altered.       -
+ //                                                                           -
+ // Copyright (c) 2004 by Amir Said (said at ieee.org) &                         -
+ //                       William A. Pearlman (pearlw at ecse.rpi.edu)           -
+ //                                                                           -
+ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+ //                                                                           -
+ // A description of the arithmetic coding method used here is available in   -
+ //                                                                           -
+ // Lossless Compression Handbook, ed. K. Sayood                              -
+ // Chapter 5: Arithmetic Coding (A. Said), pp. 101-152, Academic Press, 2003 -
+ //                                                                           -
+ // A. Said, Introduction to Arithetic Coding Theory and Practice             -
+ // HP Labs report HPL-2004-76  -  http://www.hpl.hp.com/techreports/         -
+ //                                                                           -
+ // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
+License: LGPL-2.1+
+
+Files: src/entropydecoder.hpp
+ src/entropyencoder.hpp
+ src/integercompressor.hpp
+Copyright: 2005-2012, Martin Isenburg <martin.isenburg at rapidlasso.com>
+License: LGPL-2.1+
+
+Files: src/integercompressor.cpp
+ src/mydefs.hpp
+Copyright: 2005-2013, Martin Isenburg <martin.isenburg at rapidlasso.com>
+License: LGPL-2.1+
+
+Files: src/arithmeticdecoder.hpp
+ src/arithmeticencoder.hpp
+ src/arithmeticmodel.hpp
+ src/bytestreamin.hpp
+ src/bytestreamin_file.hpp
+ src/bytestreamin_istream.hpp
+ src/bytestreamout.hpp
+ src/bytestreamout_ostream.hpp
+ src/lasreaditem.hpp
+ src/lasreaditemcompressed_v1.cpp
+ src/lasreaditemcompressed_v1.hpp
+ src/lasreaditemcompressed_v2.cpp
+ src/lasreaditemcompressed_v2.hpp
+ src/lasreaditemraw.hpp
+ src/lasreadpoint.cpp
+ src/lasreadpoint.hpp
+ src/laswriteitem.hpp
+ src/laswriteitemcompressed_v1.cpp
+ src/laswriteitemcompressed_v1.hpp
+ src/laswriteitemcompressed_v2.cpp
+ src/laswriteitemcompressed_v2.hpp
+ src/laswriteitemraw.hpp
+ src/laswritepoint.cpp
+ src/laswritepoint.hpp
+ src/laszip_common_v2.hpp
+Copyright: 2007-2012, Martin Isenburg <martin.isenburg at rapidlasso.com>
+License: LGPL-2.1+
+
+Files: include/laszip/lasunzipper.hpp
+ include/laszip/laszip.hpp
+ include/laszip/laszipper.hpp
+ src/bytestreamout_file.hpp
+ src/lasunzipper.cpp
+ src/laszip.cpp
+ src/laszipper.cpp
+ tools/laszippertest.cpp
+Copyright: 2007-2013, Martin Isenburg <martin.isenburg at rapidlasso.com>
+License: LGPL-2.1+
+
+License: GPL-2.0+ with Libtool exception
+ GNU Libtool is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ As a special exception to the GNU General Public License,
+ if you distribute this file as part of a program or library that
+ is built using GNU Libtool, you may include this file under the
+ same distribution terms that you use for the rest of that program.
+ .
+ GNU Libtool 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
+ General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with GNU Libtool; see the file COPYING.  If not, a copy
+ can be downloaded from http://www.gnu.org/licenses/gpl.html,
+ or obtained by writing to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ .
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.
+
+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, the full text of the GNU Lesser General Public
+ License version 2.1 can be found in the file
+ `/usr/share/common-licenses/LGPL-2.1'.
+
diff --git a/debian/laszip-bin.install b/debian/laszip-bin.install
new file mode 100644
index 0000000..1df36c6
--- /dev/null
+++ b/debian/laszip-bin.install
@@ -0,0 +1 @@
+usr/bin/*
diff --git a/debian/liblaszip-dev.install b/debian/liblaszip-dev.install
new file mode 100644
index 0000000..f00c011
--- /dev/null
+++ b/debian/liblaszip-dev.install
@@ -0,0 +1,3 @@
+usr/include/*
+usr/lib/*/liblaszip.a
+usr/lib/*/liblaszip.so
diff --git a/debian/liblaszip6.install b/debian/liblaszip6.install
new file mode 100644
index 0000000..1391725
--- /dev/null
+++ b/debian/liblaszip6.install
@@ -0,0 +1 @@
+usr/lib/*/liblaszip.so.*
diff --git a/debian/liblaszip6.lintian-overrides b/debian/liblaszip6.lintian-overrides
new file mode 100644
index 0000000..d28f5fc
--- /dev/null
+++ b/debian/liblaszip6.lintian-overrides
@@ -0,0 +1,2 @@
+# symbols are problematic for C++ libraries.
+liblaszip6: no-symbols-control-file usr/lib/*/liblaszip.so.*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..1f21886
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,15 @@
+#!/usr/bin/make -f
+
+# DH_VERBOSE := 1
+
+VERBOSE=1
+
+%:
+	dh $@ --with autoreconf --parallel
+
+override_dh_install:
+	dh_install --list-missing
+
+override_dh_strip:
+	dh_strip --dbg-package=liblaszip6-dbg
+
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..6b057d8
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,uversionmangle=s/(\d)[_\.\-\+]?(RC|rc|pre|dev|beta|alpha)-?(\d*)$/$1~$2$3/,filenamemangle=s/^.*?\/(\d+)/LASzip-$1/ \
+https://github.com/LASzip/LASzip/tags (?:|.*/)LASzip/archive/v?(\d+\S*)\.(?:tar\.xz|txz|tar\.bz2|tbz2|tar\.gz|tgz)

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



More information about the Pkg-grass-devel mailing list