From e95224211d268336091aa545f2c4947fba05d0ab Mon Sep 17 00:00:00 2001 From: "brian m. carlson" Date: Tue, 21 Dec 2021 18:09:43 +0000 Subject: [PATCH] script/packagecloud: update for latest distros Remove Fedora 32 and 33, which are EOL. Add Fedora 35, which is the latest version. Add the latest versions of Ubuntu and Linux Mint, and remove EOL versions of Ubuntu. Fix the alignment of the comments. --- script/packagecloud.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/script/packagecloud.rb b/script/packagecloud.rb index 5dbd44f6..05c0724f 100755 --- a/script/packagecloud.rb +++ b/script/packagecloud.rb @@ -45,9 +45,8 @@ $distro_name_map = { ], "centos/8" => [ "el/8", - "fedora/32", - "fedora/33", "fedora/34", + "fedora/35", ], # Debian EOL https://wiki.debian.org/LTS/ # Ubuntu EOL https://wiki.ubuntu.com/Releases @@ -65,13 +64,15 @@ $distro_name_map = { "debian/buster", "linuxmint/ulyana", # EOL April 2025 "linuxmint/ulyssa", # EOL April 2025 + "linuxmint/uma", # EOL April 2025 "ubuntu/focal", # EOL April 2025 - "ubuntu/groovy", # EOL July 2021 "ubuntu/hirsute", # EOL January 2022 ], "debian/11" => [ "debian/bullseye", # Current stable - "debian/bookworm", # Current testing + "debian/bookworm", # Current testing + "ubuntu/impish", # EOL July 2022 + "ubuntu/jammy", # EOL April 2027 ] }