-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'ROS2/rolling' into feature/inject-calla…
…bles Signed-off-by: Pintaudi Giorgio <[email protected]>
- Loading branch information
Showing
19 changed files
with
164 additions
and
42 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="2"> | ||
<name>launch_ros</name> | ||
<version>0.27.2</version> | ||
<version>0.28.0</version> | ||
<description>ROS specific extensions to the launch tool.</description> | ||
|
||
<maintainer email="[email protected]">Aditya Pande</maintainer> | ||
|
@@ -17,18 +17,19 @@ | |
<author email="[email protected]">Michel Hidalgo</author> | ||
<author email="[email protected]">William Woodall</author> | ||
|
||
<depend>ament_index_python</depend> | ||
<depend>launch</depend> | ||
<depend>lifecycle_msgs</depend> | ||
<depend>osrf_pycommon</depend> | ||
<depend>rclpy</depend> | ||
<depend>python3-importlib-metadata</depend> | ||
<depend>python3-yaml</depend> | ||
<depend>composition_interfaces</depend> | ||
<exec_depend>ament_index_python</exec_depend> | ||
<exec_depend>composition_interfaces</exec_depend> | ||
<exec_depend>launch</exec_depend> | ||
<exec_depend>lifecycle_msgs</exec_depend> | ||
<exec_depend>osrf_pycommon</exec_depend> | ||
<exec_depend>python3-importlib-metadata</exec_depend> | ||
<exec_depend>python3-yaml</exec_depend> | ||
<exec_depend>rclpy</exec_depend> | ||
|
||
<test_depend>ament_copyright</test_depend> | ||
<test_depend>ament_flake8</test_depend> | ||
<test_depend>ament_pep257</test_depend> | ||
<test_depend>ament_xmllint</test_depend> | ||
<test_depend>python3-pytest</test_depend> | ||
|
||
<export> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name=package_name, | ||
version='0.27.2', | ||
version='0.28.0', | ||
packages=find_packages(exclude=['test']), | ||
data_files=[ | ||
('share/' + package_name, ['package.xml']), | ||
|
@@ -25,8 +25,8 @@ | |
author_email='[email protected]', | ||
maintainer='Aditya Pande, Brandon Ong', | ||
maintainer_email='[email protected], [email protected]', | ||
url='https://github.com/ros2/launch', | ||
download_url='https://github.com/ros2/launch/releases', | ||
url='https://github.com/ros2/launch_ros', | ||
download_url='https://github.com/ros2/launch_ros/releases', | ||
keywords=['ROS'], | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2019 Open Source Robotics Foundation, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from ament_xmllint.main import main | ||
import pytest | ||
|
||
|
||
@pytest.mark.linter | ||
@pytest.mark.xmllint | ||
def test_xmllint(): | ||
rc = main(argv=[]) | ||
assert rc == 0, 'Found errors' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="2"> | ||
<name>launch_testing_ros</name> | ||
<version>0.27.2</version> | ||
<version>0.28.0</version> | ||
<description>A package providing utilities for writing ROS2 enabled launch tests.</description> | ||
|
||
<maintainer email="[email protected]">Aditya Pande</maintainer> | ||
|
@@ -23,6 +23,7 @@ | |
<test_depend>ament_copyright</test_depend> | ||
<test_depend>ament_flake8</test_depend> | ||
<test_depend>ament_pep257</test_depend> | ||
<test_depend>ament_xmllint</test_depend> | ||
<test_depend>python3-pytest</test_depend> | ||
<test_depend>std_msgs</test_depend> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2019 Open Source Robotics Foundation, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from ament_xmllint.main import main | ||
import pytest | ||
|
||
|
||
@pytest.mark.linter | ||
@pytest.mark.xmllint | ||
def test_xmllint(): | ||
rc = main(argv=[]) | ||
assert rc == 0, 'Found errors' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>ros2launch</name> | ||
<version>0.27.2</version> | ||
<version>0.28.0</version> | ||
<description> | ||
The launch command for ROS 2 command line tools. | ||
</description> | ||
|
@@ -19,11 +19,11 @@ | |
<author email="[email protected]">Michel Hidalgo</author> | ||
<author email="[email protected]">William Woodall</author> | ||
|
||
<depend>ament_index_python</depend> | ||
<depend>launch</depend> | ||
<depend>launch_ros</depend> | ||
<depend>ros2cli</depend> | ||
<depend>ros2pkg</depend> | ||
<exec_depend>ament_index_python</exec_depend> | ||
<exec_depend>launch</exec_depend> | ||
<exec_depend>launch_ros</exec_depend> | ||
<exec_depend>ros2cli</exec_depend> | ||
<exec_depend>ros2pkg</exec_depend> | ||
|
||
<!-- Explicit group resolution - see ros-infrastructure/catkin_pkg#369 --> | ||
<exec_depend condition="$DISABLE_GROUPS_WORKAROUND != 1">launch_xml</exec_depend> | ||
|
@@ -32,6 +32,7 @@ | |
<test_depend>ament_copyright</test_depend> | ||
<test_depend>ament_flake8</test_depend> | ||
<test_depend>ament_pep257</test_depend> | ||
<test_depend>ament_xmllint</test_depend> | ||
<test_depend>python3-pytest</test_depend> | ||
|
||
<group_depend>launch_frontend_packages</group_depend> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name=package_name, | ||
version='0.27.2', | ||
version='0.28.0', | ||
packages=find_packages(exclude=['test']), | ||
data_files=[ | ||
('share/' + package_name, ['package.xml']), | ||
|
@@ -18,8 +18,8 @@ | |
author_email='[email protected]', | ||
maintainer='Aditya Pande, Brandon Ong', | ||
maintainer_email='[email protected], [email protected]', | ||
url='https://github.com/ros2/launch/tree/master/ros2launch', | ||
download_url='https://github.com/ros2/launch/releases', | ||
url='https://github.com/ros2/launch_ros', | ||
download_url='https://github.com/ros2/launch_ros/releases', | ||
keywords=[], | ||
classifiers=[ | ||
'Environment :: Console', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2019 Open Source Robotics Foundation, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from ament_xmllint.main import main | ||
import pytest | ||
|
||
|
||
@pytest.mark.linter | ||
@pytest.mark.xmllint | ||
def test_xmllint(): | ||
rc = main(argv=[]) | ||
assert rc == 0, 'Found errors' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="2"> | ||
<name>test_launch_ros</name> | ||
<version>0.27.2</version> | ||
<version>0.28.0</version> | ||
<description>Tests for ROS specific extensions to the launch tool.</description> | ||
|
||
<maintainer email="[email protected]">Aditya Pande</maintainer> | ||
|
@@ -20,6 +20,7 @@ | |
<test_depend>ament_copyright</test_depend> | ||
<test_depend>ament_flake8</test_depend> | ||
<test_depend>ament_pep257</test_depend> | ||
<test_depend>ament_xmllint</test_depend> | ||
<test_depend>builtin_interfaces</test_depend> | ||
<test_depend>composition</test_depend> | ||
<test_depend>demo_nodes_py</test_depend> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
[pytest] | ||
junit_family=xunit2 | ||
timeout=900 | ||
timeout_method=thread |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setup( | ||
name=package_name, | ||
version='0.27.2', | ||
version='0.28.0', | ||
packages=find_packages(exclude=['test']), | ||
install_requires=[ | ||
'setuptools', | ||
|
@@ -23,8 +23,8 @@ | |
author_email='[email protected]', | ||
maintainer='Aditya Pande, Brandon Ong', | ||
maintainer_email='[email protected], [email protected]', | ||
url='https://github.com/ros2/launch', | ||
download_url='https://github.com/ros2/launch/releases', | ||
url='https://github.com/ros2/launch_ros', | ||
download_url='https://github.com/ros2/launch_ros/releases', | ||
keywords=['ROS'], | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2019 Open Source Robotics Foundation, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from ament_xmllint.main import main | ||
import pytest | ||
|
||
|
||
@pytest.mark.linter | ||
@pytest.mark.xmllint | ||
def test_xmllint(): | ||
rc = main(argv=[]) | ||
assert rc == 0, 'Found errors' |