Skip to content

Commit

Permalink
Imported upstream version '2.2.16' of 'upstream'
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Jan 6, 2025
1 parent 99acfe2 commit ae204cf
Show file tree
Hide file tree
Showing 28 changed files with 130 additions and 28 deletions.
65 changes: 51 additions & 14 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ jobs:
# - DISTRO: ubuntu:22.04
# CATKIN_OPTIONS: "--ignore-pkg image_view2"
# CMAKE_OPTIONS: "-DCMAKE_CXX_FLAGS=-std=c++11"
- DISTRO: ubuntu:24.04

container: ${{ matrix.DISTRO }}

Expand All @@ -137,11 +138,17 @@ jobs:
set -x
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
apt update -q
##
# https://github.com/v4hn/ros-deb-builder-action/blob/b7c0ed93fde3a86b5b1027bf8f7145cad6067c90/prepare.sh#L27-L28
# Canonical dropped the Debian ROS packages from 24.04 for political reasons. Wow.
test "${{ matrix.DISTRO }}" = "ubuntu:24.04" && apt install -y software-properties-common retry && retry -d 50,10,30,300 -t 12 add-apt-repository -y ppa:v-launchpad-jochen-sprickerhof-de/ros
##
apt install -y -q -qq catkin git curl build-essential libboost-all-dev python3-pip python3-venv python3-rosdep2
apt install -y -q -qq ros-desktop-dev rosbash
apt install -y -q -qq libself-test-dev libpcl-ros-dev
apt install -y -q -qq ros-core-dev ros-robot-dev
pip install vcstool
test "${{ matrix.DISTRO }}" = "ubuntu:22.04" && apt install -y -q -qq ros-desktop-dev rosbash
test "${{ matrix.DISTRO }}" = "ubuntu:22.04" && apt install -y -q -qq libself-test-dev libpcl-ros-dev
test "${{ matrix.DISTRO }}" = "ubuntu:22.04" && apt install -y -q -qq ros-core-dev ros-robot-dev
test "${{ matrix.DISTRO }}" = "ubuntu:22.04" && pip install vcstool
test "${{ matrix.DISTRO }}" != "ubuntu:22.04" && apt install -y -q -qq pipx && pipx install vcstool
rosdep update
- name: Setup rosinstall_generator
Expand All @@ -152,23 +159,48 @@ jobs:
cd rosinstall_generator
python3 ./setup.py install
- name: Setup Dependencies Workspace
- name: Setup 24.04 Dependencies Workspace
if: matrix.DISTRO != 'ubuntu:22.04'
run: |
set -x
# install dependencies
mkdir -p ~/ws_depend/src
cd ~/ws_depend/src
ROS_PACKAGE_PATH=/usr/share rosinstall_generator --rosdistro noetic --from-path $GITHUB_WORKSPACE --deps --exclude RPP --depend-type buildtool build | tee repos
vcs import --shallow < repos
# override to use latest development for 22.04
rosinstall_generator laser_filters laser_assembler map_server --rosdistro noetic --upstream-development | vcs import --force
mkdir -p ~/ws_depend/src/ros-o
cd ~/ws_depend/src/ros-o
git clone https://github.com/ros-o/rosconsole.git
git clone https://github.com/ros-o/gencpp.git
git clone https://github.com/ros-o/ros_comm.git
git clone https://github.com/ros-o/catkin_virtualenv.git
git clone https://github.com/ros-o/perception_pcl.git
export PATH=/github/home/.local/bin:$PATH # for 24.04, vcs installed with pipx
ROS_PACKAGE_PATH=/usr/share:$(pwd) rosinstall_generator --rosdistro noetic --deps --exclude RPP --repos message_runtime message_generation | vcs import --shallow
ROS_PACKAGE_PATH=/usr/share:$(pwd) rosinstall_generator --rosdistro noetic rosbash | vcs import --shallow
- name: Setup 22.04 Dependencies Workspace
if: matrix.DISTRO == 'ubuntu:22.04'
run: |
set -x
# install dependencies
mkdir -p ~/ws_depend/src/ros-o
cd ~/ws_depend/src/ros-o
rosinstall_generator catkin_virtualenv --rosdistro noetic | vcs import --force
rm -fr jsk_common
# Run catkin_run_tests_target only when CATKIN_ENABLE_TESTING is enabled #89 (https://github.com/locusrobotics/catkin_virtualenv/pull/89)
curl -s -L -O https://patch-diff.githubusercontent.com/raw/locusrobotics/catkin_virtualenv/pull/89.diff
patch -p1 < 89.diff
rosdep install -qq -r -y --from-path . --ignore-src || echo "OK"
cd ..
- name: Setup Dependencies Workspace
run: |
set -x
# install dependencies
mkdir -p ~/ws_depend/src/3rdparty-src
cd ~/ws_depend/src/3rdparty-src
ROS_PACKAGE_PATH=/usr/share rosinstall_generator --rosdistro noetic --from-path $GITHUB_WORKSPACE $HOME/ws_depend/src/ros-o --deps --deps-only --exclude RPP test_catkin_virtualenv test_catkin_virtualenv_inherited --depend-type buildtool build | tee repos
export PATH=/github/home/.local/bin:$PATH # for 24.04, vcs installed with pipx
vcs import --shallow < repos
# override to use latest development for 22.04
rosinstall_generator laser_filters laser_assembler map_server --rosdistro noetic --upstream-development | vcs import --force
ROS_PACKAGE_PATH=/usr/share:$HOME/ws_depend/src/ros-o rosinstall_generator --from-path $HOME/ws_depend/src/3rdparty-src --rosdistro noetic --deps --deps-only --exclude RPP test_catkin_virtualenv test_catkin_virtualenv_inherited | vcs import --shallow
cd ~/ws_depend
rosdep install -qq -r -y --from-path src --ignore-src || echo "OK"
catkin_make_isolated --cmake-args -DCATKIN_ENABLE_TESTING=OFF
- name: Setup Workspace
Expand Down Expand Up @@ -215,6 +247,11 @@ jobs:
set -x
apt update && apt install -qq -y ca-certificates
echo "deb [trusted=yes] ${{ matrix.ROS_REPOSITORY_URL }}/ ./" | tee /etc/apt/sources.list.d/ros-o-builder.list
##
# https://github.com/v4hn/ros-deb-builder-action/blob/b7c0ed93fde3a86b5b1027bf8f7145cad6067c90/prepare.sh#L27-L28
# Canonical dropped the Debian ROS packages from 24.04 for political reasons. Wow.
test "${{ matrix.DISTRO }}" = "ubuntu:24.04" && apt install -y software-properties-common retry && retry -d 50,10,30,300 -t 12 add-apt-repository -y ppa:v-launchpad-jochen-sprickerhof-de/ros
##
apt update
apt install -qq -y python3-rosdep2
echo "yaml ${{ matrix.ROS_REPOSITORY_URL }}/local.yaml debian" | tee /etc/ros/rosdep/sources.list.d/1-ros-o-builder.list
Expand Down
3 changes: 3 additions & 0 deletions audio_video_recorder/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package audio_video_recorder
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion audio_video_recorder/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>audio_video_recorder</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>ROS package for recording image and audio synchronously</description>

<author email="[email protected]">Shingo Kitagawa</author>
Expand Down
3 changes: 3 additions & 0 deletions jsk_common/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package jsk_common
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_common/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>jsk_common</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>
<p>Metapackage that contains commonly used toolset for jsk-ros-pkg</p>
</description>
Expand Down
3 changes: 3 additions & 0 deletions jsk_coordination_system/dynamic_tf_publisher/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package dynamic_tf_publisher
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_coordination_system/dynamic_tf_publisher/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<description>
dynamically set the tf trensformation
</description>
<version>2.2.15</version>
<version>2.2.16</version>
<author email="[email protected]">Manabu Saito</author>
<maintainer email="[email protected]">Ryohei Ueda</maintainer>
<license>BSD</license>
Expand Down
3 changes: 3 additions & 0 deletions jsk_data/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package jsk_data
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------
* [jsk_data] Automatically add the host key and Check stdout.read() type (`#1810 <https://github.com/jsk-ros-pkg/jsk_common/issues/1810>`_)
Expand Down
2 changes: 1 addition & 1 deletion jsk_data/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>jsk_data</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>The jsk_data package</description>

<maintainer email="[email protected]">Ryohei Ueda</maintainer>
Expand Down
3 changes: 3 additions & 0 deletions jsk_network_tools/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package jsk_network_tools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_network_tools/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>jsk_network_tools</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>jsk_network_tools</description>

<maintainer email="[email protected]">Ryohei Ueda</maintainer>
Expand Down
3 changes: 3 additions & 0 deletions jsk_ros_patch/image_view2/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package image_view2
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_ros_patch/image_view2/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>image_view2</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>A simple viewer for ROS image topics with draw-on features</description>
<maintainer email="[email protected]">Kei Okada</maintainer>

Expand Down
3 changes: 3 additions & 0 deletions jsk_ros_patch/multi_map_server/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package multi_map_server
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_ros_patch/multi_map_server/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>multi_map_server</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>multi_map_server provides the</description>
<maintainer email="[email protected]">Kei Okada</maintainer>

Expand Down
9 changes: 9 additions & 0 deletions jsk_rosbag_tools/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
Changelog for package jsk_rosbag_tools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------
* [ROS-O] fix for ROS-O (`#1802 <https://github.com/jsk-ros-pkg/jsk_common/issues/1802>`_)

* jsk_rosbag_tools: use requirements.in.python3.12 for python3.12 (ubuntu 24.04)
* jsk_rosbag_tools/CMakeLists.txt: $ENV{ROS_DISTRO} -. "$ENV{ROS_DISTRO}" for 24.04, which does not have ROS_DISTRO environment

* Contributors: Kei Okada

2.2.15 (2024-12-13)
-------------------

Expand Down
10 changes: 9 additions & 1 deletion jsk_rosbag_tools/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,25 @@ catkin_package(
CATKIN_DEPENDS
)

if($ENV{ROS_DISTRO} STREQUAL "indigo" OR $ENV{ROS_DISTRO} STREQUAL "kinetic" OR $ENV{ROS_DISTRO} STREQUAL "melodic")
if("$ENV{ROS_DISTRO}" STREQUAL "indigo" OR "$ENV{ROS_DISTRO}" STREQUAL "kinetic" OR "$ENV{ROS_DISTRO}" STREQUAL "melodic")
catkin_generate_virtualenv(
INPUT_REQUIREMENTS requirements.in.python2
PYTHON_INTERPRETER python2
)
else()
find_package(Python COMPONENTS Interpreter)
if(Python_VERSION VERSION_GREATER_EQUAL 3.12.0)
catkin_generate_virtualenv(
INPUT_REQUIREMENTS requirements.in.python3.12
PYTHON_INTERPRETER python3
)
else()
catkin_generate_virtualenv(
INPUT_REQUIREMENTS requirements.in
PYTHON_INTERPRETER python3
)
endif()
endif()

file(GLOB SCRIPTS_FILES scripts/*)
catkin_install_python(
Expand Down
2 changes: 1 addition & 1 deletion jsk_rosbag_tools/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>jsk_rosbag_tools</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>The rosbag tools</description>
<license>BSD</license>

Expand Down
4 changes: 4 additions & 0 deletions jsk_rosbag_tools/requirements.in.python3.12
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Pillow==8.4.0
moviepy==1.0.3
scipy==1.11.4
numpy<1.28.0,>=1.21.6
3 changes: 3 additions & 0 deletions jsk_tilt_laser/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package jsk_tilt_laser
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_tilt_laser/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>jsk_tilt_laser</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>The jsk_tilt_laser package</description>

<maintainer email="[email protected]">YoheiKakiuchi</maintainer>
Expand Down
3 changes: 3 additions & 0 deletions jsk_tools/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package jsk_tools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_tools/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>jsk_tools</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>Includes emacs scripts, ros tool alias generator, and launch doc generator.</description>

<maintainer email="[email protected]">Ryohei Ueda</maintainer>
Expand Down
14 changes: 14 additions & 0 deletions jsk_topic_tools/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
Changelog for package jsk_topic_tools
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------
* remove inline from ConnectionBaseNodelet::isSubscribed() (`#1812 <https://github.com/jsk-ros-pkg/jsk_common/issues/1812>`_)

* jsk_peceptino could not find isSubscribed if it is defined as inline
```
usr/lib/x86_64-linux-gnu/libopencv_phase_unwrapping.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_optflow.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_ximgproc.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_video.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_videoio.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_imgcodecs.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_objdetect.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_calib3d.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_dnn.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_features2d.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_flann.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_photo.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_imgproc.so.4.5.4d /usr/lib/x86_64-linux-gnu/libopencv_core.so.4.5.4d
2025-01-05T05:23:12.3723125Z /usr/bin/ld: /tmp/ccUI43It.ltrans0.ltrans.o:(.data.rel.ro+0xc08): undefined reference to jsk_topic_tools::ConnectionBasedNodelet::isSubscribed()'
2025-01-05T05:23:12.3918628Z /usr/bin/ld: /tmp/ccUI43It.ltrans7.ltrans.o:(.data.rel.ro+0x578): undefined reference to jsk_topic_tools::ConnectionBasedNodelet::isSubscribed()'
2025-01-05T05:23:12.4099509Z /usr/bin/ld: /tmp/ccUI43It.ltrans14.ltrans.o:(.data.rel.ro+0x178): undefined reference to jsk_topic_tools::ConnectionBasedNodelet::isSubscribed()' follow
```

* Contributors: Kei Okada

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion jsk_topic_tools/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>jsk_topic_tools</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>jsk_topic_tools</description>
<maintainer email="[email protected]">Kei Okada</maintainer>
<maintainer email="[email protected]">Ryohei Ueda</maintainer>
Expand Down
2 changes: 1 addition & 1 deletion jsk_topic_tools/src/connection_based_nodelet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ namespace jsk_topic_tools
}
}

inline bool ConnectionBasedNodelet::isSubscribed()
bool ConnectionBasedNodelet::isSubscribed()
{
return connection_status_ == SUBSCRIBED;
}
Expand Down
3 changes: 3 additions & 0 deletions virtual_force_publisher/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Changelog for package virtual_force_publisher
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

2.2.16 (2025-01-06)
-------------------

2.2.15 (2024-12-13)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion virtual_force_publisher/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<package format="3">
<name>virtual_force_publisher</name>
<version>2.2.15</version>
<version>2.2.16</version>
<description>
publish end effector's force, which is estmated from joint torque value
</description>
Expand Down

0 comments on commit ae204cf

Please sign in to comment.