Add GCC 15

This commit is contained in:
Steffen Lange 2025-06-19 17:44:35 +02:00
parent 09b570975c
commit d5f32ed8e1

15
modules/GCC15.php Normal file
View file

@ -0,0 +1,15 @@
<?php
class GCC15 extends PatchBase {
function __construct() {
parent::__construct('Free Software Foundation', 'GNU Compiler Collection', 'https://gcc.gnu.org/');
$this->patch->setBranch('15');
}
function check() : bool {
if ($this->fetch('https://gcc.gnu.org/'))
return $this->parse('/<span class="version"><a href="gcc-15\/">GCC ([\d\.]+)/');
return false;
}
}
?>