Skip to content

Commit

Permalink
Temporarily undo remove ROS package mrpt2
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Aug 5, 2024
1 parent fca04ca commit a5559ba
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 12 deletions.
Empty file removed CATKIN_IGNORE
Empty file.
Empty file removed COLCON_IGNORE
Empty file.
7 changes: 0 additions & 7 deletions COLCON_IGNORE.README

This file was deleted.

6 changes: 1 addition & 5 deletions doc/source/doxygen-docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
\page changelog Change Log

# Version 2.13.5: UNRELEASED
# Version 2.13.5: Released Aug 5th, 2024
- Changes in libraries:
- \ref mrpt_ros2bridge_grp:
- mrpt::ros2bridge::toROS() conversion from `PointCloud2` to mrpt::maps::CPointsMapXYZIRT:
- Recognize timestamp field names `"t"` and `"timestamp"`, apart of `"time"`.
- Fixed detection of timestamp fields in `Float64` format, and convert them from absolute to relative timestamps.
- Build system:
- This main MRPT repository is no longer directly built as a ROS package. Please, use the wrappers for better modularity:
- https://github.com/MRPT/mrpt_ros
- https://github.com/MRPT/python_mrpt_ros
- BUG FIXES:
- ros1bridge and ros2bridge: fix conversion to PointCloud XYZI.

Expand Down
89 changes: 89 additions & 0 deletions package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<!-- This is a ROS package file, intended to allow MRPT 2.x to be built
side-by-side to real ROS packages in a catkin/ament environment.
Real MRPT ROS packages are found elsewhere: https://github.com/mrpt-ros-pkg
-->
<package format="3">
<name>mrpt2</name>
<!-- Before updating version number, read [MRPT_ROOT]/version_prefix.txt first -->
<version>2.13.5</version>
<description>Mobile Robot Programming Toolkit (MRPT) version 2.x</description>

<author email="joseluisblancoc@gmail.com">Jose-Luis Blanco-Claraco</author>
<maintainer email="joseluisblancoc@gmail.com">Jose-Luis Blanco-Claraco</maintainer>

<url type="website">https://www.mrpt.org/</url>
<url type="bugtracker">https://github.com/MRPT/mrpt/issues</url>

<license>BSD</license>

<!-- Deps required by user code (they are in public headers or built as ROS (vs system) packages -->
<depend>eigen</depend>
<depend>geometry_msgs</depend>
<depend>glut</depend>
<depend>libglfw3-dev</depend>
<depend>libxrandr</depend>
<depend>libxxf86vm</depend>
<depend>nav_msgs</depend>
<depend>opengl</depend>
<depend>sensor_msgs</depend>
<depend>std_msgs</depend>
<depend>stereo_msgs</depend>
<depend>suitesparse</depend>
<depend>tf2_msgs</depend>
<depend>tf2</depend>

<!-- COMMON DEPS: This ensures we have ROS_DISTRO, etc. env vars -->
<build_depend>ros_environment</build_depend>

<!-- Deps required by building only -->
<build_depend>assimp-dev</build_depend>
<build_depend>ffmpeg</build_depend>
<build_depend>libfreenect-dev</build_depend>
<build_depend condition="$ROS_VERSION == 2">libfyaml-dev</build_depend>
<build_depend>libjpeg</build_depend>
<build_depend>libjsoncpp-dev</build_depend>
<build_depend>libopenni2-dev</build_depend>
<build_depend>libpcap</build_depend>
<build_depend>libudev-dev</build_depend>
<build_depend>libusb-1.0-dev</build_depend>
<build_depend>pkg-config</build_depend>
<build_depend>pybind11-dev</build_depend>
<build_depend>python3-pip</build_depend>
<build_depend>tinyxml2</build_depend>
<build_depend>wx-common</build_depend>
<build_depend>wxwidgets</build_depend>
<build_depend>zlib</build_depend>

<!-- <build_depend>libqt5-opengl-dev</build_depend> -->
<!-- <build_depend>qtbase5-dev</build_depend> -->

<!-- Required for cmake scripts to find ament_cmake and then realize we are in ROS 2, not ROS 1 -->
<build_depend condition="$ROS_VERSION == 2">ament_cmake</build_depend>

<!-- Deps for ros1bridge/ros2bridge -->
<depend>cv_bridge</depend>
<depend>libopencv-dev</depend>
<depend>liboctomap-dev</depend>
<!--<depend>pcl_conversions</depend> WAS: To run unit tests only -->

<depend condition="$ROS_VERSION == 1">rosbag_storage</depend>
<depend condition="$ROS_VERSION == 2">rosbag2_storage</depend>
<depend condition="$ROS_VERSION == 1">roscpp</depend>
<depend condition="$ROS_VERSION == 2">rclcpp</depend>

<!-- for rosbag2rawlog (ROS 1 only, ROS 2 version lives in the mrpt_navigation repository) -->
<depend condition="$ROS_VERSION == 1">tf2_geometry_msgs</depend>

<doc_depend>doxygen</doc_depend>

<!-- Minimum entries to release non-catkin pkgs: -->
<buildtool_depend>cmake</buildtool_depend>
<export>
<build_type>cmake</build_type>
<rosdoc config="doc/rosdoc.yaml" />
</export>
<!-- End -->

</package>

0 comments on commit a5559ba

Please sign in to comment.