Skip to content

Commit 12b8e41

Browse files
author
Felix Exner (fexner)
authored
Update branch of support repo for noetic (#724)
* Update branch of support repo for noetic * Add ur_msgs to noetic upstream workspace * Update installation instructions on README
1 parent b70c5b2 commit 12b8e41

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.noetic.rosinstall

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
- git:
22
uri: https://github.com/ros-industrial/universal_robot.git
33
local-name: universal_robot
4-
version: melodic-devel
4+
version: noetic-devel
5+
- git:
6+
uri: https://github.com/ros-industrial/ur_msgs.git
7+
local-name: ur_msgs
8+
version: noetic-devel

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,16 @@ $ mkdir -p catkin_ws/src && cd catkin_ws
125125
# clone the driver
126126
$ git clone https://github.com/UniversalRobots/Universal_Robots_ROS_Driver.git src/Universal_Robots_ROS_Driver
127127

128-
# clone the description. Currently, it is necessary to use the melodic-devel branch.
129-
$ git clone -b melodic-devel https://github.com/ros-industrial/universal_robot.git src/universal_robot
128+
# Install vcstool
129+
$ sudo apt update -qq
130+
$ sudo apt install python3-vcstool
131+
132+
# clone the direct dependencies. As the latest version might require the latest upstream version,
133+
# we'll build things from source. Note: This does not include the client library. If there are API
134+
# changes there, you might have to use the all-source build as explained below.
135+
$ vcs import --input src/Universal_Robots_ROS_Driver/.noetic.rosinstall src
130136

131137
# install dependencies
132-
$ sudo apt update -qq
133138
$ rosdep update
134139
$ rosdep install --from-paths src --ignore-src -y
135140

@@ -149,9 +154,10 @@ build`](https://catkin-tools.readthedocs.io/en/latest/verbs/catkin_build.html).
149154
$ source /opt/ros/<your_ros_version>/setup.bash
150155
$ mkdir -p catkin_ws/src && cd catkin_ws
151156
$ git clone https://github.com/UniversalRobots/Universal_Robots_Client_Library.git src/Universal_Robots_Client_Library
152-
$ git clone https://github.com/UniversalRobots/Universal_Robots_ROS_Driver.git src/Universal_Robots_ROS_Driver
153-
$ git clone -b melodic-devel https://github.com/ros-industrial/universal_robot.git src/universal_robot
154157
$ sudo apt update -qq
158+
$ sudo apt install python3-vcstool
159+
$ vcs import --input src/Universal_Robots_ROS_Driver/.noetic.rosinstall src
160+
$ git clone https://github.com/UniversalRobots/Universal_Robots_ROS_Driver.git src/Universal_Robots_ROS_Driver
155161
$ rosdep update
156162
$ rosdep install --from-paths src --ignore-src -y
157163
$ catkin_make_isolated

0 commit comments

Comments
 (0)