debian/0000755000000000000000000000000012265541624007175 5ustar debian/control0000644000000000000000000000403512265541374010604 0ustar Source: console-bridge Maintainer: Debian Science Maintainers Uploaders: Thomas Moulard , Jose Luis Rivero Section: libs Priority: extra Build-Depends: debhelper (>= 9), cmake, libboost-thread-dev, libboost-system-dev Standards-Version: 3.9.5 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/console-bridge.git Vcs-Git: git://anonscm.debian.org/debian-science/packages/console-bridge.git Homepage: https://github.com/ros/console_bridge XS-Testsuite: autopkgtest Package: libconsole-bridge0.2 Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Pre-Depends: ${misc:Pre-Depends} Multi-Arch: same Description: console bridge - library ROS-independent, pure CMake (i.e. non-catkin and non-rosbuild package) that provides logging calls that mirror those found in rosconsole, but for applications that are not necessarily using ROS. . This package contains the dynamic library. Package: libconsole-bridge-dev Architecture: any Section: libdevel Depends: libboost-thread-dev, libboost-system-dev, libconsole-bridge0.2 (= ${binary:Version}), pkg-config, ${misc:Depends} Multi-Arch: same Description: console bridge - development files ROS-independent, pure CMake (i.e. non-catkin and non-rosbuild package) that provides logging calls that mirror those found in rosconsole, but for applications that are not necessarily using ROS. . This package contains the development files (headers, pkg-config and CMake files). Package: libconsole-bridge0.2-dbg Architecture: any Section: debug Depends: libconsole-bridge0.2 (= ${binary:Version}), ${misc:Depends} Multi-Arch: same Description: console bridge - debugging symbols ROS-independent, pure CMake (i.e. non-catkin and non-rosbuild package) that provides logging calls that mirror those found in rosconsole, but for applications that are not necessarily using ROS. . This package contains the debugging symbols for the shared libraries. debian/watch0000644000000000000000000000022212263317663010224 0ustar version=3 opts=filenamemangle=s/.+\/v?(.*)\.tar\.gz/-$1.tar.gz/ \ https://github.com/ros/console_bridge/tags .*/v?(\d[\d\.]+)\.tar\.gz debian/rules0000755000000000000000000000043612265541374010262 0ustar #!/usr/bin/make -f # -*- makefile -*- .PHONY: override_dh_auto_clean override_dh_strip %: dh $@ --parallel override_dh_auto_clean: rm -f console_bridge-config.cmake rm -f console_bridge.pc dh_auto_clean -- override_dh_strip: dh_strip -a --dbg-package=libconsole-bridge0.2-dbg debian/copyright0000644000000000000000000000675212263317663011144 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: console_bridge Upstream-Contact: Ioan Sucan Source: https://github.com/ros/console_bridge/tags Files: * Copyright: 2008, Willow Garage, Inc. License: BSD-3-clause Software License Agreement (BSD License) . Copyright (c) 2008, Willow Garage, Inc. All rights reserved. . 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 the Willow Garage 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 License: BSD-3-clause Software License Agreement (BSD License) . Copyright (c) 2013, Thomas Moulard All rights reserved. . 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 the Willow Garage 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. debian/tests/0000755000000000000000000000000012263317663010341 5ustar debian/tests/control0000644000000000000000000000007512263317663011746 0ustar Tests: build Depends: libconsole-bridge-dev, build-essential debian/tests/build0000755000000000000000000000116212263317663011366 0ustar #!/bin/sh # autopkgtest check: Build and run a program against console-bridge, # to verify that the headers and pkg-config file are installed # correctly # (C) 2013 Thomas Moulard # Author: Thomas Moulard set -e WORKDIR=$(mktemp -d) trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM cd $WORKDIR cat < consolebridgetest.cpp #include int main() { logInform ("test"); return 0; } EOF g++ -o consolebridgetest consolebridgetest.cpp \ `pkg-config --cflags --libs console_bridge` echo "build: OK" [ -x consolebridgetest ] ./consolebridgetest echo "run: OK" debian/libconsole-bridge0.2.install0000644000000000000000000000002112263317663014363 0ustar usr/lib/*/*.so.* debian/patches/0000755000000000000000000000000012263317663010626 5ustar debian/patches/0001-Fix-pkg-config-file-to-respect-prefix-variable.patch0000644000000000000000000000157212263317663023060 0ustar From: Jose Luis Rivero Date: Wed, 4 Dec 2013 00:45:15 +0100 Subject: Fix pkg-config file to respect ${prefix} variable Forwarded: yes Bug: https://github.com/ros/console_bridge/pull/11 Author: Jose Luis Rivero Author: Thomas Moulard Last-Update: 2013-12-05 --- console_bridge.pc.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/console_bridge.pc.in b/console_bridge.pc.in index 29fed3f..1e8bebc 100644 --- a/console_bridge.pc.in +++ b/console_bridge.pc.in @@ -1,8 +1,8 @@ # This file was generated by CMake for @PROJECT_NAME@ prefix=@CMAKE_INSTALL_PREFIX@ exec_prefix=${prefix} -libdir=@CMAKE_INSTALL_LIBDIR@ -includedir=@CMAKE_INSTALL_INCLUDEDIR@ +libdir=@CMAKE_INSTALL_FULL_LIBDIR@ +includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ Name: @PKG_NAME@ Description: @PKG_DESC@ debian/patches/series0000644000000000000000000000007212263317663012042 0ustar 0001-Fix-pkg-config-file-to-respect-prefix-variable.patch debian/docs0000644000000000000000000000000012263317663010040 0ustar debian/source/0000755000000000000000000000000012263317663010477 5ustar debian/source/format0000644000000000000000000000001412263317663011705 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000212263317663010375 0ustar 9 debian/changelog0000644000000000000000000000053212265541426011047 0ustar console-bridge (0.2.5-2) unstable; urgency=low * Remove symbols support -- Jose Luis Rivero Wed, 15 Jan 2014 01:34:19 +0100 console-bridge (0.2.5-1) unstable; urgency=low * Import new upstream version 0.2.5 (Closes: #714760). -- Jose Luis Rivero Wed, 4 Dec 2013 00:45:15 +0100 debian/libconsole-bridge-dev.install0000644000000000000000000000007712263317663014732 0ustar usr/include/* usr/lib/*/*.so usr/lib/*/pkgconfig/* usr/share/*