Package Details: console-bridge 1.0.2-1

Git Clone URL: https://aur.archlinux.org/console-bridge.git (read-only, click to copy)
Package Base: console-bridge
Description: A ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages.
Upstream URL: http://www.ros.org/
Licenses: BSD
Submitter: bchretien
Maintainer: Nim65s
Last Packager: Nim65s
Votes: 12
Popularity: 0.000001
First Submitted: 2014-01-24 11:29 (UTC)
Last Updated: 2022-09-13 21:45 (UTC)

Latest Comments

ZHu commented on 2023-03-23 12:50 (UTC)

SAME AS Nim65s

set -DBUILD_TESTING=OFF can install it

hope fix

Nim65s commented on 2022-07-28 05:55 (UTC) (edited on 2022-07-28 05:56 (UTC) by Nim65s)

Hi @neoire,

I can't reproduce your issue in a clean docker, and I don't see enough information on your logs to even start looking for something.

But I can suggest a workaround: remove wget from your system before building, and as it won't be found, you'll get:

CMake Warning at test/CMakeLists.txt:89 (message):
  wget not found.  Linters will not be executed

Another workaround option is probably to comment out the -DBUILD_TESTING=ONin the PKGBUILD

neoire commented on 2022-07-28 03:31 (UTC)

Hello, I'm getting an error during build, and it's not very informative:

==> Making package: console-bridge 1.0.2-1 (Thu 28 Jul 2022 11:29:46 AM CST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found 1.0.2.tar.gz
  -> Found fix_repository_path.patch
==> Validating source files with sha256sums...
    1.0.2.tar.gz ... Passed
    fix_repository_path.patch ... Passed
==> Extracting sources...
  -> Extracting 1.0.2.tar.gz with bsdtar
==> Starting prepare()...
patching file test/CMakeLists.txt
==> Removing existing $pkgdir/ directory...
==> Starting build()...
-- console_bridge version 1.0.2
-- Found WGet: /usr/bin/wget
-- Configuring done
-- Generating done
-- Build files have been written to: /home/geoff/console-bridge/src/build-1.0.2
make[2]: *** [test/CMakeFiles/wget_cpplint.dir/build.make:70: test/CMakeFiles/wget_cpplint] Error 8
make[1]: *** [CMakeFiles/Makefile2:239: test/CMakeFiles/wget_cpplint.dir/all] Error 2
make: *** [Makefile:146: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...

Any ideas for a fix? Thanks!

Nim65s commented on 2020-09-20 08:42 (UTC)

Hi @anonumoouse,

It looks like you get this package from a third-party binary repository. This AUR page is the place for sources, and those sources are working correctly. Please contact the maintainer of your binary repo (I guess you have the correct email adress in your error message)

t3pfaffe commented on 2020-09-19 18:56 (UTC)

I am getting an invalid signature error:

error: console-bridge: signature from "Oskar Roesler (Username: bionade24) o.roesler@oscloud.info" is invalid :: File /var/cache/pacman/pkg/console-bridge-1.0.1-1-x86_64.pkg.tar.zst is corrupted (invalid or corrupted package (PGP signature)).

bionade24 commented on 2019-10-15 11:04 (UTC) (edited on 2019-10-15 11:04 (UTC) by bionade24)

Please change to arch=('any') This is enerving when I build on ARM.

majorx234 commented on 2016-11-10 15:16 (UTC)

suggestion for a new PKGBUILD version 0.3.2: # Maintainer: Benjamin Chretien <chretien at lirmm dot fr> pkgname=console-bridge pkgver=0.3.2 pkgrel=7 pkgdesc="A ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages." arch=('any') url="http://www.ros.org/" license=('BSD') depends=('boost') makedepends=('cmake') # Git version (e.g. for debugging) #_tag=master/${pkgver}-${_pkgver_patch} _tag=$pkgver _dir=${pkgname} source=("${_dir}"::"git+https://github.com/ros/console_bridge.git"#tag=${_tag}) sha256sums=('SKIP') # source=("https://github.com/ros/console_bridge/archive/${pkgver}.tar.gz") # sha256sums=('9145f0f97337fc87b4c062a4bab6874e383dad3a303486b635d31af69ee0d536') build() { # Create build directory [ -d ${srcdir}/build ] || mkdir ${srcdir}/build cd ${srcdir}/build # Build project cmake "${srcdir}/console-bridge" \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX="/usr" make } package() { cd ${srcdir}/build make DESTDIR="$pkgdir/" install # added to solve symlink issue mv $pkgdir/usr/lib64 $pkgdir/usr/lib }

majorx234 commented on 2016-11-10 15:13 (UTC) (edited on 2016-11-10 15:13 (UTC) by majorx234)

get problems after building, in installation process: error: failed to commit transaction (conflicting files) console-bridge: /usr/lib64 exists in filesystem solved it with an enhanced package() section: package() { cd ${srcdir}/build make DESTDIR="$pkgdir/" install mv $pkgdir/usr/lib64 $pkgdir/usr/lib }