Compare commits

...

2 commits

Author SHA1 Message Date
Steffen Lange
d5f9784e74 Remove MariaDB 10.5 2025-07-25 22:47:46 +02:00
Steffen Lange
a945d8ca44 Remove GCC 12 2025-07-25 22:46:54 +02:00
2 changed files with 0 additions and 30 deletions

View file

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

View file

@ -1,15 +0,0 @@
<?php
class MariaDB105 extends PatchBase {
function __construct() {
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://downloads.mariadb.org/mariadb/10.5/');
$this->patch->setBranch('10.5');
}
function check() : bool {
if ($this->fetch('https://downloads.mariadb.com/MariaDB/mariadb-10.5/source/'))
return $this->parse('/mariadb-([\d\.]+)\.tar\.gz/');
return false;
}
}
?>