Compare commits
2 commits
cbb0e8c616
...
d5f9784e74
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d5f9784e74 | ||
|
|
a945d8ca44 |
2 changed files with 0 additions and 30 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue