[ros-filters] 01/01: Initial debianization

Jochen Sprickerhof jspricke-guest at moszumanska.debian.org
Sun Jan 3 21:32:57 UTC 2016


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

jspricke-guest pushed a commit to branch master
in repository ros-filters.

commit 7a9c96677bd0c62f6d6122be95d254b6d50556e5
Author: Jochen Sprickerhof <git at jochen.sprickerhof.de>
Date:   Sun Jan 3 22:32:03 2016 +0100

    Initial debianization
---
 debian/changelog                           |  5 ++++
 debian/compat                              |  1 +
 debian/control                             | 30 +++++++++++++++++++++++
 debian/copyright                           | 38 ++++++++++++++++++++++++++++++
 debian/lib-ros-filters-plugins-dev.install |  4 ++++
 debian/lib-ros-filters-plugins.install     |  2 ++
 debian/rules                               |  9 +++++++
 debian/source/format                       |  1 +
 debian/watch                               | 10 ++++++++
 9 files changed, 100 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..83b9309
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+ros-filters (1.7.4-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Jochen Sprickerhof <debian at jochen.sprickerhof.de>  Sun, 03 Jan 2016 22:16:30 +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..aa9fc8d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: ros-filters
+Section: libs
+Priority: optional
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Thomas Moulard <thomas.moulard at gmail.com>,
+           Jochen Sprickerhof <debian at jochen.sprickerhof.de>,
+           Leopold Palomo-Avellaneda <leo at alaxarxa.net>
+Build-Depends: debhelper (>= 9), catkin
+Standards-Version: 3.9.6
+Homepage: http://wiki.ros.org/filters
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/ros/ros-filters.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/ros/ros-filters.git
+
+Package: lib-ros-filters-plugins-dev
+Architecture: all
+Depends: ${misc:Depends}
+Description: Filter plugins the Robot OS driver framework
+ This package is part of Robot OS (ROS). This library provides a standardized
+ interface for processing data as a sequence of filters. This package contains
+ a base class upon which to build specific implementations as well as an
+ interface which dynamically loads filters based on runtime parameters.
+
+Package: lib-ros-filters-plugins
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: Filter plugins the Robot OS driver framework
+ This package is part of Robot OS (ROS). This library provides a standardized
+ interface for processing data as a sequence of filters. This package contains
+ a base class upon which to build specific implementations as well as an
+ interface which dynamically loads filters based on runtime parameters.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..92159ca
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ros-filters
+Source: <url://example.com>
+
+Files: *
+Copyright: <years> <put author's name and email here>
+           <years> <likewise for another author>
+License: <special license>
+ <Put the license of the package here indented by 1 space>
+ <This follows the format of Description: lines in control file>
+ .
+ <Including paragraphs>
+
+# If you want to use GPL v2 or later for the /debian/* files use 
+# the following clauses, or change it to suit. Delete these two lines
+Files: debian/*
+Copyright: 2016 Jochen Sprickerhof <debian at jochen.sprickerhof.de>
+License: GPL-2+
+ This package 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.
+ .
+ This package 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 this program. If not, see <https://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.
+# Please avoid picking licenses with terms that are more restrictive than the
+# packaged work, as it may make Debian's contributions unacceptable upstream.
diff --git a/debian/lib-ros-filters-plugins-dev.install b/debian/lib-ros-filters-plugins-dev.install
new file mode 100644
index 0000000..cdc23b4
--- /dev/null
+++ b/debian/lib-ros-filters-plugins-dev.install
@@ -0,0 +1,4 @@
+usr/include
+usr/lib/*/pkgconfig usr/lib
+usr/share/filters/package.xml
+usr/share/filters/cmake
diff --git a/debian/lib-ros-filters-plugins.install b/debian/lib-ros-filters-plugins.install
new file mode 100644
index 0000000..dd0e95f
--- /dev/null
+++ b/debian/lib-ros-filters-plugins.install
@@ -0,0 +1,2 @@
+usr/lib/*/*.so
+usr/share/filters/default_plugins.xml
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..1444a05
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+%:
+	dh $@ 
+
+# test suite is broken atm.
+override_dh_auto_test:
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..11eb79a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,10 @@
+# Watch control file for uscan
+# Compulsory line, this is a version 3 file
+version=3
+# For GitHub projects you can use the tags page:
+
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/filters-$1\.tar\.gz/ \
+  https://github.com/ros/filters/releases .*/v?(\d\S*)\.tar\.gz
+
+
+

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



More information about the debian-science-commits mailing list