mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
add dependencies for jasp-desktop
This commit is contained in:
parent
415ed2da31
commit
6fe28fe014
238 changed files with 4788 additions and 0 deletions
36
BioArchLinux/r-abtest/PKGBUILD
Normal file
36
BioArchLinux/r-abtest/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=abtest
|
||||
_pkgver=1.0.1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Bayesian A/B Testing'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-mvtnorm
|
||||
r-plotrix
|
||||
r-qgam
|
||||
r-rcolorbrewer
|
||||
r-rcpp
|
||||
r-sn
|
||||
r-truncnorm
|
||||
)
|
||||
optdepends=(
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('0f3b2952fb5892cc564acf691543eb97766499d74595493b82e812338acfe24b')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-abtest/lilac.py
Normal file
12
BioArchLinux/r-abtest/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
15
BioArchLinux/r-abtest/lilac.yaml
Normal file
15
BioArchLinux/r-abtest/lilac.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-mvtnorm
|
||||
- r-plotrix
|
||||
- r-qgam
|
||||
- r-rcolorbrewer
|
||||
- r-rcpp
|
||||
- r-sn
|
||||
- r-truncnorm
|
||||
update_on:
|
||||
- regex: abtest_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=abtest
|
72
BioArchLinux/r-afex/PKGBUILD
Normal file
72
BioArchLinux/r-afex/PKGBUILD
Normal file
|
@ -0,0 +1,72 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=afex
|
||||
_pkgver=1.1-1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Analysis of Factorial Experiments'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-car
|
||||
r-lme4
|
||||
r-lmertest
|
||||
r-pbkrtest
|
||||
r-reshape2
|
||||
)
|
||||
optdepends=(
|
||||
r-brms
|
||||
r-cardata
|
||||
r-coin
|
||||
r-cowplot
|
||||
r-dfoptim
|
||||
r-dplyr
|
||||
r-effects
|
||||
r-emmeans
|
||||
r-ez
|
||||
r-ggbeeswarm
|
||||
r-ggplot2
|
||||
r-ggpol
|
||||
r-ggpubr
|
||||
r-ggresidpanel
|
||||
r-glmmtmb
|
||||
r-jtools
|
||||
r-knitr
|
||||
r-lattice
|
||||
r-latticeextra
|
||||
r-mass
|
||||
r-matrix
|
||||
r-memss
|
||||
r-mlmrev
|
||||
r-multcomp
|
||||
r-nlme
|
||||
r-nloptr
|
||||
r-optimx
|
||||
r-parallel
|
||||
r-performance
|
||||
r-plyr
|
||||
r-psychtools
|
||||
r-r.rsp
|
||||
r-rmarkdown
|
||||
r-rstanarm
|
||||
r-see
|
||||
r-statmod
|
||||
r-testthat
|
||||
r-tidyr
|
||||
r-xtable
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('66011599b193ebbb3bd241eb7200bd68ac4b5d2d1df84e63e9fdd72fb4110427')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-afex/lilac.py
Normal file
12
BioArchLinux/r-afex/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
13
BioArchLinux/r-afex/lilac.yaml
Normal file
13
BioArchLinux/r-afex/lilac.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-car
|
||||
- r-lme4
|
||||
- r-lmertest
|
||||
- r-pbkrtest
|
||||
- r-reshape2
|
||||
update_on:
|
||||
- regex: afex_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=afex
|
26
BioArchLinux/r-auc/PKGBUILD
Normal file
26
BioArchLinux/r-auc/PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=AUC
|
||||
_pkgver=0.3.2
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Threshold Independent Performance Measures for Probabilistic Classifiers'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('836b25b654a82f6ab69b86be95acc22a214da0ad06d71eab787ae1ebe721ae1f')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-auc/lilac.py
Normal file
12
BioArchLinux/r-auc/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-auc/lilac.yaml
Normal file
7
BioArchLinux/r-auc/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: AUC_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=AUC
|
36
BioArchLinux/r-bain/PKGBUILD
Normal file
36
BioArchLinux/r-bain/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=bain
|
||||
_pkgver=0.2.8
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Bayes Factors for Informative Hypotheses'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-lavaan
|
||||
)
|
||||
optdepends=(
|
||||
r-knitr
|
||||
r-mass
|
||||
r-rmarkdown
|
||||
r-testthat
|
||||
)
|
||||
makedepends=(
|
||||
gcc-fortran
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('e6007ce4ce45fd879ab2d2d9a2d2a046e8a444055cecdef9afd99a1a5ca73980')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bain/lilac.py
Normal file
12
BioArchLinux/r-bain/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
9
BioArchLinux/r-bain/lilac.yaml
Normal file
9
BioArchLinux/r-bain/lilac.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-lavaan
|
||||
update_on:
|
||||
- regex: bain_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=bain
|
38
BioArchLinux/r-bas/PKGBUILD
Normal file
38
BioArchLinux/r-bas/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=BAS
|
||||
_pkgver=1.6.2
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Bayesian Variable Selection and Model Averaging using Bayesian Adaptive Sampling'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-covr
|
||||
r-dplyr
|
||||
r-ggally
|
||||
r-ggplot2
|
||||
r-glmbb
|
||||
r-knitr
|
||||
r-mass
|
||||
r-rmarkdown
|
||||
r-roxygen2
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('ecfc7f93d4d92d2c7c4dd72cee9b4843999e3b83ed64d46b207eca57d1931a35')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bas/lilac.py
Normal file
12
BioArchLinux/r-bas/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-bas/lilac.yaml
Normal file
7
BioArchLinux/r-bas/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: BAS_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=BAS
|
46
BioArchLinux/r-bayesfactor/PKGBUILD
Normal file
46
BioArchLinux/r-bayesfactor/PKGBUILD
Normal file
|
@ -0,0 +1,46 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=BayesFactor
|
||||
_pkgver=0.9.12-4.3
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Computation of Bayes Factors for Common Designs'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-coda
|
||||
r-gtools
|
||||
r-hypergeo
|
||||
r-matrixmodels
|
||||
r-mvtnorm
|
||||
r-pbapply
|
||||
r-rcpp
|
||||
r-rcppeigen
|
||||
r-stringr
|
||||
)
|
||||
optdepends=(
|
||||
r-arm
|
||||
r-domc
|
||||
r-foreach
|
||||
r-knitr
|
||||
r-languager
|
||||
r-lme4
|
||||
r-markdown
|
||||
r-testthat
|
||||
r-xtable
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('dcf9f88f31e7ac0451925528b025674ce38fe0c068868821c115ed42485e309c')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bayesfactor/lilac.py
Normal file
12
BioArchLinux/r-bayesfactor/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
17
BioArchLinux/r-bayesfactor/lilac.yaml
Normal file
17
BioArchLinux/r-bayesfactor/lilac.yaml
Normal file
|
@ -0,0 +1,17 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-coda
|
||||
- r-gtools
|
||||
- r-hypergeo
|
||||
- r-matrixmodels
|
||||
- r-mvtnorm
|
||||
- r-pbapply
|
||||
- r-rcpp
|
||||
- r-rcppeigen
|
||||
- r-stringr
|
||||
update_on:
|
||||
- regex: BayesFactor_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=BayesFactor
|
37
BioArchLinux/r-bayesplay/PKGBUILD
Normal file
37
BioArchLinux/r-bayesplay/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=bayesplay
|
||||
_pkgver=0.9.2
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='The Bayes Factor Playground'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('MIT')
|
||||
depends=(
|
||||
r
|
||||
r-gginnards
|
||||
)
|
||||
optdepends=(
|
||||
r-covr
|
||||
r-ggplot2
|
||||
r-knitr
|
||||
r-markdown
|
||||
r-rmarkdown
|
||||
r-testthat
|
||||
r-vdiffr
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('5b134b10c3e702b427f4a40470d21d08cc33f73c83ae324c06d788658632211a')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
install -Dm644 "${_pkgname}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bayesplay/lilac.py
Normal file
12
BioArchLinux/r-bayesplay/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
9
BioArchLinux/r-bayesplay/lilac.yaml
Normal file
9
BioArchLinux/r-bayesplay/lilac.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-gginnards
|
||||
update_on:
|
||||
- regex: bayesplay_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=bayesplay
|
53
BioArchLinux/r-bayesplot/PKGBUILD
Normal file
53
BioArchLinux/r-bayesplot/PKGBUILD
Normal file
|
@ -0,0 +1,53 @@
|
|||
# system requirements: pandoc (>= 1.12.3), pandoc-citeproc
|
||||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=bayesplot
|
||||
_pkgver=1.9.0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Plotting for Bayesian Models'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-dplyr
|
||||
r-ggplot2
|
||||
r-ggridges
|
||||
r-glue
|
||||
r-posterior
|
||||
r-reshape2
|
||||
r-rlang
|
||||
r-tibble
|
||||
r-tidyselect
|
||||
)
|
||||
optdepends=(
|
||||
r-ggfortify
|
||||
r-gridextra
|
||||
r-hexbin
|
||||
r-knitr
|
||||
r-loo
|
||||
r-rcolorbrewer
|
||||
r-rmarkdown
|
||||
r-rstan
|
||||
r-rstanarm
|
||||
r-rstantools
|
||||
r-scales
|
||||
r-shinystan
|
||||
r-survival
|
||||
r-testthat
|
||||
r-vdiffr
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('0a81a4b99cf781334e57cfc3c469fad8b932a68204016a3bbca33cab4e2a1e43')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bayesplot/lilac.py
Normal file
12
BioArchLinux/r-bayesplot/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
17
BioArchLinux/r-bayesplot/lilac.yaml
Normal file
17
BioArchLinux/r-bayesplot/lilac.yaml
Normal file
|
@ -0,0 +1,17 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-dplyr
|
||||
- r-ggplot2
|
||||
- r-ggridges
|
||||
- r-glue
|
||||
- r-posterior
|
||||
- r-reshape2
|
||||
- r-rlang
|
||||
- r-tibble
|
||||
- r-tidyselect
|
||||
update_on:
|
||||
- regex: bayesplot_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=bayesplot
|
38
BioArchLinux/r-bayesrel/PKGBUILD
Normal file
38
BioArchLinux/r-bayesrel/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=Bayesrel
|
||||
_pkgver=0.7.4.1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Bayesian Reliability Estimation'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-coda
|
||||
r-laplacesdemon
|
||||
r-lavaan
|
||||
r-progress
|
||||
r-rcpp
|
||||
r-rcpparmadillo
|
||||
r-rdpack
|
||||
)
|
||||
optdepends=(
|
||||
r-knitr
|
||||
r-rmarkdown
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('4d70b541ee41c4f030f16f7a9e0196c638fccdaa55b99919cf2e78b126aa1a15')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bayesrel/lilac.py
Normal file
12
BioArchLinux/r-bayesrel/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
15
BioArchLinux/r-bayesrel/lilac.yaml
Normal file
15
BioArchLinux/r-bayesrel/lilac.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-coda
|
||||
- r-laplacesdemon
|
||||
- r-lavaan
|
||||
- r-progress
|
||||
- r-rcpp
|
||||
- r-rcpparmadillo
|
||||
- r-rdpack
|
||||
update_on:
|
||||
- regex: Bayesrel_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=Bayesrel
|
45
BioArchLinux/r-bayestools/PKGBUILD
Normal file
45
BioArchLinux/r-bayestools/PKGBUILD
Normal file
|
@ -0,0 +1,45 @@
|
|||
# system requirements: JAGS >= 4.3.0 (https://mcmc-jags.sourceforge.io/)
|
||||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=BayesTools
|
||||
_pkgver=0.2.10
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Tools for Bayesian Analyses'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-bridgesampling
|
||||
r-coda
|
||||
r-extradistr
|
||||
r-ggplot2
|
||||
r-mvtnorm
|
||||
r-rdpack
|
||||
r-rjags
|
||||
r-runjags
|
||||
)
|
||||
optdepends=(
|
||||
r-bayesfactor
|
||||
r-covr
|
||||
r-knitr
|
||||
r-rmarkdown
|
||||
r-rstan
|
||||
r-scales
|
||||
r-testthat
|
||||
r-vdiffr
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('a')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bayestools/lilac.py
Normal file
12
BioArchLinux/r-bayestools/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
16
BioArchLinux/r-bayestools/lilac.yaml
Normal file
16
BioArchLinux/r-bayestools/lilac.yaml
Normal file
|
@ -0,0 +1,16 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-bridgesampling
|
||||
- r-coda
|
||||
- r-extradistr
|
||||
- r-ggplot2
|
||||
- r-mvtnorm
|
||||
- r-rdpack
|
||||
- r-rjags
|
||||
- r-runjags
|
||||
update_on:
|
||||
- regex: BayesTools_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=BayesTools
|
54
BioArchLinux/r-bootnet/PKGBUILD
Normal file
54
BioArchLinux/r-bootnet/PKGBUILD
Normal file
|
@ -0,0 +1,54 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=bootnet
|
||||
_pkgver=1.5
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Bootstrap Methods for Various Network Estimation Routines'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-abind
|
||||
r-corpcor
|
||||
r-dplyr
|
||||
r-ggplot2
|
||||
r-gtools
|
||||
r-igraph
|
||||
r-isingfit
|
||||
r-isingsampler
|
||||
r-mgm
|
||||
r-mvtnorm
|
||||
r-networktoolbox
|
||||
r-networktools
|
||||
r-pbapply
|
||||
r-qgraph
|
||||
r-rlang
|
||||
r-snow
|
||||
r-tibble
|
||||
r-tidyr
|
||||
)
|
||||
optdepends=(
|
||||
r-bdgraph
|
||||
r-ggmncv
|
||||
r-glasso
|
||||
r-graphicalvar
|
||||
r-huge
|
||||
r-lavaan
|
||||
r-psychtools
|
||||
r-relaimpo
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('118e35c3de19001508e9508a5678e9d358b9c8ef6890e4c79a33fa5444aeee8e')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bootnet/lilac.py
Normal file
12
BioArchLinux/r-bootnet/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
26
BioArchLinux/r-bootnet/lilac.yaml
Normal file
26
BioArchLinux/r-bootnet/lilac.yaml
Normal file
|
@ -0,0 +1,26 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-abind
|
||||
- r-corpcor
|
||||
- r-dplyr
|
||||
- r-ggplot2
|
||||
- r-gtools
|
||||
- r-igraph
|
||||
- r-isingfit
|
||||
- r-isingsampler
|
||||
- r-mgm
|
||||
- r-mvtnorm
|
||||
- r-networktoolbox
|
||||
- r-networktools
|
||||
- r-pbapply
|
||||
- r-qgraph
|
||||
- r-rlang
|
||||
- r-snow
|
||||
- r-tibble
|
||||
- r-tidyr
|
||||
update_on:
|
||||
- regex: bootnet_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=bootnet
|
47
BioArchLinux/r-bridgesampling/PKGBUILD
Normal file
47
BioArchLinux/r-bridgesampling/PKGBUILD
Normal file
|
@ -0,0 +1,47 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=bridgesampling
|
||||
_pkgver=1.1-2
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Bridge Sampling for Marginal Likelihoods and Bayes Factors'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-brobdingnag
|
||||
r-coda
|
||||
r-mvtnorm
|
||||
r-scales
|
||||
r-stringr
|
||||
)
|
||||
optdepends=(
|
||||
r-bayesfactor
|
||||
r-knitr
|
||||
r-mcmcpack
|
||||
r-nimble
|
||||
r-r.rsp
|
||||
r-r2jags
|
||||
r-rcpp
|
||||
r-rcppeigen
|
||||
r-rjags
|
||||
r-rmarkdown
|
||||
r-rstan
|
||||
r-rstanarm
|
||||
r-runjags
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('54ecd39aa2e36d4d521d3d36425f9fe56a3f8547df6048c814c5931d790f3e6b')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-bridgesampling/lilac.py
Normal file
12
BioArchLinux/r-bridgesampling/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
13
BioArchLinux/r-bridgesampling/lilac.yaml
Normal file
13
BioArchLinux/r-bridgesampling/lilac.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-brobdingnag
|
||||
- r-coda
|
||||
- r-mvtnorm
|
||||
- r-scales
|
||||
- r-stringr
|
||||
update_on:
|
||||
- regex: bridgesampling_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=bridgesampling
|
29
BioArchLinux/r-brobdingnag/PKGBUILD
Normal file
29
BioArchLinux/r-brobdingnag/PKGBUILD
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=Brobdingnag
|
||||
_pkgver=1.2-7
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Very Large Numbers in R'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-cubature
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('73a734342736da5b29c2827d91f662101873503af7ad9cdf9e9e697bb32dd742')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-brobdingnag/lilac.py
Normal file
12
BioArchLinux/r-brobdingnag/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-brobdingnag/lilac.yaml
Normal file
7
BioArchLinux/r-brobdingnag/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: Brobdingnag_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=Brobdingnag
|
30
BioArchLinux/r-ca/PKGBUILD
Normal file
30
BioArchLinux/r-ca/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=ca
|
||||
_pkgver=0.71.1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Simple, Multiple and Joint Correspondence Analysis'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-rgl
|
||||
r-vcd
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('040c2fc94c356075f116cc7cd880530b3c9e02206c0035182c03a525ee99b424')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-ca/lilac.py
Normal file
12
BioArchLinux/r-ca/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-ca/lilac.yaml
Normal file
7
BioArchLinux/r-ca/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: ca_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=ca
|
37
BioArchLinux/r-candisc/PKGBUILD
Normal file
37
BioArchLinux/r-candisc/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=candisc
|
||||
_pkgver=0.8-6
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Visualizing Generalized Canonical Discriminant and Canonical Correlation Analysis'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-car
|
||||
r-heplots
|
||||
)
|
||||
optdepends=(
|
||||
r-corrplot
|
||||
r-knitr
|
||||
r-mass
|
||||
r-rgl
|
||||
r-rmarkdown
|
||||
r-rpart
|
||||
r-rpart.plot
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('9645a3c0f8a0f7ee1e0c4de6cac4d3432177e6d3975fa538cdb060f5e480709d')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-candisc/lilac.py
Normal file
12
BioArchLinux/r-candisc/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
10
BioArchLinux/r-candisc/lilac.yaml
Normal file
10
BioArchLinux/r-candisc/lilac.yaml
Normal file
|
@ -0,0 +1,10 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-car
|
||||
- r-heplots
|
||||
update_on:
|
||||
- regex: candisc_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=candisc
|
30
BioArchLinux/r-cocor/PKGBUILD
Normal file
30
BioArchLinux/r-cocor/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=cocor
|
||||
_pkgver=1.1-3
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Comparing Correlations'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-rkward
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('22503ef02f450e2c60056d286603faa3ac0789fc45ed0b9e9788c6eb73f6df80')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-cocor/lilac.py
Normal file
12
BioArchLinux/r-cocor/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-cocor/lilac.yaml
Normal file
7
BioArchLinux/r-cocor/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: cocor_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=cocor
|
30
BioArchLinux/r-conf.design/PKGBUILD
Normal file
30
BioArchLinux/r-conf.design/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=conf.design
|
||||
_pkgver=2.0.0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Construction of factorial designs'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-stats
|
||||
r-utils
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('a178552dc68d98f9ffee5ca78379da3d58158ea0818037bb293d603925ed6d1b')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-conf.design/lilac.py
Normal file
12
BioArchLinux/r-conf.design/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-conf.design/lilac.yaml
Normal file
7
BioArchLinux/r-conf.design/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: conf.design_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=conf.design
|
26
BioArchLinux/r-contfrac/PKGBUILD
Normal file
26
BioArchLinux/r-contfrac/PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=contfrac
|
||||
_pkgver=1.1-12
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Continued Fractions'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('95bfc5e970513416c080486a1cd8dfd9f8d59fb691b02ef6ccbe0ce1ed61056b')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-contfrac/lilac.py
Normal file
12
BioArchLinux/r-contfrac/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-contfrac/lilac.yaml
Normal file
7
BioArchLinux/r-contfrac/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: contfrac_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=contfrac
|
31
BioArchLinux/r-daewr/PKGBUILD
Normal file
31
BioArchLinux/r-daewr/PKGBUILD
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=daewr
|
||||
_pkgver=1.2-7
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Design and Analysis of Experiments with R'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-frf2
|
||||
r-stringi
|
||||
)
|
||||
optdepends=(
|
||||
r-r.rsp
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('87ea6cc327f2acd5479bf1ae749f4203ebddac5679d3c8b2588dfd5173ad108d')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-daewr/lilac.py
Normal file
12
BioArchLinux/r-daewr/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
10
BioArchLinux/r-daewr/lilac.yaml
Normal file
10
BioArchLinux/r-daewr/lilac.yaml
Normal file
|
@ -0,0 +1,10 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-frf2
|
||||
- r-stringi
|
||||
update_on:
|
||||
- regex: daewr_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=daewr
|
29
BioArchLinux/r-desirability/PKGBUILD
Normal file
29
BioArchLinux/r-desirability/PKGBUILD
Normal file
|
@ -0,0 +1,29 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=desirability
|
||||
_pkgver=2.1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Function Optimization and Ranking via Desirability Functions'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-lattice
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('b33af2ce184532b819f21a959af0b752991b764ef301051873141865eeee8f24')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-desirability/lilac.py
Normal file
12
BioArchLinux/r-desirability/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-desirability/lilac.yaml
Normal file
7
BioArchLinux/r-desirability/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: desirability_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=desirability
|
34
BioArchLinux/r-digittests/PKGBUILD
Normal file
34
BioArchLinux/r-digittests/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=digitTests
|
||||
_pkgver=0.1.1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Tests for Detecting Irregular Digit Patterns'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-benford.analysis
|
||||
r-benfordtests
|
||||
r-beyondbenford
|
||||
r-knitr
|
||||
r-rmarkdown
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('fbbe4e65197a8607e6f79efeb04288c1ebac0007581fce0fb104abb5bfd733e1')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-digittests/lilac.py
Normal file
12
BioArchLinux/r-digittests/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-digittests/lilac.yaml
Normal file
7
BioArchLinux/r-digittests/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: digitTests_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=digitTests
|
36
BioArchLinux/r-doe.base/PKGBUILD
Normal file
36
BioArchLinux/r-doe.base/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=DoE.base
|
||||
_pkgver=1.2-1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Full Factorials, Orthogonal Arrays and Base Utilities for DoE Packages'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-combinat
|
||||
r-conf.design
|
||||
r-numbers
|
||||
r-partitions
|
||||
r-vcd
|
||||
)
|
||||
optdepends=(
|
||||
r-doe.wrapper
|
||||
r-frf2
|
||||
r-rcolorbrewer
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('29c5239281cffc6efc954e383188499b1ddb6a97c2675436746b1503bffe0f08')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-doe.base/lilac.py
Normal file
12
BioArchLinux/r-doe.base/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
13
BioArchLinux/r-doe.base/lilac.yaml
Normal file
13
BioArchLinux/r-doe.base/lilac.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-combinat
|
||||
- r-conf.design
|
||||
- r-numbers
|
||||
- r-partitions
|
||||
- r-vcd
|
||||
update_on:
|
||||
- regex: DoE.base_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=DoE.base
|
37
BioArchLinux/r-dygraphs/PKGBUILD
Normal file
37
BioArchLinux/r-dygraphs/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=dygraphs
|
||||
_pkgver=1.1.1.6
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc="Interface to 'Dygraphs' Interactive Time Series Charting Library"
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('MIT')
|
||||
depends=(
|
||||
r
|
||||
r-htmltools
|
||||
r-htmlwidgets
|
||||
r-magrittr
|
||||
r-xts
|
||||
r-zoo
|
||||
)
|
||||
optdepends=(
|
||||
r-rmarkdown
|
||||
r-shiny
|
||||
r-testthat
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('c3d331f30012e721a048e04639f60ea738cd7e54e4f930ac9849b95f0f005208')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
install -Dm644 "${_pkgname}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-dygraphs/lilac.py
Normal file
12
BioArchLinux/r-dygraphs/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
13
BioArchLinux/r-dygraphs/lilac.yaml
Normal file
13
BioArchLinux/r-dygraphs/lilac.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-htmltools
|
||||
- r-htmlwidgets
|
||||
- r-magrittr
|
||||
- r-xts
|
||||
- r-zoo
|
||||
update_on:
|
||||
- regex: dygraphs_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=dygraphs
|
26
BioArchLinux/r-eigenmodel/PKGBUILD
Normal file
26
BioArchLinux/r-eigenmodel/PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=eigenmodel
|
||||
_pkgver=1.11
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Semiparametric Factor and Regression Models for Symmetric Relational Data'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('8dac650db4331c427c1afbfc7296889d3eb164c0b5feee99e9c37533ce0776d0')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-eigenmodel/lilac.py
Normal file
12
BioArchLinux/r-eigenmodel/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-eigenmodel/lilac.yaml
Normal file
7
BioArchLinux/r-eigenmodel/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: eigenmodel_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=eigenmodel
|
31
BioArchLinux/r-elliptic/PKGBUILD
Normal file
31
BioArchLinux/r-elliptic/PKGBUILD
Normal file
|
@ -0,0 +1,31 @@
|
|||
# system requirements: pari/gp
|
||||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=elliptic
|
||||
_pkgver=1.4-0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Weierstrass and Jacobi Elliptic Functions'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-calibrator
|
||||
r-emulator
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('b65729b1a1c7a84a5b1a59bfc893a2d35106853eaadcae31cda5c9ee3c500bb6')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-elliptic/lilac.py
Normal file
12
BioArchLinux/r-elliptic/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-elliptic/lilac.yaml
Normal file
7
BioArchLinux/r-elliptic/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: elliptic_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=elliptic
|
26
BioArchLinux/r-fadist/PKGBUILD
Normal file
26
BioArchLinux/r-fadist/PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=FAdist
|
||||
_pkgver=2.4
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Distributions that are Sometimes Used in Hydrology'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('38e5293e7011bf4cbced147eb5bd89adda1f10a0c7121ca5089dcee7504cdc98')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-fadist/lilac.py
Normal file
12
BioArchLinux/r-fadist/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-fadist/lilac.yaml
Normal file
7
BioArchLinux/r-fadist/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: FAdist_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=FAdist
|
37
BioArchLinux/r-gginnards/PKGBUILD
Normal file
37
BioArchLinux/r-gginnards/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=gginnards
|
||||
_pkgver=0.1.0-1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc="Explore the Innards of 'ggplot2' Objects"
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-ggplot2
|
||||
r-magrittr
|
||||
r-rlang
|
||||
r-stringr
|
||||
r-tibble
|
||||
)
|
||||
optdepends=(
|
||||
r-knitr
|
||||
r-pryr
|
||||
r-rmarkdown
|
||||
r-sf
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('5d0a37295b3b2b067daeca4d9334753e9692fa52872ddca09a58f959b5cefecd')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-gginnards/lilac.py
Normal file
12
BioArchLinux/r-gginnards/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
13
BioArchLinux/r-gginnards/lilac.yaml
Normal file
13
BioArchLinux/r-gginnards/lilac.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-ggplot2
|
||||
- r-magrittr
|
||||
- r-rlang
|
||||
- r-stringr
|
||||
- r-tibble
|
||||
update_on:
|
||||
- regex: gginnards_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=gginnards
|
43
BioArchLinux/r-ggparty/PKGBUILD
Normal file
43
BioArchLinux/r-ggparty/PKGBUILD
Normal file
|
@ -0,0 +1,43 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=ggparty
|
||||
_pkgver=1.0.0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc="'ggplot' Visualizations for the 'partykit' Package"
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-checkmate
|
||||
r-ggplot2
|
||||
r-gtable
|
||||
r-partykit
|
||||
r-rlang
|
||||
)
|
||||
optdepends=(
|
||||
r-aer
|
||||
r-coin
|
||||
r-knitr
|
||||
r-mass
|
||||
r-mlbench
|
||||
r-pander
|
||||
r-rmarkdown
|
||||
r-testthat
|
||||
r-th.data
|
||||
r-vdiffr
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('0e7b29ee4519306c81f5c17f08131d6c466f3ee68f4b65e41d7482916ec9d068')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-ggparty/lilac.py
Normal file
12
BioArchLinux/r-ggparty/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
13
BioArchLinux/r-ggparty/lilac.yaml
Normal file
13
BioArchLinux/r-ggparty/lilac.yaml
Normal file
|
@ -0,0 +1,13 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-checkmate
|
||||
- r-ggplot2
|
||||
- r-gtable
|
||||
- r-partykit
|
||||
- r-rlang
|
||||
update_on:
|
||||
- regex: ggparty_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=ggparty
|
38
BioArchLinux/r-ggpol/PKGBUILD
Normal file
38
BioArchLinux/r-ggpol/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=ggpol
|
||||
_pkgver=0.0.7
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc="Visualizing Social Science Data with 'ggplot2'"
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('MIT')
|
||||
depends=(
|
||||
r
|
||||
r-dplyr
|
||||
r-ggplot2
|
||||
r-glue
|
||||
r-gtable
|
||||
r-plyr
|
||||
r-rlang
|
||||
r-tibble
|
||||
)
|
||||
optdepends=(
|
||||
r-knitr
|
||||
r-rmarkdown
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('35684f5be49148e584269d63e5cc34cc46b6c16e9e90ca435952cecaa711b987')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
install -Dm644 "${_pkgname}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-ggpol/lilac.py
Normal file
12
BioArchLinux/r-ggpol/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
15
BioArchLinux/r-ggpol/lilac.yaml
Normal file
15
BioArchLinux/r-ggpol/lilac.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-dplyr
|
||||
- r-ggplot2
|
||||
- r-glue
|
||||
- r-gtable
|
||||
- r-plyr
|
||||
- r-rlang
|
||||
- r-tibble
|
||||
update_on:
|
||||
- regex: ggpol_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=ggpol
|
30
BioArchLinux/r-gmedian/PKGBUILD
Normal file
30
BioArchLinux/r-gmedian/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=Gmedian
|
||||
_pkgver=1.2.6
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Geometric Median, k-Medians Clustering and Robust Median PCA'
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-rcpp
|
||||
r-rcpparmadillo
|
||||
r-robustbase
|
||||
r-rspectra
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('a')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-gmedian/lilac.py
Normal file
12
BioArchLinux/r-gmedian/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
12
BioArchLinux/r-gmedian/lilac.yaml
Normal file
12
BioArchLinux/r-gmedian/lilac.yaml
Normal file
|
@ -0,0 +1,12 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-rcpp
|
||||
- r-rcpparmadillo
|
||||
- r-robustbase
|
||||
- r-rspectra
|
||||
update_on:
|
||||
- regex: Gmedian_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=Gmedian
|
30
BioArchLinux/r-gnorm/PKGBUILD
Normal file
30
BioArchLinux/r-gnorm/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=gnorm
|
||||
_pkgver=1.0.0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Generalized Normal/Exponential Power Distribution'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
optdepends=(
|
||||
r-knitr
|
||||
r-rmarkdown
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('173399d6b810b6455799c34be11dd66d2d635f33332117232c931fb0381e049e')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-gnorm/lilac.py
Normal file
12
BioArchLinux/r-gnorm/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-gnorm/lilac.yaml
Normal file
7
BioArchLinux/r-gnorm/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: gnorm_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=gnorm
|
26
BioArchLinux/r-gparotation/PKGBUILD
Normal file
26
BioArchLinux/r-gparotation/PKGBUILD
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=GPArotation
|
||||
_pkgver=2022.4-1
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='GPA Factor Rotation'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('231e7edcdcc091fbecfb4f2e88d1a4344967cf7ea58074b385a4b8b48d9da224')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-gparotation/lilac.py
Normal file
12
BioArchLinux/r-gparotation/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
7
BioArchLinux/r-gparotation/lilac.yaml
Normal file
7
BioArchLinux/r-gparotation/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
update_on:
|
||||
- regex: GPArotation_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=GPArotation
|
12
BioArchLinux/r-gtable/lilac.py
Normal file
12
BioArchLinux/r-gtable/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
40
BioArchLinux/r-heplots/PKGBUILD
Normal file
40
BioArchLinux/r-heplots/PKGBUILD
Normal file
|
@ -0,0 +1,40 @@
|
|||
# Maintainer: sukanka <su975853527@gmail.com>
|
||||
|
||||
_pkgname=heplots
|
||||
_pkgver=1.3-9
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc='Visualizing Hypothesis Tests in Multivariate Linear Models'
|
||||
arch=('any')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(
|
||||
r
|
||||
r-car
|
||||
)
|
||||
optdepends=(
|
||||
r-animation
|
||||
r-candisc
|
||||
r-corrgram
|
||||
r-effects
|
||||
r-gplots
|
||||
r-lattice
|
||||
r-mvinfluence
|
||||
r-nlme
|
||||
r-reshape
|
||||
r-reshape2
|
||||
r-rgl
|
||||
)
|
||||
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||
sha256sums=('a')
|
||||
|
||||
build() {
|
||||
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
|
||||
}
|
||||
|
||||
package() {
|
||||
install -dm0755 "${pkgdir}/usr/lib/R/library"
|
||||
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
|
||||
}
|
||||
# vim:set ts=2 sw=2 et:
|
12
BioArchLinux/r-heplots/lilac.py
Normal file
12
BioArchLinux/r-heplots/lilac.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env python3
|
||||
from lilaclib import *
|
||||
|
||||
def pre_build():
|
||||
for line in edit_file('PKGBUILD'):
|
||||
if line.startswith('_pkgver='):
|
||||
line = f'_pkgver={_G.newver}'
|
||||
print(line)
|
||||
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
|
||||
|
||||
def post_build():
|
||||
git_pkgbuild_commit()
|
9
BioArchLinux/r-heplots/lilac.yaml
Normal file
9
BioArchLinux/r-heplots/lilac.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
build_prefix: extra-x86_64
|
||||
maintainers:
|
||||
- github: sukanka
|
||||
repo_depends:
|
||||
- r-car
|
||||
update_on:
|
||||
- regex: heplots_([\d._-]+).tar.gz
|
||||
source: regex
|
||||
url: https://cran.r-project.org/package=heplots
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue