[random_numbers] 01/01: Initial Debianization

Jochen Sprickerhof jspricke-guest at moszumanska.debian.org
Wed Aug 5 06:36:51 UTC 2015


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

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

commit a3e9e63b20fa2788e65b6463e5cf2219ac35f5e5
Author: Jochen Sprickerhof <git at jochen.sprickerhof.de>
Date:   Wed Aug 5 08:35:40 2015 +0200

    Initial Debianization
---
 debian/changelog                                   |  5 +++
 debian/compat                                      |  1 +
 debian/control                                     | 37 +++++++++++++++++++
 debian/copyright                                   | 43 ++++++++++++++++++++++
 debian/librandom-numbers-dev.install               |  5 +++
 debian/librandom-numbers0d.install                 |  1 +
 .../0001-Add-Debian-specific-SOVERSION.patch       | 20 ++++++++++
 debian/patches/series                              |  1 +
 debian/rules                                       | 22 +++++++++++
 debian/source/format                               |  1 +
 debian/watch                                       | 10 +++++
 11 files changed, 146 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3d1ed5e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+random-numbers (0.3.0-1) unstable; urgency=medium
+
+  * Initial release (Closes: ######)
+
+ -- Jochen Sprickerhof <debian at jochen.sprickerhof.de>  Tue, 04 Aug 2015 22:11:08 +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..bdb59ba
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,37 @@
+Source: random-numbers
+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), dh-exec (>=0.3),
+Standards-Version: 3.9.6
+Section: libs
+Homepage: http://wiki.ros.org/random_numbers
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/ros/random-numbers.git
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/ros/random-numbers.git
+
+Package: librandom-numbers-dev
+Section: libdevel
+Architecture: any
+Depends: librandom-numbers0d (= ${binary:Version}), ${misc:Depends}
+Description: ROS random_numbers package - development files 
+ This library contains wrappers for generating floating point values, integers,
+ quaternions using boost libraries. The constructor of the wrapper is
+ guaranteed to be thread safe and initialize its random number generator to a
+ random seed. Seeds are obtained using a separate and different random number
+ generator.
+ .
+ This package contains the development files.
+
+Package: librandom-numbers0d
+Architecture: any
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: ROS random_numbers package
+ This library contains wrappers for generating floating point values, integers,
+ quaternions using boost libraries. The constructor of the wrapper is
+ guaranteed to be thread safe and initialize its random number generator to a
+ random seed. Seeds are obtained using a separate and different random number
+ generator.
+ .
+ This package contains the library itself.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2b26ed8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,43 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: random_numbers
+Upstream-Contact: Ioan Sucan <isucan at willowgarage.com>
+Source: http://wiki.ros.org/random_numbers
+
+Files: *
+Copyright: 2008-2015 Willow Garage, Inc.
+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:
+ .
+  * 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 Willow Garage, Inc. 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: 2015, Thomas Moulard <thomas.moulard at gmail.com>,
+                 Jochen Sprickerhof <debian at jochen.sprickerhof.de>,
+           	 Leopold Palomo-Avellaneda <leo at alaxarxa.net>
+License: BSD-3-clause
+ 
diff --git a/debian/librandom-numbers-dev.install b/debian/librandom-numbers-dev.install
new file mode 100755
index 0000000..3e9d46f
--- /dev/null
+++ b/debian/librandom-numbers-dev.install
@@ -0,0 +1,5 @@
+#! /usr/bin/dh-exec
+usr/include
+usr/lib/lib*.so
+usr/lib/pkgconfig/*.pc usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig/
+usr/share
diff --git a/debian/librandom-numbers0d.install b/debian/librandom-numbers0d.install
new file mode 100644
index 0000000..d0dbfd1
--- /dev/null
+++ b/debian/librandom-numbers0d.install
@@ -0,0 +1 @@
+usr/lib/lib*.so.*
diff --git a/debian/patches/0001-Add-Debian-specific-SOVERSION.patch b/debian/patches/0001-Add-Debian-specific-SOVERSION.patch
new file mode 100644
index 0000000..65bc786
--- /dev/null
+++ b/debian/patches/0001-Add-Debian-specific-SOVERSION.patch
@@ -0,0 +1,20 @@
+From: Jochen Sprickerhof <git at jochen.sprickerhof.de>
+Date: Wed, 5 Aug 2015 08:34:19 +0200
+Subject: Add Debian specific SOVERSION
+
+---
+ CMakeLists.txt | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index a704301..45a7799 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -17,6 +17,7 @@ add_library(${PROJECT_NAME}
+   src/random_numbers.cpp)
+ 
+ target_link_libraries(${PROJECT_NAME} ${Boost_LIBRARIES})
++set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${random_numbers_VERSION} SOVERSION "0d")
+ 
+ install(TARGETS ${PROJECT_NAME}
+         ARCHIVE DESTINATION lib
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..6eac731
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Add-Debian-specific-SOVERSION.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..89c2992
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,22 @@
+#!/usr/bin/make -f
+# See debhelper(7) (uncomment to enable)
+# output every command that modifies files on the build system.
+#DH_VERBOSE = 1
+
+# see EXAMPLES in dpkg-buildflags(1) and read /usr/share/dpkg/*
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/default.mk
+
+# see FEATURE AREAS in dpkg-buildflags(1)
+#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+# see ENVIRONMENT in dpkg-buildflags(1)
+# package maintainers to append CFLAGS
+#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
+# package maintainers to append LDFLAGS
+#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+
+
+# main packaging script based on dh7 syntax
+%:
+	dh $@ --parallel --buildsystem=cmake
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..d8a6dbb
--- /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/random_numbers-$1\.tar\.gz/ \
+  https://github.com/ros-planning/random_numbers/releases .*/v?(\d\S*)\.tar\.gz
+
+
+

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



More information about the debian-science-commits mailing list