This commit is contained in:
Steffen Lange 2021-03-04 17:04:47 +01:00
parent 15fe370689
commit e67c71f8b5

14
modules/RProject.php Normal file
View file

@ -0,0 +1,14 @@
<?php
class RProject extends PatchBase {
function __construct() {
parent::__construct('R Core Team', 'R', 'https://www.r-project.org/');
}
function check() : bool {
if ($this->fetch('https://cran.r-project.org/src/base/VERSION-INFO.dcf'))
return $this->parse('/Release: ([\d\.]+)/');
return false;
}
}
?>