Skip to content

Commit

Permalink
feat: Declare Foxy EOL (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiryoh authored May 4, 2024
1 parent 7130e09 commit daffb2d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,7 @@ After editing, run `run.sh` to install the packages.

In addition, there are other ways to use the installers.

ROS 2 Foxy

* To install `ros-foxy-ros-base`, use [`ros2-foxy-ros-base-main.sh`](./ros2-foxy-ros-base-main.sh) instead of `run.sh`.
* To install `ros-foxy-desktop`, use [`ros2-foxy-desktop-main.sh`](./ros2-foxy-desktop-main.sh) instead of `run.sh`.

ROS 2 Humble
ROS 2 Humble (LTS)

* To install `ros-humble-ros-base`, use [`ros2-humble-ros-base-main.sh`](./ros2-humble-ros-base-main.sh) instead of `run.sh`.
* To install `ros-humble-desktop`, use [`ros2-humble-desktop-main.sh`](./ros2-humble-desktop-main.sh) instead of `run.sh`.
Expand All @@ -69,6 +64,11 @@ ROS 2 Eloquent (EOL)
* To install `ros-eloquent-ros-base`, use [`ros2-eloquent-ros-base-main.sh`](./ros2-eloquent-ros-base-main.sh) instead of `run.sh`.
* To install `ros-eloquent-desktop`, use [`ros2-eloquent-desktop-main.sh`](./ros2-eloquent-desktop-main.sh) instead of `run.sh`.

ROS 2 Foxy (EOL)

* To install `ros-foxy-ros-base`, use [`ros2-foxy-ros-base-main.sh`](./ros2-foxy-ros-base-main.sh) instead of `run.sh`.
* To install `ros-foxy-desktop`, use [`ros2-foxy-desktop-main.sh`](./ros2-foxy-desktop-main.sh) instead of `run.sh`.

ROS 2 Galactic (EOL)

* To install `ros-galactic-ros-base`, use [`ros2-galactic-ros-base-main.sh`](./ros2-galactic-ros-base-main.sh) instead of `run.sh`.
Expand Down
6 changes: 5 additions & 1 deletion ros2-foxy-desktop-main.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -eu

# Copyright 2019-2022 Tiryoh
# Copyright 2019-2024 Tiryoh
# https://github.com/Tiryoh/ros2_setup_scripts_ubuntu
# Licensed under the Apache License, Version 2.0
#
Expand Down Expand Up @@ -36,6 +36,10 @@ if ! dpkg --print-architecture | grep -q 64; then
exit 1
fi

printf '\033[33m%s\033[m\n' "==============================================="
printf '\033[33m%s\033[m\n' "ROS Foxy has been reached end-of-life (EOL)"
printf '\033[33m%s\033[m\n' "==============================================="

# Install
sudo apt-get update
sudo apt-get install -y software-properties-common
Expand Down
6 changes: 5 additions & 1 deletion ros2-foxy-ros-base-main.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -eu

# Copyright 2019-2022 Tiryoh
# Copyright 2019-2024 Tiryoh
# https://github.com/Tiryoh/ros2_setup_scripts_ubuntu
# Licensed under the Apache License, Version 2.0
#
Expand Down Expand Up @@ -36,6 +36,10 @@ if ! dpkg --print-architecture | grep -q 64; then
exit 1
fi

printf '\033[33m%s\033[m\n' "==============================================="
printf '\033[33m%s\033[m\n' "ROS Foxy has been reached end-of-life (EOL)"
printf '\033[33m%s\033[m\n' "==============================================="

# Install
sudo apt-get update
sudo apt-get install -y software-properties-common
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -eu
# by Open Robotics, licensed under CC-BY-4.0
# source: https://github.com/ros2/ros2_documentation

CHOOSE_ROS_DISTRO=humble # or foxy, iron, etc...
CHOOSE_ROS_DISTRO=humble # or iron, etc...
INSTALL_PACKAGE=desktop # or ros-base

sudo apt update
Expand Down

0 comments on commit daffb2d

Please sign in to comment.