This is an automated email from the git hooks/post-receive script. sebastic pushed a commit to branch master in repository pdal.
commit b266dd420fcded66acb9033acd37837da5becc6b Author: Bas Couwenberg <[email protected]> Date: Tue Mar 15 21:00:18 2016 +0100 Initial Debian packaging. --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 29 +++++++++++++++++++++++++++++ debian/copyright | 40 ++++++++++++++++++++++++++++++++++++++++ debian/gbp.conf | 16 ++++++++++++++++ debian/rules | 10 ++++++++++ debian/source/format | 1 + debian/upstream/metadata | 6 ++++++ debian/watch | 6 ++++++ 9 files changed, 114 insertions(+) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b86713d --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pdal (1.0.0-1) UNRELEASED; urgency=medium + + * Initial release (Closes: #797126) + + -- Bas Couwenberg <[email protected]> Tue, 15 Mar 2016 20:58:53 +0100 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..4fcfec5 --- /dev/null +++ b/debian/control @@ -0,0 +1,29 @@ +Source: pdal +Section: science +Priority: optional +Maintainer: Debian GIS Project <[email protected]> +Uploaders: Bas Couwenberg <[email protected]> +Build-Depends: debhelper (>= 9) +Standards-Version: 3.9.7 +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-grass/pdal.git +Vcs-Git: https://anonscm.debian.org/git/pkg-grass/pdal.git +Homepage: http://pdal.io/ + +Package: pdal +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Point Data Abstraction Library + PDAL is a BSD licensed library for translating and manipulating point + cloud data of various formats. PDAL can be used to read, write and + translate point cloud data in many formats. Support is included for + input files of LAS, LAZ, SBET, BPF, QFIT and others. PDAL can also read + from and write to databases that support point cloud storage, including + Oracle, Postgres and SQLite. + . + PDAL should not be confused with `PCL`_ (Point Cloud Library). PCL is a + library specifically designed to provide algorithmic analysis and + modification of point clouds. PDAL provides a limited interface to the + facilities of PCL, but does not in general attempt to duplicate its + capabilites. + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..9e0a025 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,40 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: PDAL +Upstream-Contact: Hobu, Inc. <[email protected]> +Source: http://download.osgeo.org/pdal/ + +Files: * +Copyright: 2015, Hobu, Inc. <[email protected]> +License: BSD-3-Clause + +Files: debian/* +Copyright: 2016, Bas Couwenberg <[email protected]> +License: BSD-3-Clause + +License: BSD-3-Clause + 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. + . + 3) Neither the name of the ORGANIZATION nor the names of its contributors may + be used to endorse or promote products derived from this software without + specific prior written permission. + . + 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/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..21d0417 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,16 @@ +[DEFAULT] + +# The default name for the upstream branch is "upstream". +# Change it if the name is different (for instance, "master"). +upstream-branch = upstream + +# The default name for the Debian branch is "master". +# Change it if the name is different (for instance, "debian/unstable"). +debian-branch = master + +# git-import-orig uses the following names for the upstream tags. +# Change the value if you are not using git-import-orig +upstream-tag = upstream/%(version)s + +# Always use pristine-tar. +pristine-tar = True diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..0d0dd46 --- /dev/null +++ b/debian/rules @@ -0,0 +1,10 @@ +#!/usr/bin/make -f + +# DH_VERBOSE := 1 + +%: + dh $@ --parallel + +override_dh_install: + dh_install --list-missing + 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/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..2632ae4 --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,6 @@ +--- +Bug-Database: https://github.com/PDAL/PDAL/issues +Bug-Submit: https://github.com/PDAL/PDAL/issues/new +Name: PDAL +Repository: https://github.com/PDAL/PDAL.git +Repository-Browse: https://github.com/PDAL/PDAL diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..58fbaff --- /dev/null +++ b/debian/watch @@ -0,0 +1,6 @@ +version=3 +opts=\ +dversionmangle=s/\+(debian|dfsg|ds|deb)\d*$//,\ +uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1~$2/;s/RC/rc/ \ +http://download.osgeo.org/pdal/ \ +(?:.*?/)?(?:rel|v|PDAL)?[\-\_]?(\d\S+?)(?:-src)?\.(?:tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz))) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/pdal.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

