[SCM] catkin branch, master, updated. upstream/0.5.67-1-gbd25f21

Thomas Moulard thomas.moulard at gmail.com
Wed Jun 19 05:02:30 UTC 2013


The following commit has been merged in the master branch:
commit bd25f216333f79c533fa7e056f4ce0b98d564437
Author: Thomas Moulard <thomas.moulard at gmail.com>
Date:   Wed Jun 19 11:37:58 2013 +0900

    Initial debianization.

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..cc89118
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+catkin (0.5.67-1) unstable; urgency=low
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Thomas Moulard <thomas.moulard at gmail.com>  Wed, 19 Jun 2013 11:28:40 +0900
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..0ff6c3d
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,24 @@
+Source: catkin
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Thomas Moulard <thomas.moulard at gmail.com>
+Section: libs
+Priority: extra
+Build-Depends: debhelper (>= 9),
+	       python,
+	       catkin-pkg
+Standards-Version: 3.9.4
+Vcs-Browser: http://git.debian.org/?p=debian-science/packages/ros/catkin.git
+Vcs-Git: git://git.debian.org/debian-science/packages/ros/catkin.git
+Homepage: http://www.ros.org/wiki/catkin
+X-Python-Version: >= 2.7
+
+Package: catkin
+Architecture: all
+Depends: python,
+	 catkin-pkg,
+	 ${misc:Depends}
+Multi-Arch: foreign
+Description: Low-level build system macros and infrastructure for ROS
+ Catkin contains CMake macros that are useful in the development of
+ ROS-related systems. In ROS Fuerte and later, many of the lower-level
+ ROS libraries are being migrated to be CMake only.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3017bfa
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,64 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: catkin
+Upstream-Contact: Dirk Thomas <dthomas at osrfoundation.org>
+Source: https://github.com/ros/catkin/tags
+
+Files: *
+Copyright: Dirk Thomas <dthomas at osrfoundation.org>
+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:
+ .
+  * Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+  * 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.
+  * Neither the name of copyright holder 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 OWNER 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.
+
+Files: debian/*
+Copyright: 2013, Thomas Moulard <thomas.moulard at gmail.com>
+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:
+ .
+  * Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+  * 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.
+  * Neither the name of copyright holder 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 OWNER 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/docs b/debian/docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ad1c596
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+%:
+	dh  $@ --parallel --buildsystem=cmake
+
+override_dh_auto_clean:
+	dh_auto_clean --
+	-rm -rf build
+	-find . -name '*.pyc' -print0 | xargs -0 rm -f
+
+override_dh_auto_install:
+	dh_auto_install --
+	mv debian/catkin/usr/etc debian/catkin/etc
+	-rm -f debian/catkin/usr/*.*
+	-rm -f debian/catkin/usr/.*
+	-rm -f debian/catkin/usr/share/catkin/cmake/templates/script.in
+	-find debian/catkin -name '*.pyc' -print0 | xargs -0 rm -f
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..a35eeca
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+https://github.com/ros/catkin/tags \
+(?:.*/|)v?(\d\S*)\.(?:tar\.(?:gz|bz2|xz)|tgz|tbz2|txz)
+# Bart Martens <bartm at debian.org> 2013-06-12 18:38:20
\ No newline at end of file

-- 
catkin



More information about the debian-science-commits mailing list