Skip to content

Commit b65b99f

Browse files
Merge pull request #337 from wentywenty/main
Add a series of packages
2 parents 1805017 + 52e54c9 commit b65b99f

4 files changed

Lines changed: 46 additions & 0 deletions

File tree

patch/dependencies.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,11 @@ wasm_cpp:
264264
aws_sdk_cpp_vendor:
265265
add_host: ["aws-sdk-cpp"]
266266
add_run: ["aws-sdk-cpp"]
267+
polygon_rviz_plugins:
268+
add_host: ["libgl-devel"]
269+
add_run: ["libgl-devel"]
270+
py_trees:
271+
add_host: ["poetry-core"]
267272
# Workaround for https://github.com/frankarobotics/franka_ros2/pull/169
268273
franka_hardware:
269274
add_host: ["ros-humble-rclcpp-action", "ros-humble-rclcpp-components"]

patch/ros-humble-color-util.patch

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
diff --git a/CMakeLists.txt b/CMakeLists.txt
2+
index bc98189..71ce465 100644
3+
--- a/CMakeLists.txt
4+
+++ b/CMakeLists.txt
5+
@@ -19,6 +19,9 @@ find_package(ament_cmake REQUIRED)
6+
find_package(std_msgs REQUIRED)
7+
8+
add_library(color_util src/convert.cpp)
9+
+if(WIN32 AND MSVC)
10+
+ set_target_properties(color_util PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)
11+
+endif()
12+
target_include_directories(color_util PUBLIC
13+
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
14+
$<INSTALL_INTERFACE:include>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
diff --git a/CMakeLists.txt b/CMakeLists.txt
2+
index bc98189..71ce465 100644
3+
--- a/CMakeLists.txt
4+
+++ b/CMakeLists.txt
5+
@@ -19,6 +19,9 @@ find_package(geometry_msgs REQUIRED)
6+
find_package(polygon_msgs REQUIRED)
7+
8+
add_library(polygon_utils src/polygon_utils.cpp)
9+
+if(WIN32 AND MSVC)
10+
+ set_target_properties(polygon_utils PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)
11+
+endif()
12+
target_include_directories(polygon_utils PUBLIC
13+
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
14+
$<INSTALL_INTERFACE:include>

vinca.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ packages_skip_by_deps:
5252
- osrf_testing_tools_cpp
5353
- if: win
5454
then:
55+
- rclc_examples
5556
# Modern gz-sim integration is not supported on Humble on Windows, please
5657
# look to Jazzy or Kilted if you are interested in it, see
5758
# https://github.com/RoboStack/ros-humble/issues/68
@@ -93,6 +94,7 @@ packages_remove_from_deps:
9394
- osrf_testing_tools_cpp
9495
- if: win
9596
then:
97+
- rclc_examples
9698
# Modern gz-sim integration is not supported on Humble on Windows, please
9799
# look to Jazzy or Kilted if you are interested in it, see
98100
# https://github.com/RoboStack/ros-humble/issues/68
@@ -317,6 +319,17 @@ packages_select_by_deps:
317319
- imu_tools
318320
- rplidar_ros
319321
- vector_pursuit_controller
322+
- imu_transformer
323+
- imu_calib
324+
- polygon_msgs
325+
- polygon_utils
326+
- color_util
327+
- rclc_parameter
328+
- rclc_lifecycle
329+
- rclc_examples
330+
- ptz_action_server_msgs
331+
- py_trees
332+
320333
# Requested in https://github.com/RoboStack/ros-humble/issues/345
321334
- topic_based_ros2_control
322335
# IntelRealSense

0 commit comments

Comments
 (0)