From 26e160197ff0095c17397772b8b2f3fcd8c51b1d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 11 May 2022 12:26:24 +0200 Subject: php 8.2 as SCL --- wizard/index.php | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) (limited to 'wizard/index.php') diff --git a/wizard/index.php b/wizard/index.php index c45e509d..661eab18 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -11,7 +11,7 @@ define('FC_EOL', 33); define('FC_DEV', 37); define('EL_EOL', 6); -define('EL_DEV', 9); +define('EL_DEV', 10); define('EPEL_DEV', 2); // 0 missing, 1 partially populated, 2 mostly full define('COUNTER', __DIR__ . "/counter.txt"); @@ -49,19 +49,19 @@ $osminbase = [ 'Fedora 34' => '7.4', ]; $osmax = [ - 'RHEL 9' => '8.1', - 'RHEL 8' => '8.1', - 'RHEL 7' => '8.1', - 'CentOS 9' => '8.1', - 'CentOS 8' => '8.1', - 'CentOS 7' => '8.1', - 'Fedora 36' => '8.1', - 'Fedora 35' => '8.1', + 'RHEL 9' => '8.2', + 'RHEL 8' => '8.2', + 'RHEL 7' => '8.2', + 'CentOS 9' => '8.2', + 'CentOS 8' => '8.2', + 'CentOS 7' => '8.2', + 'Fedora 36' => '8.2', + 'Fedora 35' => '8.2', 'Fedora 34' => '8.1', ]; $osname = [ ':rhel' => 'Red Hat Enterprise Linux', - 'RHEL 9' => 'RHEL 9.0 Beta (Development version)', + 'RHEL 9' => 'RHEL 9.0', 'RHEL 8' => 'RHEL 8.5', 'RHEL 7' => 'RHEL 7.9 (maintained until June 2024)', ':centos' => 'CentOS Stream, CentOS Linux, Alma Linux, Rocky Linux and other clones', @@ -80,6 +80,7 @@ $types = [ ]; $phpvers = [ // use false when only SCL + '8.2' => false, '8.1' => 'remi-php81', '8.0' => 'remi-php80', '7.4' => 'remi-php74', @@ -92,7 +93,8 @@ $phpvers = [ '5.4' => 'remi-php54', ]; $phpname = [ -// ':devel' => 'Development version, not ready for production', + ':devel' => 'Development version, not ready for production', + '8.2' => '8.2.0-dev (GA planed for Nov/Dec 2022)', ':stable' => 'Stable versions - usage recommended', '8.1' => '8.1.5 (active support until November 2023)', '8.0' => '8.0.18 (active support until November 2022)', -- cgit