Skip to content

Commit dc233d7

Browse files
authored
feat: New targets for TAP from Biestheuvel hackathon (#243)
2 parents d89a138 + bfd8ec6 commit dc233d7

File tree

8 files changed

+39
-2
lines changed

8 files changed

+39
-2
lines changed

catkin-tools-setup/install.yaml

Lines changed: 0 additions & 2 deletions
This file was deleted.

python3-networkx/install.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- type: system
2+
name: python3-networkx

ros-ed_python/install.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- type: ros
2+
source:
3+
type: git
4+
url: https://github.com/tue-robotics/ed_python.git

ros-gazebo_plugins/install.bash

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,16 @@ then
77
rm "$TUE_SYSTEM_DIR"/src/gazebo_plugins
88
catkin clean --workspace "$TUE_SYSTEM_DIR" --orphans
99
fi
10+
11+
desired_version="2.9.2"
12+
installed_version=$(apt-cache policy ros-"$TUE_ROS_DISTRO"-gazebo-plugins | grep "Installed" | awk '{print $2}')
13+
if [ "$installed_version" == "(none)" ]
14+
then
15+
tue-install-debug "Not installed yet, so the newest version will be installed"
16+
elif version_gt "$desired_version" "$installed_version"
17+
then
18+
tue-install-echo "Going to install desired version($desired_version), current version: $installed_version"
19+
tue-install-pipe sudo apt-get install --assume-yes -q ros-"$TUE_ROS_DISTRO"-gazebo-plugins
20+
else
21+
tue-install-debug "Already on the desired version($desired_version): $installed_version"
22+
fi

ros-pykdl_ros/install.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- type: ros
2+
source:
3+
type: git
4+
url: https://github.com/tue-robotics/pykdl_ros.git
5+
sub-dir: pykdl_ros

ros-tf2_pykdl_ros/install.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- type: ros
2+
source:
3+
type: git
4+
url: https://github.com/tue-robotics/pykdl_ros.git
5+
sub-dir: tf2_pykdl_ros
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- type: ros
2+
source:
3+
type: git
4+
url: https://github.com/tue-robotics/topological_action_planner.git
5+
sub-dir: topological_action_planner
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- type: ros
2+
source:
3+
type: git
4+
url: https://github.com/tue-robotics/topological_action_planner.git
5+
sub-dir: topological_action_planner_msgs

0 commit comments

Comments
 (0)