Removed GCC9

This commit is contained in:
Steffen Lange 2022-06-09 16:20:17 +02:00
parent 7df4c36e76
commit be0ca36139

View file

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