Add MariaDB 10.5

This commit is contained in:
Steffen Lange 2020-07-02 17:35:17 +02:00
parent 55e1eebec4
commit 812c30049a

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;
}
}
?>