this repo has no description

Merge pull request #21213 from UnixJunkie/orrf_300

new file: packages/orrandomForest/orrandomForest.3.0.0/opam

Kate 0360854d c5f97561

Changed files
+59
packages
orrandomForest
orrandomForest.3.0.0
+5
packages/orrandomForest/orrandomForest.3.0.0/files/install_matrix.r
···
+
pkg <- 'Matrix'
+
if (!require(pkg, character.only = TRUE)) {
+
install.packages(pkg, dependencies = TRUE,
+
repos='http://cran.r-project.org')
+
}
+5
packages/orrandomForest/orrandomForest.3.0.0/files/install_randomForest.r
···
+
pkg <- 'randomForest'
+
if (!require(pkg, character.only = TRUE)) {
+
install.packages(pkg, dependencies = TRUE,
+
repos='http://cran.r-project.org')
+
}
+49
packages/orrandomForest/orrandomForest.3.0.0/opam
···
+
opam-version: "2.0"
+
maintainer: "unixjunkie@sdf.org"
+
authors: ["Francois Berenger"]
+
homepage: "https://github.com/UnixJunkie/orrandomForest"
+
bug-reports: "https://github.com/UnixJunkie/orrandomForest/issues"
+
dev-repo: "git+https://github.com/UnixJunkie/orrandomForest.git"
+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
+
build: [
+
["dune" "build" "-p" name "-j" jobs]
+
]
+
install: [
+
["R" "CMD" "BATCH" "install_randomForest.r"]
+
["R" "CMD" "BATCH" "install_matrix.r"]
+
]
+
depends: [
+
"batteries"
+
"conf-gnuplot" {with-test}
+
"conf-r"
+
"cpm"
+
"dolog" {>= "4.0.0"}
+
"dune" {>= "1.0.0"}
+
"line_oriented"
+
"minicli"
+
"ocaml"
+
"parany"
+
]
+
x-ci-accept-failures: ["debian-unstable"]
+
post-messages: [
+
"Please interact with R to install needed things in user-space:
+
R
+
install.packages('Marix', repos='http://cran.r-project.org')
+
install.packages('randomForest', repos='http://cran.r-project.org')" {failure}
+
]
+
synopsis: "Classification or regression using Random Forests"
+
description: """
+
Uses the R randomForest package under the carpet.
+
This package really fires up and talks to an R interpreter.
+
Data are exchanged via text files.
+
For details, cf.
+
Breiman, L., 2001. Random forests. Machine learning, 45(1), pp.5-32
+
(DOI = 10.1023/A:1010933404324)."""
+
extra-files: [
+
["install_randomForest.r" "md5=c39ce051de6937deb5095a1906d86c0c"]
+
["install_matrix.r" "md5=ab1c0ae726388159b1315bc9fe61a013"]
+
]
+
url {
+
src: "https://github.com/UnixJunkie/orrandomForest/archive/v3.0.0.tar.gz"
+
checksum: "md5=4595d09aeef0beae1575bf66d60ab24a"
+
}