Skip to content

Commit

Permalink
add ament package index so that deb can be built out of this
Browse files Browse the repository at this point in the history
  • Loading branch information
dheera committed Jun 21, 2024
1 parent e36fe88 commit c15b3ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<?xml-model href="https://download.ros.org/schema/package_format2.xsd" schematypens="https://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>rosboard</name>
<version>1.3.0</version>
<version>1.3.1</version>
<description>ROSBoard</description>
<maintainer email="[email protected]">dheera</maintainer>
<license>BSD</license>

<buildtool_depend condition="$ROS_VERSION == 1">catkin</buildtool_depend>

<depend>python3-tornado</depend>
<depend>python3-simplejpeg-pip</depend>
<depend>python3-pil</depend>

<export>
<build_type condition="$ROS_VERSION == 1">catkin</build_type>
Expand Down
2 changes: 1 addition & 1 deletion rosboard/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0"
__version__ = "1.3.1"
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@

setup(
name=package_name,
version='1.3.0',
version='1.3.1',
packages=find_packages(), #[package_name],
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
install_requires=[
'setuptools',
Expand Down

4 comments on commit c15b3ec

@Timple
Copy link
Contributor

@Timple Timple commented on c15b3ec Jun 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit just broke our CI systems 🙂

--- stderr: rosboard
/usr/lib/python3/dist-packages/setuptools/command/easy_install.py:158: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
error: can't copy '/ws/build/rosboard/resource/rosboard': doesn't exist or not a regular file

@dheera
Copy link
Owner Author

@dheera dheera commented on c15b3ec Jun 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Timple Hi, can you please try again? I forgot to commit one file. Sorry about that.
I'm going to work on adding this to the ros distros so that people can avoid using the latest dev release in production.

@Timple
Copy link
Contributor

@Timple Timple commented on c15b3ec Jun 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the swift reply, CI running...

@Timple
Copy link
Contributor

@Timple Timple commented on c15b3ec Jun 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Works!

Please sign in to comment.