diff options
-rwxr-xr-x | mashrepo | 3 | ||||
-rw-r--r-- | wizard/index.php | 22 |
2 files changed, 15 insertions, 10 deletions
@@ -42,6 +42,9 @@ do elif [[ "^${name}" =~ "^php83" ]] then ln $rpm $copy && echo "+ $rpm" + elif [[ "^${name}" =~ "^php84" ]] + then + ln $rpm $copy && echo "+ $rpm" else if [ $debug = 1 ] then echo " $rpm (ignored)" diff --git a/wizard/index.php b/wizard/index.php index 0b7b6265..36568eb8 100644 --- a/wizard/index.php +++ b/wizard/index.php @@ -10,7 +10,7 @@ <?php define('FC_EOL', 38); define('FC_DEV', 40); -define('EL_EOL', 6); +define('EL_EOL', 7); define('EL_DEV', 10); define('PHP_SEC', '8.1'); define('EPEL_DEV', 2); // 0 missing, 1 partially populated, 2 mostly full @@ -59,18 +59,18 @@ $osminbase = [ 'Fedora 38' => '7.4', ]; $osmax = [ - 'RHEL 9' => '8.3', - 'RHEL 8' => '8.3', + 'RHEL 9' => '8.4', + 'RHEL 8' => '8.4', // 'RHEL 7' => '8.3', - 'CentOS 9' => '8.3', + 'CentOS 9' => '8.4', // 'CentOS 8' => '8.3', // 'CentOS 7' => '8.3', - 'EL 9' => '8.3', - 'EL 8' => '8.3', + 'EL 9' => '8.4', + 'EL 8' => '8.4', // 'EL 7' => '8.3', - 'Fedora 40' => '8.3', - 'Fedora 39' => '8.3', - 'Fedora 38' => '8.3', + 'Fedora 40' => '8.4', + 'Fedora 39' => '8.4', + 'Fedora 38' => '8.4', ]; $osname = [ ':rhel' => 'Red Hat Enterprise Linux', @@ -102,6 +102,7 @@ $arches = [ ]; $phpvers = [ // use false when only SCL + '8.4' => false, '8.3' => 'remi-php83', '8.2' => 'remi-php82', '8.1' => 'remi-php81', @@ -116,7 +117,8 @@ $phpvers = [ '5.4' => 'remi-php54', ]; $phpname = [ -// ':devel' => 'Development version, not ready for production', + ':devel' => 'Development version, not ready for production', + '8.4' => '8.4.0alpha1', ':stable' => 'Stable versions - usage recommended', '8.3' => '8.3.9 (active support until December 2025)', '8.2' => '8.2.21 (active support until December 2024)', |