Skip to content

Commit e2164bd

Browse files
committed
0.0.1
1 parent 3f8ae10 commit e2164bd

File tree

7 files changed

+112
-112
lines changed

7 files changed

+112
-112
lines changed

open_sound_control/CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog for package open_sound_control
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5-
Forthcoming
6-
-----------
5+
0.0.1 (2025-03-15)
6+
------------------
77
* Initial release
88
* Contributors: Chris I-B

open_sound_control/package.xml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<?xml version="1.0"?>
2-
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
3-
<package format="3">
4-
<name>open_sound_control</name>
5-
<version>0.0.0</version>
6-
<description>Metapackage for ROS/Open Sound Control bridge</description>
7-
<license>BSD</license>
8-
9-
<maintainer email="[email protected]">Chris Iverach-Brereton</maintainer>
10-
11-
<buildtool_depend>ament_cmake</buildtool_depend>
12-
13-
<exec_depend>open_sound_control_bridge</exec_depend>
14-
<exec_depend>open_sound_control_msgs</exec_depend>
15-
16-
<export>
17-
<build_type>ament_cmake</build_type>
18-
</export>
19-
</package>
1+
<?xml version="1.0"?>
2+
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
3+
<package format="3">
4+
<name>open_sound_control</name>
5+
<version>0.0.1</version>
6+
<description>Metapackage for ROS/Open Sound Control bridge</description>
7+
<license>BSD</license>
8+
9+
<maintainer email="[email protected]">Chris Iverach-Brereton</maintainer>
10+
11+
<buildtool_depend>ament_cmake</buildtool_depend>
12+
13+
<exec_depend>open_sound_control_bridge</exec_depend>
14+
<exec_depend>open_sound_control_msgs</exec_depend>
15+
16+
<export>
17+
<build_type>ament_cmake</build_type>
18+
</export>
19+
</package>

open_sound_control_bridge/CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog for package open_sound_control_bridge
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5-
Forthcoming
6-
-----------
5+
0.0.1 (2025-03-15)
6+
------------------
77
* Initial release
88
* Contributors: Chris I-B
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<?xml version="1.0"?>
2-
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
3-
<package format="3">
4-
<name>open_sound_control_bridge</name>
5-
<version>0.0.0</version>
6-
<description>Bridge node for converting between OSC and ROS messages</description>
7-
<license>Apache 2.0</license>
8-
<maintainer email="[email protected]">Chris Iverach-Brereton</maintainer>
9-
10-
<exec_depend>open_sound_control_msgs</exec_depend>
11-
<exec_depend>std_msgs</exec_depend>
12-
13-
<test_depend>ament_lint_auto</test_depend>
14-
<test_depend>ament_lint_common</test_depend>
15-
16-
<export>
17-
<build_type>ament_python</build_type>
18-
</export>
19-
</package>
1+
<?xml version="1.0"?>
2+
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
3+
<package format="3">
4+
<name>open_sound_control_bridge</name>
5+
<version>0.0.1</version>
6+
<description>Bridge node for converting between OSC and ROS messages</description>
7+
<license>Apache 2.0</license>
8+
<maintainer email="[email protected]">Chris Iverach-Brereton</maintainer>
9+
10+
<exec_depend>open_sound_control_msgs</exec_depend>
11+
<exec_depend>std_msgs</exec_depend>
12+
13+
<test_depend>ament_lint_auto</test_depend>
14+
<test_depend>ament_lint_common</test_depend>
15+
16+
<export>
17+
<build_type>ament_python</build_type>
18+
</export>
19+
</package>

open_sound_control_bridge/setup.py

Lines changed: 46 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
1-
#!/usr/bin/env python3
2-
# Copyright 2025 Chris Iverach-Brereton
3-
#
4-
# Licensed under the Apache License, Version 2.0 (the "License");
5-
# you may not use this file except in compliance with the License.
6-
# You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
15-
from glob import glob
16-
import os
17-
18-
from setuptools import find_packages, setup
19-
20-
package_name = 'open_sound_control_bridge'
21-
22-
setup(
23-
name=package_name,
24-
version='0.0.0',
25-
packages=find_packages(exclude=['test']),
26-
data_files=[
27-
('share/ament_index/resource_index/packages',
28-
['resource/' + package_name]),
29-
(os.path.join('share', package_name), ['package.xml']),
30-
(os.path.join('share', package_name, 'launch'), glob(
31-
os.path.join('launch', '*.launch.py'))),
32-
(os.path.join('share', package_name, 'config'), glob(os.path.join('config', '*.yaml'))),
33-
],
34-
install_requires=['setuptools'],
35-
zip_safe=True,
36-
maintainer='Chris Iverach-Brereton',
37-
maintainer_email='[email protected]',
38-
description='Node for converting between OSC and ROS messages',
39-
license='Apache 2.0',
40-
tests_require=['pytest'],
41-
entry_points={
42-
'console_scripts': [
43-
'osc_bridge_node = open_sound_control_bridge.osc_bridge:main',
44-
],
45-
},
46-
)
1+
#!/usr/bin/env python3
2+
# Copyright 2025 Chris Iverach-Brereton
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
from glob import glob
16+
import os
17+
18+
from setuptools import find_packages, setup
19+
20+
package_name = 'open_sound_control_bridge'
21+
22+
setup(
23+
name=package_name,
24+
version='0.0.1',
25+
packages=find_packages(exclude=['test']),
26+
data_files=[
27+
('share/ament_index/resource_index/packages',
28+
['resource/' + package_name]),
29+
(os.path.join('share', package_name), ['package.xml']),
30+
(os.path.join('share', package_name, 'launch'), glob(
31+
os.path.join('launch', '*.launch.py'))),
32+
(os.path.join('share', package_name, 'config'), glob(os.path.join('config', '*.yaml'))),
33+
],
34+
install_requires=['setuptools'],
35+
zip_safe=True,
36+
maintainer='Chris Iverach-Brereton',
37+
maintainer_email='[email protected]',
38+
description='Node for converting between OSC and ROS messages',
39+
license='Apache 2.0',
40+
tests_require=['pytest'],
41+
entry_points={
42+
'console_scripts': [
43+
'osc_bridge_node = open_sound_control_bridge.osc_bridge:main',
44+
],
45+
},
46+
)

open_sound_control_msgs/CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog for package open_sound_control_msgs
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5-
Forthcoming
6-
-----------
5+
0.0.1 (2025-03-15)
6+
------------------
77
* Initial release
88
* Contributors: Chris I-B
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
<?xml version="1.0"?>
2-
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
3-
<package format="3">
4-
<name>open_sound_control_msgs</name>
5-
<version>0.0.0</version>
6-
<description>Open Sound Control messages for ROS 2</description>
7-
<license>Apache 2.0</license>
8-
9-
<maintainer email="[email protected]">Chris Iverach-Brereton</maintainer>
10-
11-
<buildtool_depend>ament_cmake</buildtool_depend>
12-
13-
<build_depend>rosidl_default_generators</build_depend>
14-
15-
<exec_depend>rosidl_default_runtime</exec_depend>
16-
17-
<member_of_group>rosidl_interface_packages</member_of_group>
18-
19-
<export>
20-
<build_type>ament_cmake</build_type>
21-
</export>
22-
</package>
1+
<?xml version="1.0"?>
2+
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
3+
<package format="3">
4+
<name>open_sound_control_msgs</name>
5+
<version>0.0.1</version>
6+
<description>Open Sound Control messages for ROS 2</description>
7+
<license>Apache 2.0</license>
8+
9+
<maintainer email="[email protected]">Chris Iverach-Brereton</maintainer>
10+
11+
<buildtool_depend>ament_cmake</buildtool_depend>
12+
13+
<build_depend>rosidl_default_generators</build_depend>
14+
15+
<exec_depend>rosidl_default_runtime</exec_depend>
16+
17+
<member_of_group>rosidl_interface_packages</member_of_group>
18+
19+
<export>
20+
<build_type>ament_cmake</build_type>
21+
</export>
22+
</package>

0 commit comments

Comments
 (0)