Skip to content

Commit

Permalink
split to two ros packages
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Sep 16, 2023
1 parent 7a33dc1 commit f3495f9
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 28 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ros_package_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ on:
push:
branches: [ 1.5 ]

pull_request:
branches: [ 1.5 ]

workflow_dispatch:

concurrency:
Expand Down
15 changes: 0 additions & 15 deletions CMakeLists.txt

This file was deleted.

4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,6 @@ Some of those are forks of third party repositories.
| [Object detection](https://github.com/ctu-mrs/object_detect) | Object detection by color segmentation | [![Build Status](https://github.com/ctu-mrs/object_detect/workflows/Noetic/badge.svg)](https://github.com/ctu-mrs/object_detect/actions) |
| [MRS utils](https://github.com/ctu-mrs/mrs_utils) | Development utils | [![Build Status](https://github.com/ctu-mrs/mrs_utils/workflows/Noetic/badge.svg)](https://github.com/ctu-mrs/mrs_utils/actions) |
| [OctomapTools](https://github.com/ctu-mrs/octomap_tools) | Octomap visualization and manipulation | |
| [MBZIRC 2020 - Wall Building](https://github.com/ctu-mrs/mbzirc_2020_wall_building) | System for automatic wall-building for MBZIRC 2020 | [![Build Status](https://github.com/ctu-mrs/mbzirc_2020_wall_building/workflows/Noetic/badge.svg)](https://github.com/ctu-mrs/mbzirc_2020_wall_building/actions) |
| [Summer School 2019](https://github.com/ctu-mrs/mtsp_planning_task) | Summer School 2019 task - MTSP planning | [![Build Status](https://github.com/ctu-mrs/mtsp_planning_task/workflows/Noetic/badge.svg)](https://github.com/ctu-mrs/mtsp_planning_task/actions) |
| [Summer School 2020](https://github.com/ctu-mrs/leader_follower_task) | Summer School 2020 task - UVDAR leader-follower | [![Build Status](https://github.com/ctu-mrs/leader_follower_task/workflows/Noetic/badge.svg)](https://github.com/ctu-mrs/leader_follower_task/actions) |
| [Summer School 2022](https://github.com/ctu-mrs/summer-school-2022) | Summer School 2022 task - Multirobotic inspection and monitoring | [![Build Status](https://github.com/ctu-mrs/summer-school-2022/workflows/Focal/badge.svg)](https://github.com/ctu-mrs/leader_follower_task/actions) |

## Backwards compatibility and updates

Expand Down
6 changes: 6 additions & 0 deletions ros_packages/mrs_uav_system/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.5)
project(mrs_uav_system)

find_package(catkin REQUIRED)

catkin_metapackage()
23 changes: 23 additions & 0 deletions ros_packages/mrs_uav_system/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0"?>
<package format="2">

<name>mrs_uav_system</name>
<version>1.0.0</version>
<description>The MRS UAV System metapackage</description>

<author email="[email protected]">Tomas Baca</author>
<maintainer email="[email protected]">Tomas Baca</maintainer>

<license>BSD 3-Clause</license>

<buildtool_depend>catkin</buildtool_depend>

<exec_depend>mrs_uav_core</exec_depend>
<exec_depend>mrs_uav_modules</exec_depend>
<exec_depend>python-is-python3</exec_depend>

<export>
<metapackage/>
</export>

</package>
7 changes: 7 additions & 0 deletions ros_packages/mrs_uav_system_full/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 3.5)
project(mrs_uav_system_full)

find_package(catkin REQUIRED)

catkin_metapackage()

12 changes: 6 additions & 6 deletions package.xml → ros_packages/mrs_uav_system_full/package.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<package format="2">

<name>mrs_uav_system</name>
<name>mrs_uav_system_full</name>
<version>1.0.0</version>
<description>The MRS UAV System metapackage</description>
<description>The MRS UAV System Full metapackage</description>

<author email="[email protected]">Tomas Baca</author>
<maintainer email="[email protected]">Tomas Baca</maintainer>
Expand All @@ -12,17 +12,17 @@

<buildtool_depend>catkin</buildtool_depend>

<depend>cmake_modules</depend>
<depend>rospy</depend>

<exec_depend>mrs_uav_core</exec_depend>
<exec_depend>mrs_uav_gazebo_simulation</exec_depend>
<exec_depend>mrs_uav_deployment</exec_depend>
<exec_depend>mrs_uav_modules</exec_depend>
<exec_depend>mrs_octomap_mapping_planning</exec_depend>

<exec_depend>mrs_uav_px4_api</exec_depend>
<exec_depend>mrs_uav_dji_tello_api</exec_depend>

<exec_depend>python-is-python3</exec_depend>
<export>
<metapackage/>
</export>

</package>

0 comments on commit f3495f9

Please sign in to comment.