Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Noetic build #133

Merged
merged 6 commits into from
Apr 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Please ask support questions on [ROS Answers](http://answers.ros.org/questions/)

On ROS Indigo or Jade, the `indigo-devel` branch is recommended.

On ROS Kinetic, the `master` branch is recommended.
On ROS Kinetic, Melodic and Noetic, the `master` branch is recommended.

# Development, Branch and Release Policy

Expand All @@ -32,6 +32,6 @@ The `sound_play`, `groovy-devel` and `hydro-devel` branches are from previous RO

The `indigo-devel` branch is the stable branch; only bug fixes are accepted on this branch. Periodic releases are done from `indigo-devel` into ROS Indigo and ROS Jade, with version numbers in the 0.2.x range.

The `master` branch is currently considered the development branch, and is released into ROS Kinetic with version numbers in the 0.3.x range. `master` is accepting new, non-breaking features and bug fixes.
The `master` branch is currently considered the development branch, and is released into ROS Kinetic, Melodic and Noetic with version numbers in the 0.3.x range. `master` is accepting new, non-breaking features and bug fixes.

Large, breaking changes such as changes to dependencies or the package API will be considered, but they will probably be staged into a development branch for release into the next major release of ROS (ROS L)
35 changes: 17 additions & 18 deletions sound_play/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,29 +16,28 @@ generate_messages(DEPENDENCIES actionlib_msgs)
catkin_package(CATKIN_DEPENDS message_runtime actionlib_msgs
INCLUDE_DIRS include)

# if(CATKIN_ENABLE_TESTING)
# catkin_add_nosetests(scripts/test)
#
# add_subdirectory(test)
# endif()

install(PROGRAMS
scripts/playbuiltin.py
scripts/play.py
scripts/say.py
scripts/shutup.py
scripts/soundplay_node.py
scripts/test.py
scripts/test_actionlib_client.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})
catkin_install_python(PROGRAMS
scripts/playbuiltin.py
scripts/play.py
scripts/say.py
scripts/shutup.py
scripts/soundplay_node.py
scripts/test.py
scripts/test_actionlib_client.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})

install(FILES
soundplay_node.launch
test.launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
soundplay_node.launch
test.launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})

install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION})

install(DIRECTORY sounds
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})

# if(CATKIN_ENABLE_TESTING)
# catkin_add_nosetests(scripts/test)
# add_subdirectory(test)
# endif()
35 changes: 21 additions & 14 deletions sound_play/package.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<package>
<?xml version="1.0"?>
<?xml-model
href="http://download.ros.org/schema/package_format3.xsd"
schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>sound_play</name>
<version>0.3.4</version>
<description>
Expand All @@ -12,6 +16,8 @@
<url type="bugtracker">https://github.com/ros-drivers/audio_common/issues</url>

<buildtool_depend>catkin</buildtool_depend>
<buildtool_depend condition="$ROS_PYTHON_VERSION == 2">python-setuptools</buildtool_depend>
<buildtool_depend condition="$ROS_PYTHON_VERSION == 3">python3-setuptools</buildtool_depend>

<build_depend>roscpp</build_depend>
<build_depend>roslib</build_depend>
Expand All @@ -21,21 +27,22 @@
<build_depend>diagnostic_msgs</build_depend>
<build_depend>message_generation</build_depend>

<run_depend>roscpp</run_depend>
<run_depend>roslib</run_depend>
<run_depend>actionlib_msgs</run_depend>
<run_depend>audio_common_msgs</run_depend>
<run_depend>diagnostic_msgs</run_depend>
<exec_depend>roscpp</exec_depend>
<exec_depend>roslib</exec_depend>
<exec_depend>actionlib_msgs</exec_depend>
<exec_depend>audio_common_msgs</exec_depend>
<exec_depend>diagnostic_msgs</exec_depend>

<run_depend>python-gi</run_depend>
<run_depend>gstreamer1.0</run_depend>
<run_depend>gstreamer1.0-plugins-base</run_depend>
<run_depend>gstreamer1.0-plugins-ugly</run_depend>
<run_depend>gstreamer1.0-plugins-good</run_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 2">python-gi</exec_depend>
<exec_depend condition="$ROS_PYTHON_VERSION == 3">python3-gi</exec_depend>
<exec_depend>gstreamer1.0</exec_depend>
<exec_depend>gstreamer1.0-plugins-base</exec_depend>
<exec_depend>gstreamer1.0-plugins-ugly</exec_depend>
<exec_depend>gstreamer1.0-plugins-good</exec_depend>

<run_depend>rospy</run_depend>
<run_depend>festival</run_depend>
<run_depend>message_runtime</run_depend>
<exec_depend>rospy</exec_depend>
<exec_depend>festival</exec_depend>
<exec_depend>message_runtime</exec_depend>

<export>
<cpp cflags="-I${prefix}/include -I${prefix}/msg/cpp" />
Expand Down
4 changes: 1 addition & 3 deletions sound_play/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup
from catkin_pkg.python_setup import generate_distutils_setup

d = generate_distutils_setup(
Expand Down
2 changes: 1 addition & 1 deletion sound_play/src/sound_play/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

import libsoundplay as libsoundplay
import sound_play.libsoundplay as libsoundplay
2 changes: 0 additions & 2 deletions sound_play/src/sound_play/libsoundplay.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

#***********************************************************
#* Software License Agreement (BSD License)
#*
Expand Down