Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Nov 2018 07:36:32 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r485415 - in head/misc: . console-bridge console-bridge/files
Message-ID:  <201811200736.wAK7aWgt007491@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Nov 20 07:36:31 2018
New Revision: 485415
URL: https://svnweb.freebsd.org/changeset/ports/485415

Log:
  New port: misc/console-bridge: Package for logging that seamlessly pipes into rosconsole

Added:
  head/misc/console-bridge/
  head/misc/console-bridge/Makefile   (contents, props changed)
  head/misc/console-bridge/distinfo   (contents, props changed)
  head/misc/console-bridge/files/
  head/misc/console-bridge/files/patch-CMakeLists.txt   (contents, props changed)
  head/misc/console-bridge/pkg-descr   (contents, props changed)
  head/misc/console-bridge/pkg-plist   (contents, props changed)
Modified:
  head/misc/Makefile

Modified: head/misc/Makefile
==============================================================================
--- head/misc/Makefile	Tue Nov 20 07:15:29 2018	(r485414)
+++ head/misc/Makefile	Tue Nov 20 07:36:31 2018	(r485415)
@@ -53,6 +53,7 @@
     SUBDIR += compat7x
     SUBDIR += compat8x
     SUBDIR += compat9x
+    SUBDIR += console-bridge
     SUBDIR += countrycodes
     SUBDIR += cpuid
     SUBDIR += crosspad

Added: head/misc/console-bridge/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/console-bridge/Makefile	Tue Nov 20 07:36:31 2018	(r485415)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	console-bridge
+DISTVERSION=	0.4.1
+CATEGORIES=	misc
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	Package for logging that seamlessly pipes into rosconsole
+
+LICENSE=	BSD3CLAUSE
+
+USES=		cmake:outsource compiler:c++11-lang
+USE_GITHUB=	yes
+GH_ACCOUNT=	ros
+GH_PROJECT=	${PORTNAME:S/-/_/}
+USE_LDCONFIG=	yes
+
+do-test:
+	@cd ${BUILD_WRKSRC} && \
+		${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DDO_TESTING=ON ${CMAKE_SOURCE_PATH} && \
+		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
+		${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test
+
+.include <bsd.port.mk>

Added: head/misc/console-bridge/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/console-bridge/distinfo	Tue Nov 20 07:36:31 2018	(r485415)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1542698884
+SHA256 (ros-console_bridge-0.4.1_GH0.tar.gz) = 9016f538784cb762c48bb96d9ef2215f9d057ca9e13134565396fddbcde6b937
+SIZE (ros-console_bridge-0.4.1_GH0.tar.gz) = 254004

Added: head/misc/console-bridge/files/patch-CMakeLists.txt
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/console-bridge/files/patch-CMakeLists.txt	Tue Nov 20 07:36:31 2018	(r485415)
@@ -0,0 +1,12 @@
+--- CMakeLists.txt.orig	2018-11-20 07:33:37 UTC
++++ CMakeLists.txt
+@@ -116,5 +116,7 @@ SET_DIRECTORY_PROPERTIES(PROPERTIES
+   ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/console_bridge-config.cmake
+   ADDITIONAL_MAKE_CLEAN_FILES ${CMAKE_BINARY_DIR}/console_bridge.pc)
+ 
+-enable_testing()
+-add_subdirectory(test)
++if (DO_TESTING)
++    enable_testing()
++    add_subdirectory(test)
++endif()

Added: head/misc/console-bridge/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/console-bridge/pkg-descr	Tue Nov 20 07:36:31 2018	(r485415)
@@ -0,0 +1,4 @@
+A ROS-independent package for logging that seamlessly pipes into
+rosconsole/rosout for ROS-dependent packages.
+
+WWW: https://github.com/ros/console_bridge

Added: head/misc/console-bridge/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/misc/console-bridge/pkg-plist	Tue Nov 20 07:36:31 2018	(r485415)
@@ -0,0 +1,9 @@
+include/console_bridge/console.h
+include/console_bridge_export.h
+lib/console_bridge/cmake/console_bridge-config-version.cmake
+lib/console_bridge/cmake/console_bridge-config.cmake
+lib/console_bridge/cmake/console_bridge-targets-%%CMAKE_BUILD_TYPE%%.cmake
+lib/console_bridge/cmake/console_bridge-targets.cmake
+lib/libconsole_bridge.so
+lib/libconsole_bridge.so.0.4
+libdata/pkgconfig/console_bridge.pc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811200736.wAK7aWgt007491>