Compare commits

..

No commits in common. "d5f9784e7481030b48ca279f363c524297448879" and "cbb0e8c616c7631dfd6ff7c06b238899474f9edd" have entirely different histories.

2 changed files with 30 additions and 0 deletions

15
modules/GCC12.php Normal file
View file

@ -0,0 +1,15 @@
<?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;
}
}
?>

15
modules/MariaDB105.php Normal file
View file

@ -0,0 +1,15 @@
<?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;
}
}
?>