mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
Merge pull request #58 from BioArchLinux/jasp-desps
Add all for jasp-desktop
This commit is contained in:
commit
585c9405af
112 changed files with 2836 additions and 0 deletions
121
BioArchLinux/jasp-desktop/PKGBUILD
Normal file
121
BioArchLinux/jasp-desktop/PKGBUILD
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
|
||||||
|
_pkgname=jasp
|
||||||
|
_pkgver=0.16.2
|
||||||
|
pkgname=jasp-desktop
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="A complete statistical package for both Bayesian and Frequentist statistical methods"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://github.com/jasp-stats/jasp-desktop"
|
||||||
|
license=('AGPL3')
|
||||||
|
makedepends=("cmake" 'boost' 'jsoncpp'
|
||||||
|
'openssl'
|
||||||
|
'autoconf'
|
||||||
|
'zlib'
|
||||||
|
'bison'
|
||||||
|
'flex'
|
||||||
|
'jags'
|
||||||
|
'gcc-fortran'
|
||||||
|
'qtcreator'
|
||||||
|
)
|
||||||
|
depends=('r'
|
||||||
|
'qt6-5compat'
|
||||||
|
'readstat'
|
||||||
|
'libarchive'
|
||||||
|
'r-rinside'
|
||||||
|
'qt6-base'
|
||||||
|
'qt6-webengine'
|
||||||
|
|
||||||
|
# jaspBase
|
||||||
|
"r-jaspbase"
|
||||||
|
"r-jaspgraphs"
|
||||||
|
"r-jaspresults"
|
||||||
|
"r-jasptools"
|
||||||
|
|
||||||
|
#jaspCommon
|
||||||
|
"r-jaspdescriptives"
|
||||||
|
"r-jaspttests"
|
||||||
|
"r-jaspanova"
|
||||||
|
"r-jaspmixedmodels"
|
||||||
|
"r-jaspregression"
|
||||||
|
"r-jaspfrequencies"
|
||||||
|
"r-jaspfactor"
|
||||||
|
|
||||||
|
#jaspExtra
|
||||||
|
"r-jaspaudit"
|
||||||
|
"r-jaspbain"
|
||||||
|
"r-jaspbsts"
|
||||||
|
"r-jaspcircular"
|
||||||
|
"r-jaspcochrane"
|
||||||
|
"r-jaspdistributions"
|
||||||
|
"r-jaspequivalencettests"
|
||||||
|
"r-jaspjags"
|
||||||
|
"r-jasplearnbayes"
|
||||||
|
"r-jaspmachinelearning"
|
||||||
|
"r-jaspmetaanalysis"
|
||||||
|
"r-jaspnetwork"
|
||||||
|
"r-jaspprocesscontrol"
|
||||||
|
"r-jaspreliability"
|
||||||
|
"r-jaspsem"
|
||||||
|
"r-jaspsummarystatistics"
|
||||||
|
"r-jaspvisualmodeling"
|
||||||
|
"r-jaspprophet"
|
||||||
|
)
|
||||||
|
provides=($_pkgname)
|
||||||
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/jasp-stats/jasp-desktop/archive/refs/tags/v${pkgver}.tar.gz"
|
||||||
|
"${_pkgname}".patch
|
||||||
|
'jasp.sh'
|
||||||
|
"jaspColumnEncoder::git+https://github.com/jasp-stats/jaspColumnEncoder.git"
|
||||||
|
'jaspResults::git+https://github.com/jasp-stats/jaspResults.git'
|
||||||
|
)
|
||||||
|
sha256sums=('6f62db1b2b0741c894a7937f413799887e0d443f25f1b85d59e914847b14fff1'
|
||||||
|
'3e359651595e76790ea287b57cfd629279f027a9934a36b95b2825c2ba3bf43d'
|
||||||
|
'e0714d980e7549b4c7dcbae50370e95b6ad2e7f0cf21a534ceb3a5a83ee583fd'
|
||||||
|
'SKIP'
|
||||||
|
'SKIP'
|
||||||
|
)
|
||||||
|
|
||||||
|
prepare(){
|
||||||
|
cd $srcdir/${pkgname}-${pkgver}
|
||||||
|
patch --strip=1 < ../${_pkgname}.patch
|
||||||
|
cp -rf $srcdir/jaspColumnEncoder/* Common/jaspColumnEncoder
|
||||||
|
cp -rf $srcdir/jaspResults/* R-Interface/jaspResults
|
||||||
|
|
||||||
|
find Tools/CMake -name *.cmake -print0 | xargs -0 sed -i "s|/usr/local|/usr|g"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
build(){
|
||||||
|
cd $srcdir/${pkgname}-${pkgver}
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R
|
||||||
|
cmake -S . -B build -DCUSTOM_R_PATH=/usr/lib/R -DLINUX_LOCAL_BUILD=OFF -DINSTALL_R_MODULES=OFF \
|
||||||
|
-DUSE_LOCAL_R_LIBS_PATH=",lib=\"${srcdir}/usr/lib/R\"" \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr/lib/${pkgname} -DCMAKE_INSTALL_LIBDIR=lib
|
||||||
|
|
||||||
|
cmake --build build -- -j 5
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd $srcdir/${pkgname}-${pkgver}/build
|
||||||
|
make install DESTDIR=${pkgdir}
|
||||||
|
install -Dm755 $srcdir/jasp.sh ${pkgdir}/usr/bin/jasp
|
||||||
|
|
||||||
|
cd ${pkgdir}/usr/lib/${pkgname}
|
||||||
|
mv share ${pkgdir}/usr
|
||||||
|
mv Resources ${pkgdir}/usr/share/${pkgname}
|
||||||
|
ln -s /usr/share/${pkgname} ${pkgdir}/usr/lib/${pkgname}/Resources
|
||||||
|
|
||||||
|
rm -rf lib64
|
||||||
|
rm -rf Modules/{renv-cache,*.log}
|
||||||
|
|
||||||
|
|
||||||
|
# fix RPATH
|
||||||
|
patchelf --add-rpath /usr/lib/R/library/RInside/lib/ \
|
||||||
|
${pkgdir}/usr/lib/jasp-desktop/bin/JASPEngine
|
||||||
|
sed -i "s|^Exec.*|Exec=jasp %f|g" \
|
||||||
|
${pkgdir}/usr/share/applications/org.jaspstats.JASP.desktop
|
||||||
|
|
||||||
|
rm -rf ${pkgdir}/usr/lib/jasp-desktop/{renv-root,renv-cache}
|
||||||
|
}
|
33
BioArchLinux/jasp-desktop/jasp.patch
Normal file
33
BioArchLinux/jasp-desktop/jasp.patch
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
diff --color --unified --recursive --text jasp-desktop-0.16.2/Tools/CMake/R.cmake jasp-desktop-0.16.21/Tools/CMake/R.cmake
|
||||||
|
--- jasp-desktop-0.16.2/Tools/CMake/R.cmake 2022-04-19 15:47:06.000000000 +0800
|
||||||
|
+++ jasp-desktop-0.16.21/Tools/CMake/R.cmake 2022-05-23 01:21:50.757847997 +0800
|
||||||
|
@@ -706,8 +706,9 @@
|
||||||
|
set(R_EXECUTABLE "${R_HOME_PATH}/bin/R")
|
||||||
|
set(RCPP_PATH "${R_LIBRARY_PATH}/Rcpp")
|
||||||
|
set(RINSIDE_PATH "${R_LIBRARY_PATH}/RInside")
|
||||||
|
-
|
||||||
|
- set(USE_LOCAL_R_LIBS_PATH ", lib='${R_LIBRARY_PATH}'")
|
||||||
|
+ if(NOT USE_LOCAL_R_LIBS_PATH)
|
||||||
|
+ set(USE_LOCAL_R_LIBS_PATH ", lib='${R_LIBRARY_PATH}'")
|
||||||
|
+ endif(NOT USE_LOCAL_R_LIBS_PATH)
|
||||||
|
|
||||||
|
message(CHECK_START "Looking for R.h")
|
||||||
|
set(R_INCLUDE_PATH "${R_HOME_PATH}/include")
|
||||||
|
diff --color --unified --recursive --text jasp-desktop-0.16.2/Tools/CMake/Modules.cmake jasp-desktop-0.16.21/Tools/CMake/Modules.cmake
|
||||||
|
--- jasp-desktop-0.16.2/Tools/CMake/Modules.cmake 2022-04-19 15:47:06.000000000 +0800
|
||||||
|
+++ jasp-desktop-0.16.21/Tools/CMake/Modules.cmake 2022-05-23 02:02:39.562203992 +0800
|
||||||
|
@@ -158,14 +158,6 @@
|
||||||
|
if ('jaspBase' %in% installed.packages()) {
|
||||||
|
cat(NULL, file='${MODULES_BINARY_PATH}/jaspBase-installed-successfully.log')
|
||||||
|
} else {
|
||||||
|
- install.packages(c('ggplot2', 'gridExtra', 'gridGraphics',
|
||||||
|
- 'jsonlite', 'modules', 'officer', 'pkgbuild',
|
||||||
|
- 'plyr', 'qgraph', 'ragg', 'R6', 'renv',
|
||||||
|
- 'rjson', 'rvg', 'svglite', 'systemfonts',
|
||||||
|
- 'withr', 'testthat',
|
||||||
|
- 'data.table', 'httr', 'lifecycle',
|
||||||
|
- 'pkgload', 'remotes', 'stringi', 'stringr',
|
||||||
|
- 'vdiffr'), type='${R_PKG_TYPE}', repos='${R_REPOSITORY}' ${USE_LOCAL_R_LIBS_PATH})
|
||||||
|
install.packages('${PROJECT_SOURCE_DIR}/Engine/jaspBase/', type='source', repos=NULL ${USE_LOCAL_R_LIBS_PATH}, INSTALL_opts='--no-multiarch --no-docs --no-test-load')
|
||||||
|
}
|
||||||
|
")
|
12
BioArchLinux/jasp-desktop/lilac.py
Normal file
12
BioArchLinux/jasp-desktop/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/jasp-desktop/lilac.yaml
Normal file
40
BioArchLinux/jasp-desktop/lilac.yaml
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- "r-rinside"
|
||||||
|
- "r-jaspbase"
|
||||||
|
- "r-jaspgraphs"
|
||||||
|
- "r-jaspresults"
|
||||||
|
- "r-jasptools"
|
||||||
|
- "r-jaspdescriptives"
|
||||||
|
- "r-jaspttests"
|
||||||
|
- "r-jaspanova"
|
||||||
|
- "r-jaspmixedmodels"
|
||||||
|
- "r-jaspregression"
|
||||||
|
- "r-jaspfrequencies"
|
||||||
|
- "r-jaspfactor"
|
||||||
|
- "r-jaspaudit"
|
||||||
|
- "r-jaspbain"
|
||||||
|
- "r-jaspcircular"
|
||||||
|
- "r-jaspcochrane"
|
||||||
|
- "r-jaspdistributions"
|
||||||
|
- "r-jaspequivalencettests"
|
||||||
|
- "r-jaspjags"
|
||||||
|
- "r-jasplearnbayes"
|
||||||
|
- "r-jaspmachinelearning"
|
||||||
|
- "r-jaspmetaanalysis"
|
||||||
|
- "r-jaspnetwork"
|
||||||
|
- "r-jaspprocesscontrol"
|
||||||
|
- "r-jaspreliability"
|
||||||
|
- "r-jaspsem"
|
||||||
|
- "r-jaspsummarystatistics"
|
||||||
|
- "r-jaspvisualmodeling"
|
||||||
|
- "r-jaspprophet"
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- source: github
|
||||||
|
github: jasp-stats/jasp-desktop
|
||||||
|
use_latest_release: true
|
30
BioArchLinux/r-boom/PKGBUILD
Normal file
30
BioArchLinux/r-boom/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# system requirements: GNU Make, C++11
|
||||||
|
# Maintainer: sukanka <su975853527@gmail.com>
|
||||||
|
|
||||||
|
_pkgname=Boom
|
||||||
|
_pkgver=0.9.10
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Bayesian Object Oriented Modeling'
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('LGPL')
|
||||||
|
depends=(
|
||||||
|
r
|
||||||
|
)
|
||||||
|
optdepends=(
|
||||||
|
r-testthat
|
||||||
|
)
|
||||||
|
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||||
|
sha256sums=('403c1df9e3adbdf79b393c04cccfe99e6fbda352cce340eb5e2e65bcc61fa1f0')
|
||||||
|
|
||||||
|
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-boom/lilac.py
Normal file
12
BioArchLinux/r-boom/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-boom/lilac.yaml
Normal file
7
BioArchLinux/r-boom/lilac.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
update_on:
|
||||||
|
- regex: Boom_([\d._-]+).tar.gz
|
||||||
|
source: regex
|
||||||
|
url: https://cran.r-project.org/package=Boom
|
33
BioArchLinux/r-boomspikeslab/PKGBUILD
Normal file
33
BioArchLinux/r-boomspikeslab/PKGBUILD
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# Maintainer: sukanka <su975853527@gmail.com>
|
||||||
|
|
||||||
|
_pkgname=BoomSpikeSlab
|
||||||
|
_pkgver=1.2.5
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='MCMC for Spike and Slab Regression'
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('LGPL')
|
||||||
|
depends=(
|
||||||
|
r
|
||||||
|
r-boom
|
||||||
|
)
|
||||||
|
optdepends=(
|
||||||
|
r-igraph
|
||||||
|
r-mass
|
||||||
|
r-mlbench
|
||||||
|
r-testthat
|
||||||
|
)
|
||||||
|
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||||
|
sha256sums=('bc88ad95075b91799476e9e56281e4bf421106601acdbee5de783c9048b22bf8')
|
||||||
|
|
||||||
|
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-boomspikeslab/lilac.py
Normal file
12
BioArchLinux/r-boomspikeslab/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-boomspikeslab/lilac.yaml
Normal file
9
BioArchLinux/r-boomspikeslab/lilac.yaml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
repo_depends:
|
||||||
|
- r-boom
|
||||||
|
update_on:
|
||||||
|
- regex: BoomSpikeSlab_([\d._-]+).tar.gz
|
||||||
|
source: regex
|
||||||
|
url: https://cran.r-project.org/package=BoomSpikeSlab
|
30
BioArchLinux/r-bstats/PKGBUILD
Normal file
30
BioArchLinux/r-bstats/PKGBUILD
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=bstats
|
||||||
|
_pkgver=0.0.0.9002
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Bayesian statistics"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://github.com/AlexanderLyNL/${_pkgname}"
|
||||||
|
license=('LGPL3')
|
||||||
|
depends=(r
|
||||||
|
r-hypergeo
|
||||||
|
r-purrr
|
||||||
|
r-suppdists
|
||||||
|
)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/AlexanderLyNL/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
}
|
12
BioArchLinux/r-bstats/lilac.py
Normal file
12
BioArchLinux/r-bstats/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()
|
14
BioArchLinux/r-bstats/lilac.yaml
Normal file
14
BioArchLinux/r-bstats/lilac.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-hypergeo
|
||||||
|
- r-purrr
|
||||||
|
- r-suppdists
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/AlexanderLyNL/bstats/master/DESCRIPTION
|
33
BioArchLinux/r-bsts/PKGBUILD
Normal file
33
BioArchLinux/r-bsts/PKGBUILD
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# Maintainer: sukanka <su975853527@gmail.com>
|
||||||
|
|
||||||
|
_pkgname=bsts
|
||||||
|
_pkgver=0.9.8
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Bayesian Structural Time Series'
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('LGPL')
|
||||||
|
depends=(
|
||||||
|
r
|
||||||
|
r-boom
|
||||||
|
r-boomspikeslab
|
||||||
|
r-xts
|
||||||
|
r-zoo
|
||||||
|
)
|
||||||
|
optdepends=(
|
||||||
|
r-testthat
|
||||||
|
)
|
||||||
|
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
|
||||||
|
sha256sums=('8c8ef3cd2bdb6d23fe72c74971ceb88847d215091bdc76fae3765f9b99430090')
|
||||||
|
|
||||||
|
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-bsts/lilac.py
Normal file
12
BioArchLinux/r-bsts/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-bsts/lilac.yaml
Normal file
12
BioArchLinux/r-bsts/lilac.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
repo_depends:
|
||||||
|
- r-boom
|
||||||
|
- r-boomspikeslab
|
||||||
|
- r-xts
|
||||||
|
- r-zoo
|
||||||
|
update_on:
|
||||||
|
- regex: bsts_([\d._-]+).tar.gz
|
||||||
|
source: regex
|
||||||
|
url: https://cran.r-project.org/package=bsts
|
32
BioArchLinux/r-conting/PKGBUILD
Normal file
32
BioArchLinux/r-conting/PKGBUILD
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=conting
|
||||||
|
_pkgver=1.7.9999
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Bayesian Analysis of Contingency Tables"
|
||||||
|
arch=('any')
|
||||||
|
url="https://github.com/vandenman/${_pkgname}"
|
||||||
|
license=('GPL2')
|
||||||
|
depends=(r
|
||||||
|
r-mvtnorm
|
||||||
|
r-gtools
|
||||||
|
r-tseries
|
||||||
|
r-coda
|
||||||
|
)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/vandenman/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
}
|
12
BioArchLinux/r-conting/lilac.py
Normal file
12
BioArchLinux/r-conting/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-conting/lilac.yaml
Normal file
15
BioArchLinux/r-conting/lilac.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-mvtnorm
|
||||||
|
- r-gtools
|
||||||
|
- r-tseries
|
||||||
|
- r-coda
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/vandenman/conting/master/DESCRIPTION
|
52
BioArchLinux/r-flexplot/PKGBUILD
Normal file
52
BioArchLinux/r-flexplot/PKGBUILD
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=flexplot
|
||||||
|
_pkgver=0.13.3
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Graphically Based Data Analysis"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://github.com/dustinfife/${_pkgname}"
|
||||||
|
license=('GPL2')
|
||||||
|
depends=(r
|
||||||
|
r-cowplot
|
||||||
|
r-tibble
|
||||||
|
r-withr
|
||||||
|
r-dplyr
|
||||||
|
r-magrittr
|
||||||
|
r-forcats
|
||||||
|
r-purrr
|
||||||
|
r-plyr
|
||||||
|
r-r6
|
||||||
|
r-ggplot2
|
||||||
|
r-patchwork
|
||||||
|
r-ggsci
|
||||||
|
r-lme4
|
||||||
|
r-party
|
||||||
|
r-rlang
|
||||||
|
)
|
||||||
|
makedepends=(r-jmvcore)
|
||||||
|
optdepends=(
|
||||||
|
r-jmvcore
|
||||||
|
r-vdiffr
|
||||||
|
r-knitr
|
||||||
|
r-testthat
|
||||||
|
r-randomforest
|
||||||
|
r-markdown
|
||||||
|
r-papaja
|
||||||
|
r-tidyverse
|
||||||
|
)
|
||||||
|
source=("git+https://github.com/dustinfife/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
}
|
12
BioArchLinux/r-flexplot/lilac.py
Normal file
12
BioArchLinux/r-flexplot/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()
|
27
BioArchLinux/r-flexplot/lilac.yaml
Normal file
27
BioArchLinux/r-flexplot/lilac.yaml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-cowplot
|
||||||
|
- r-tibble
|
||||||
|
- r-withr
|
||||||
|
- r-dplyr
|
||||||
|
- r-magrittr
|
||||||
|
- r-forcats
|
||||||
|
- r-purrr
|
||||||
|
- r-plyr
|
||||||
|
- r-r6
|
||||||
|
- r-ggplot2
|
||||||
|
- r-patchwork
|
||||||
|
- r-ggsci
|
||||||
|
- r-lme4
|
||||||
|
- r-party
|
||||||
|
- r-rlang
|
||||||
|
- r-jmvcore
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/dustinfife/flexplot/master/DESCRIPTION
|
49
BioArchLinux/r-jaspanova/PKGBUILD
Normal file
49
BioArchLinux/r-jaspanova/PKGBUILD
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspAnova
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="ANOVA Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-afex
|
||||||
|
r-bayesfactor
|
||||||
|
r-boot
|
||||||
|
r-car
|
||||||
|
r-colorspace
|
||||||
|
r-emmeans
|
||||||
|
r-ggplot2
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspdescriptives
|
||||||
|
r-jaspgraphs
|
||||||
|
r-jaspttests
|
||||||
|
r-kernsmooth
|
||||||
|
r-matrixstats
|
||||||
|
r-multcomp
|
||||||
|
r-onewaytests
|
||||||
|
r-plyr
|
||||||
|
r-stringi
|
||||||
|
r-stringr
|
||||||
|
r-restriktor
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspcommon)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspanova/lilac.py
Normal file
12
BioArchLinux/r-jaspanova/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()
|
30
BioArchLinux/r-jaspanova/lilac.yaml
Normal file
30
BioArchLinux/r-jaspanova/lilac.yaml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-afex
|
||||||
|
- r-bayesfactor
|
||||||
|
- r-boot
|
||||||
|
- r-car
|
||||||
|
- r-colorspace
|
||||||
|
- r-emmeans
|
||||||
|
- r-ggplot2
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspdescriptives
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-jaspttests
|
||||||
|
- r-kernsmooth
|
||||||
|
- r-matrixstats
|
||||||
|
- r-multcomp
|
||||||
|
- r-onewaytests
|
||||||
|
- r-plyr
|
||||||
|
- r-stringi
|
||||||
|
- r-stringr
|
||||||
|
- r-restriktor
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspAnova/master/DESCRIPTION
|
38
BioArchLinux/r-jaspaudit/PKGBUILD
Normal file
38
BioArchLinux/r-jaspaudit/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspAudit
|
||||||
|
_pkgver=0.16.3
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Audit Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-bstats
|
||||||
|
r-digittests
|
||||||
|
r-extradistr
|
||||||
|
r-ggplot2
|
||||||
|
r-ggrepel
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-jfa
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspaudit/lilac.py
Normal file
12
BioArchLinux/r-jaspaudit/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()
|
19
BioArchLinux/r-jaspaudit/lilac.yaml
Normal file
19
BioArchLinux/r-jaspaudit/lilac.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-bstats
|
||||||
|
- r-digittests
|
||||||
|
- r-extradistr
|
||||||
|
- r-ggplot2
|
||||||
|
- r-ggrepel
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-jfa
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspAudit/master/DESCRIPTION
|
38
BioArchLinux/r-jaspbain/PKGBUILD
Normal file
38
BioArchLinux/r-jaspbain/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspBain
|
||||||
|
_pkgver=0.16.1
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Bain Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL3')
|
||||||
|
depends=(r
|
||||||
|
r-bain
|
||||||
|
r-stats
|
||||||
|
r-lavaan
|
||||||
|
r-ggplot2
|
||||||
|
r-semplot
|
||||||
|
r-stringr
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspbain/lilac.py
Normal file
12
BioArchLinux/r-jaspbain/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()
|
19
BioArchLinux/r-jaspbain/lilac.yaml
Normal file
19
BioArchLinux/r-jaspbain/lilac.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-bain
|
||||||
|
- r-stats
|
||||||
|
- r-lavaan
|
||||||
|
- r-ggplot2
|
||||||
|
- r-semplot
|
||||||
|
- r-stringr
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspBain/master/DESCRIPTION
|
55
BioArchLinux/r-jaspbase/PKGBUILD
Normal file
55
BioArchLinux/r-jaspbase/PKGBUILD
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspBase
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Package contains the JASP Bayesian and Frequentist analyses."
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
'r-ggplot2'
|
||||||
|
'r-gridextra'
|
||||||
|
'r-gridgraphics'
|
||||||
|
'r-jsonlite'
|
||||||
|
'r-modules'
|
||||||
|
'r-officer'
|
||||||
|
'r-pkgbuild'
|
||||||
|
'r-plyr'
|
||||||
|
'r-qgraph'
|
||||||
|
'r-ragg'
|
||||||
|
'r-r6'
|
||||||
|
'r-renv'
|
||||||
|
'r-rjson'
|
||||||
|
'r-rvg'
|
||||||
|
'r-svglite'
|
||||||
|
'r-systemfonts'
|
||||||
|
'r-withr'
|
||||||
|
'r-testthat'
|
||||||
|
'r-data.table'
|
||||||
|
'r-httr'
|
||||||
|
'r-lifecycle'
|
||||||
|
'r-pkgload'
|
||||||
|
'r-remotes'
|
||||||
|
'r-stringi'
|
||||||
|
'r-stringr'
|
||||||
|
'r-vdiffr'
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspbase)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
}
|
12
BioArchLinux/r-jaspbase/lilac.py
Normal file
12
BioArchLinux/r-jaspbase/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()
|
37
BioArchLinux/r-jaspbase/lilac.yaml
Normal file
37
BioArchLinux/r-jaspbase/lilac.yaml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- "r-ggplot2"
|
||||||
|
- "r-gridextra"
|
||||||
|
- "r-gridgraphics"
|
||||||
|
- "r-jsonlite"
|
||||||
|
- "r-modules"
|
||||||
|
- "r-officer"
|
||||||
|
- "r-pkgbuild"
|
||||||
|
- "r-plyr"
|
||||||
|
- "r-qgraph"
|
||||||
|
- "r-ragg"
|
||||||
|
- "r-r6"
|
||||||
|
- "r-renv"
|
||||||
|
- "r-rjson"
|
||||||
|
- "r-rvg"
|
||||||
|
- "r-svglite"
|
||||||
|
- "r-systemfonts"
|
||||||
|
- "r-withr"
|
||||||
|
- "r-testthat"
|
||||||
|
- "r-data.table"
|
||||||
|
- "r-httr"
|
||||||
|
- "r-lifecycle"
|
||||||
|
- "r-pkgload"
|
||||||
|
- "r-remotes"
|
||||||
|
- "r-stringi"
|
||||||
|
- "r-stringr"
|
||||||
|
- "r-vdiffr"
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspBase/master/DESCRIPTION
|
37
BioArchLinux/r-jaspbsts/PKGBUILD
Normal file
37
BioArchLinux/r-jaspbsts/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspBsts
|
||||||
|
_pkgver=0.1.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Bsts Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-bsts
|
||||||
|
r-boom
|
||||||
|
r-ggplot2
|
||||||
|
r-matrixstats
|
||||||
|
r-reshape2
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=(r-testthat)
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspbsts/lilac.py
Normal file
12
BioArchLinux/r-jaspbsts/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()
|
18
BioArchLinux/r-jaspbsts/lilac.yaml
Normal file
18
BioArchLinux/r-jaspbsts/lilac.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-bsts
|
||||||
|
- r-boom
|
||||||
|
- r-ggplot2
|
||||||
|
- r-matrixstats
|
||||||
|
- r-reshape2
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspBsts/master/DESCRIPTION
|
34
BioArchLinux/r-jaspcircular/PKGBUILD
Normal file
34
BioArchLinux/r-jaspcircular/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspCircular
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="CircularStatistics Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-circular
|
||||||
|
r-ggplot2
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspcircular/lilac.py
Normal file
12
BioArchLinux/r-jaspcircular/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-jaspcircular/lilac.yaml
Normal file
15
BioArchLinux/r-jaspcircular/lilac.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-circular
|
||||||
|
- r-ggplot2
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspCircular/master/DESCRIPTION
|
34
BioArchLinux/r-jaspcochrane/PKGBUILD
Normal file
34
BioArchLinux/r-jaspcochrane/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspCochrane
|
||||||
|
_pkgver=0.15.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Cochrane Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-jaspdescriptives
|
||||||
|
r-jaspmetaanalysis
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=('r-testthat')
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspcochrane/lilac.py
Normal file
12
BioArchLinux/r-jaspcochrane/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-jaspcochrane/lilac.yaml
Normal file
15
BioArchLinux/r-jaspcochrane/lilac.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-jaspdescriptives
|
||||||
|
- r-jaspmetaanalysis
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspCochrane/master/DESCRIPTION
|
36
BioArchLinux/r-jaspdescriptives/PKGBUILD
Normal file
36
BioArchLinux/r-jaspdescriptives/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspDescriptives
|
||||||
|
_pkgver=0.15.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Descriptives Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
'r-ggplot2'
|
||||||
|
'r-ggrepel'
|
||||||
|
'r-stringr'
|
||||||
|
'r-jaspbase'
|
||||||
|
'r-jaspgraphs'
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspcommon)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspdescriptives/lilac.py
Normal file
12
BioArchLinux/r-jaspdescriptives/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-jaspdescriptives/lilac.yaml
Normal file
16
BioArchLinux/r-jaspdescriptives/lilac.yaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- 'r-ggplot2'
|
||||||
|
- 'r-ggrepel'
|
||||||
|
- 'r-stringr'
|
||||||
|
- 'r-jaspbase'
|
||||||
|
- 'r-jaspgraphs'
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspDescriptives/master/DESCRIPTION
|
39
BioArchLinux/r-jaspdistributions/PKGBUILD
Normal file
39
BioArchLinux/r-jaspdistributions/PKGBUILD
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspDistributions
|
||||||
|
_pkgver=0.3.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Distributions Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-car
|
||||||
|
r-fitdistrplus
|
||||||
|
r-ggplot2
|
||||||
|
r-goftest
|
||||||
|
r-gnorm
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-sgt
|
||||||
|
r-sn
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspdistributions/lilac.py
Normal file
12
BioArchLinux/r-jaspdistributions/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()
|
20
BioArchLinux/r-jaspdistributions/lilac.yaml
Normal file
20
BioArchLinux/r-jaspdistributions/lilac.yaml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-car
|
||||||
|
- r-fitdistrplus
|
||||||
|
- r-ggplot2
|
||||||
|
- r-goftest
|
||||||
|
- r-gnorm
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-sgt
|
||||||
|
- r-sn
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspDistributions/master/DESCRIPTION
|
37
BioArchLinux/r-jaspequivalencettests/PKGBUILD
Normal file
37
BioArchLinux/r-jaspequivalencettests/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspEquivalenceTTests
|
||||||
|
_pkgver=0.15.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Equivalence T-Tests Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-bayesfactor
|
||||||
|
r-ggplot2
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-metabma
|
||||||
|
r-toster
|
||||||
|
r-jaspttests
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspequivalencettests/lilac.py
Normal file
12
BioArchLinux/r-jaspequivalencettests/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()
|
18
BioArchLinux/r-jaspequivalencettests/lilac.yaml
Normal file
18
BioArchLinux/r-jaspequivalencettests/lilac.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-bayesfactor
|
||||||
|
- r-ggplot2
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-metabma
|
||||||
|
- r-toster
|
||||||
|
- r-jaspttests
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspEquivalenceTTests/master/DESCRIPTION
|
41
BioArchLinux/r-jaspfactor/PKGBUILD
Normal file
41
BioArchLinux/r-jaspfactor/PKGBUILD
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspFactor
|
||||||
|
_pkgver=0.15.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Factor Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-ggplot2
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-jaspsem
|
||||||
|
r-lavaan
|
||||||
|
r-psych
|
||||||
|
r-qgraph
|
||||||
|
r-reshape2
|
||||||
|
r-semplot
|
||||||
|
r-gparotation
|
||||||
|
r-rcsdp
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspcommon)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspfactor/lilac.py
Normal file
12
BioArchLinux/r-jaspfactor/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()
|
22
BioArchLinux/r-jaspfactor/lilac.yaml
Normal file
22
BioArchLinux/r-jaspfactor/lilac.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-ggplot2
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-jaspsem
|
||||||
|
- r-lavaan
|
||||||
|
- r-psych
|
||||||
|
- r-qgraph
|
||||||
|
- r-reshape2
|
||||||
|
- r-semplot
|
||||||
|
- r-gparotation
|
||||||
|
- r-rcsdp
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspFactor/master/DESCRIPTION
|
40
BioArchLinux/r-jaspfrequencies/PKGBUILD
Normal file
40
BioArchLinux/r-jaspfrequencies/PKGBUILD
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspFrequencies
|
||||||
|
_pkgver=0.15.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Frequencies Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-abtest
|
||||||
|
r-bayesfactor
|
||||||
|
r-conting
|
||||||
|
r-ggplot2
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-plyr
|
||||||
|
r-stringr
|
||||||
|
r-vcd
|
||||||
|
r-vcdextra
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspcommon)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspfrequencies/lilac.py
Normal file
12
BioArchLinux/r-jaspfrequencies/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()
|
21
BioArchLinux/r-jaspfrequencies/lilac.yaml
Normal file
21
BioArchLinux/r-jaspfrequencies/lilac.yaml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-abtest
|
||||||
|
- r-bayesfactor
|
||||||
|
- r-conting
|
||||||
|
- r-ggplot2
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-plyr
|
||||||
|
- r-stringr
|
||||||
|
- r-vcd
|
||||||
|
- r-vcdextra
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspFrequencies/master/DESCRIPTION
|
37
BioArchLinux/r-jaspgraphs/PKGBUILD
Normal file
37
BioArchLinux/r-jaspgraphs/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspGraphs
|
||||||
|
_pkgver=0.5.2.13
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Custom Graphs for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
'r-jsonlite'
|
||||||
|
'r-lifecycle'
|
||||||
|
'r-ggplot2'
|
||||||
|
'r-gridextra'
|
||||||
|
'r-rlang'
|
||||||
|
'r-scales'
|
||||||
|
'r-viridislite'
|
||||||
|
'r-rcolorbrewer'
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspbase)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=('r-testthat')
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
}
|
12
BioArchLinux/r-jaspgraphs/lilac.py
Normal file
12
BioArchLinux/r-jaspgraphs/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()
|
19
BioArchLinux/r-jaspgraphs/lilac.yaml
Normal file
19
BioArchLinux/r-jaspgraphs/lilac.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- "r-jsonlite"
|
||||||
|
- "r-lifecycle"
|
||||||
|
- "r-ggplot2"
|
||||||
|
- "r-gridextra"
|
||||||
|
- "r-rlang"
|
||||||
|
- "r-scales"
|
||||||
|
- "r-viridislite"
|
||||||
|
- "r-rcolorbrewer"
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspGraphs/master/DESCRIPTION
|
37
BioArchLinux/r-jaspjags/PKGBUILD
Normal file
37
BioArchLinux/r-jaspjags/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspJags
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="JAGS Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-coda
|
||||||
|
r-ggplot2
|
||||||
|
r-hexbin
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-rjags
|
||||||
|
r-stringr
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspjags/lilac.py
Normal file
12
BioArchLinux/r-jaspjags/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()
|
18
BioArchLinux/r-jaspjags/lilac.yaml
Normal file
18
BioArchLinux/r-jaspjags/lilac.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-coda
|
||||||
|
- r-ggplot2
|
||||||
|
- r-hexbin
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-rjags
|
||||||
|
- r-stringr
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspJags/master/DESCRIPTION
|
44
BioArchLinux/r-jasplearnbayes/PKGBUILD
Normal file
44
BioArchLinux/r-jasplearnbayes/PKGBUILD
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspLearnBayes
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Learn Bayes Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-extradistr
|
||||||
|
r-ggplot2
|
||||||
|
r-hdinterval
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-mcmcpack
|
||||||
|
r-mglm
|
||||||
|
r-scales
|
||||||
|
r-ggalluvial
|
||||||
|
r-ragg
|
||||||
|
r-ggdist
|
||||||
|
r-grid
|
||||||
|
r-grdevices
|
||||||
|
r-png
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jasplearnbayes/lilac.py
Normal file
12
BioArchLinux/r-jasplearnbayes/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()
|
25
BioArchLinux/r-jasplearnbayes/lilac.yaml
Normal file
25
BioArchLinux/r-jasplearnbayes/lilac.yaml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-extradistr
|
||||||
|
- r-ggplot2
|
||||||
|
- r-hdinterval
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-mcmcpack
|
||||||
|
- r-mglm
|
||||||
|
- r-scales
|
||||||
|
- r-ggalluvial
|
||||||
|
- r-ragg
|
||||||
|
- r-ggdist
|
||||||
|
- r-grid
|
||||||
|
- r-grdevices
|
||||||
|
- r-png
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspLearnBayes/master/DESCRIPTION
|
57
BioArchLinux/r-jaspmachinelearning/PKGBUILD
Normal file
57
BioArchLinux/r-jaspmachinelearning/PKGBUILD
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspMachineLearning
|
||||||
|
_pkgver=0.16.3
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc=" Machine Learning Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-auc
|
||||||
|
r-cluster
|
||||||
|
r-colorspace
|
||||||
|
r-dbscan
|
||||||
|
r-e1071
|
||||||
|
r-fpc
|
||||||
|
r-gbm
|
||||||
|
r-gmedian
|
||||||
|
r-ggparty
|
||||||
|
r-ggdendro
|
||||||
|
r-ggnetwork
|
||||||
|
r-ggplot2
|
||||||
|
r-ggrepel
|
||||||
|
r-ggridges
|
||||||
|
r-glmnet
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-neuralnet
|
||||||
|
r-network
|
||||||
|
r-partykit
|
||||||
|
r-plyr
|
||||||
|
r-randomforest
|
||||||
|
r-rpart
|
||||||
|
r-rocr
|
||||||
|
r-rtsne
|
||||||
|
r-signal
|
||||||
|
r-kknn
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspmachinelearning/lilac.py
Normal file
12
BioArchLinux/r-jaspmachinelearning/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()
|
38
BioArchLinux/r-jaspmachinelearning/lilac.yaml
Normal file
38
BioArchLinux/r-jaspmachinelearning/lilac.yaml
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-auc
|
||||||
|
- r-cluster
|
||||||
|
- r-colorspace
|
||||||
|
- r-dbscan
|
||||||
|
- r-e1071
|
||||||
|
- r-fpc
|
||||||
|
- r-gbm
|
||||||
|
- r-gmedian
|
||||||
|
- r-ggparty
|
||||||
|
- r-ggdendro
|
||||||
|
- r-ggnetwork
|
||||||
|
- r-ggplot2
|
||||||
|
- r-ggrepel
|
||||||
|
- r-ggridges
|
||||||
|
- r-glmnet
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-neuralnet
|
||||||
|
- r-network
|
||||||
|
- r-partykit
|
||||||
|
- r-plyr
|
||||||
|
- r-randomforest
|
||||||
|
- r-rpart
|
||||||
|
- r-rocr
|
||||||
|
- r-rtsne
|
||||||
|
- r-signal
|
||||||
|
- r-kknn
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspMachineLearning/master/DESCRIPTION
|
48
BioArchLinux/r-jaspmetaanalysis/PKGBUILD
Normal file
48
BioArchLinux/r-jaspmetaanalysis/PKGBUILD
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspMetaAnalysis
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Meta-Analysis Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-dplyr
|
||||||
|
r-ggplot2
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-mass
|
||||||
|
r-metabma
|
||||||
|
r-metafor
|
||||||
|
r-psych
|
||||||
|
r-purrr
|
||||||
|
r-rstan
|
||||||
|
r-stringr
|
||||||
|
r-tibble
|
||||||
|
r-tidyr
|
||||||
|
r-weightr
|
||||||
|
r-bayestools
|
||||||
|
r-robma
|
||||||
|
r-metamisc
|
||||||
|
r-ggmcmc
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspmetaanalysis/lilac.py
Normal file
12
BioArchLinux/r-jaspmetaanalysis/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()
|
29
BioArchLinux/r-jaspmetaanalysis/lilac.yaml
Normal file
29
BioArchLinux/r-jaspmetaanalysis/lilac.yaml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-dplyr
|
||||||
|
- r-ggplot2
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-mass
|
||||||
|
- r-metabma
|
||||||
|
- r-metafor
|
||||||
|
- r-psych
|
||||||
|
- r-purrr
|
||||||
|
- r-rstan
|
||||||
|
- r-stringr
|
||||||
|
- r-tibble
|
||||||
|
- r-tidyr
|
||||||
|
- r-weightr
|
||||||
|
- r-bayestools
|
||||||
|
- r-robma
|
||||||
|
- r-metamisc
|
||||||
|
- r-ggmcmc
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspMetaAnalysis/master/DESCRIPTION
|
42
BioArchLinux/r-jaspmixedmodels/PKGBUILD
Normal file
42
BioArchLinux/r-jaspmixedmodels/PKGBUILD
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspMixedModels
|
||||||
|
_pkgver=0.15.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Mixed Models Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-afex
|
||||||
|
r-emmeans
|
||||||
|
r-ggplot2
|
||||||
|
r-ggpol
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-lme4
|
||||||
|
r-loo
|
||||||
|
r-mgcv
|
||||||
|
r-rstan
|
||||||
|
r-rstanarm
|
||||||
|
r-stanova
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspcommon)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspmixedmodels/lilac.py
Normal file
12
BioArchLinux/r-jaspmixedmodels/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()
|
23
BioArchLinux/r-jaspmixedmodels/lilac.yaml
Normal file
23
BioArchLinux/r-jaspmixedmodels/lilac.yaml
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-afex
|
||||||
|
- r-emmeans
|
||||||
|
- r-ggplot2
|
||||||
|
- r-ggpol
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-lme4
|
||||||
|
- r-loo
|
||||||
|
- r-mgcv
|
||||||
|
- r-rstan
|
||||||
|
- r-rstanarm
|
||||||
|
- r-stanova
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspMixedModels/master/DESCRIPTION
|
45
BioArchLinux/r-jaspnetwork/PKGBUILD
Normal file
45
BioArchLinux/r-jaspnetwork/PKGBUILD
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspNetwork
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Network Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-bootnet
|
||||||
|
r-corpcor
|
||||||
|
r-dplyr
|
||||||
|
r-foreach
|
||||||
|
r-ggplot2
|
||||||
|
r-gtools
|
||||||
|
r-huge
|
||||||
|
r-isingsampler
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-mvtnorm
|
||||||
|
r-qgraph
|
||||||
|
r-reshape2
|
||||||
|
r-snow
|
||||||
|
r-stringr
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspnetwork/lilac.py
Normal file
12
BioArchLinux/r-jaspnetwork/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-jaspnetwork/lilac.yaml
Normal file
26
BioArchLinux/r-jaspnetwork/lilac.yaml
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-bootnet
|
||||||
|
- r-corpcor
|
||||||
|
- r-dplyr
|
||||||
|
- r-foreach
|
||||||
|
- r-ggplot2
|
||||||
|
- r-gtools
|
||||||
|
- r-huge
|
||||||
|
- r-isingsampler
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-mvtnorm
|
||||||
|
- r-qgraph
|
||||||
|
- r-reshape2
|
||||||
|
- r-snow
|
||||||
|
- r-stringr
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspNetwork/master/DESCRIPTION
|
55
BioArchLinux/r-jaspprocesscontrol/PKGBUILD
Normal file
55
BioArchLinux/r-jaspprocesscontrol/PKGBUILD
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspProcessControl
|
||||||
|
_pkgver=0.16
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Quality Control Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-doe.base
|
||||||
|
r-fitdistrplus
|
||||||
|
r-frf2
|
||||||
|
r-ggplot2
|
||||||
|
r-ggrepel
|
||||||
|
r-goftest
|
||||||
|
r-irr
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspdescriptives
|
||||||
|
r-jaspgraphs
|
||||||
|
r-mle.tools
|
||||||
|
r-psych
|
||||||
|
r-qcc
|
||||||
|
r-rsm
|
||||||
|
r-rspc
|
||||||
|
r-tidyr
|
||||||
|
r-cowplot
|
||||||
|
r-vipor
|
||||||
|
r-ggpp
|
||||||
|
r-tibble
|
||||||
|
r-envstats
|
||||||
|
r-fadist
|
||||||
|
r-daewr
|
||||||
|
r-desirability
|
||||||
|
r-weibullness
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspprocesscontrol/lilac.py
Normal file
12
BioArchLinux/r-jaspprocesscontrol/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()
|
36
BioArchLinux/r-jaspprocesscontrol/lilac.yaml
Normal file
36
BioArchLinux/r-jaspprocesscontrol/lilac.yaml
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-doe.base
|
||||||
|
- r-fitdistrplus
|
||||||
|
- r-frf2
|
||||||
|
- r-ggplot2
|
||||||
|
- r-ggrepel
|
||||||
|
- r-goftest
|
||||||
|
- r-irr
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspdescriptives
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-mle.tools
|
||||||
|
- r-psych
|
||||||
|
- r-qcc
|
||||||
|
- r-rsm
|
||||||
|
- r-rspc
|
||||||
|
- r-tidyr
|
||||||
|
- r-cowplot
|
||||||
|
- r-vipor
|
||||||
|
- r-ggpp
|
||||||
|
- r-tibble
|
||||||
|
- r-envstats
|
||||||
|
- r-fadist
|
||||||
|
- r-daewr
|
||||||
|
- r-desirability
|
||||||
|
- r-weibullness
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspProcessControl/master/DESCRIPTION
|
36
BioArchLinux/r-jaspprophet/PKGBUILD
Normal file
36
BioArchLinux/r-jaspprophet/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspProphet
|
||||||
|
_pkgver=0.13.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Prophet Module (Beta) for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-ggplot2
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-prophet
|
||||||
|
r-scales
|
||||||
|
r-rstan
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspprophet/lilac.py
Normal file
12
BioArchLinux/r-jaspprophet/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-jaspprophet/lilac.yaml
Normal file
17
BioArchLinux/r-jaspprophet/lilac.yaml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-ggplot2
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-prophet
|
||||||
|
- r-scales
|
||||||
|
- r-rstan
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspProphet/master/DESCRIPTION
|
49
BioArchLinux/r-jaspregression/PKGBUILD
Normal file
49
BioArchLinux/r-jaspregression/PKGBUILD
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspRegression
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Regression Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-bas
|
||||||
|
r-boot
|
||||||
|
r-bstats
|
||||||
|
r-emmeans
|
||||||
|
r-ggplot2
|
||||||
|
r-ggrepel
|
||||||
|
r-hmeasure
|
||||||
|
r-jaspanova
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspdescriptives
|
||||||
|
r-jaspgraphs
|
||||||
|
r-jaspttests
|
||||||
|
r-lmtest
|
||||||
|
r-matrixstats
|
||||||
|
r-mdscore
|
||||||
|
r-ppcor
|
||||||
|
r-purrr
|
||||||
|
r-rcpp
|
||||||
|
r-statmod
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspcommon)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspregression/lilac.py
Normal file
12
BioArchLinux/r-jaspregression/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()
|
30
BioArchLinux/r-jaspregression/lilac.yaml
Normal file
30
BioArchLinux/r-jaspregression/lilac.yaml
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-bas
|
||||||
|
- r-boot
|
||||||
|
- r-bstats
|
||||||
|
- r-emmeans
|
||||||
|
- r-ggplot2
|
||||||
|
- r-ggrepel
|
||||||
|
- r-hmeasure
|
||||||
|
- r-jaspanova
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspdescriptives
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-jaspttests
|
||||||
|
- r-lmtest
|
||||||
|
- r-matrixstats
|
||||||
|
- r-mdscore
|
||||||
|
- r-ppcor
|
||||||
|
- r-purrr
|
||||||
|
- r-rcpp
|
||||||
|
- r-statmod
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspRegression/master/DESCRIPTION
|
41
BioArchLinux/r-jaspreliability/PKGBUILD
Normal file
41
BioArchLinux/r-jaspreliability/PKGBUILD
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspReliability
|
||||||
|
_pkgver=0.16.2
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Reliability Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-bayesrel
|
||||||
|
r-coda
|
||||||
|
r-ggplot2
|
||||||
|
r-ggridges
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-laplacesdemon
|
||||||
|
r-mass
|
||||||
|
r-psych
|
||||||
|
r-lme4
|
||||||
|
r-irr
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspreliability/lilac.py
Normal file
12
BioArchLinux/r-jaspreliability/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()
|
22
BioArchLinux/r-jaspreliability/lilac.yaml
Normal file
22
BioArchLinux/r-jaspreliability/lilac.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-bayesrel
|
||||||
|
- r-coda
|
||||||
|
- r-ggplot2
|
||||||
|
- r-ggridges
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-laplacesdemon
|
||||||
|
- r-mass
|
||||||
|
- r-psych
|
||||||
|
- r-lme4
|
||||||
|
- r-irr
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspReliability/master/DESCRIPTION
|
37
BioArchLinux/r-jaspresults/PKGBUILD
Normal file
37
BioArchLinux/r-jaspresults/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspResults
|
||||||
|
_pkgver=1.16
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Easy results for your JASP analysis"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
'r-rcpp'
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspbase)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=('r-jaspgraphs')
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git"
|
||||||
|
"jaspColumnEncoder::git+https://github.com/jasp-stats/jaspColumnEncoder.git"
|
||||||
|
)
|
||||||
|
sha256sums=('SKIP'
|
||||||
|
'SKIP')
|
||||||
|
|
||||||
|
prepare(){
|
||||||
|
cp -rf $srcdir/jaspColumnEncoder/* $srcdir/${_pkgname}/src/jaspColumnEncoder
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
}
|
12
BioArchLinux/r-jaspresults/lilac.py
Normal file
12
BioArchLinux/r-jaspresults/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-jaspresults/lilac.yaml
Normal file
12
BioArchLinux/r-jaspresults/lilac.yaml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- "r-rcpp"
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspResults/master/DESCRIPTION
|
41
BioArchLinux/r-jaspsem/PKGBUILD
Normal file
41
BioArchLinux/r-jaspsem/PKGBUILD
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspSem
|
||||||
|
_pkgver=0.15.0
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="SEM Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-forcats
|
||||||
|
r-ggplot2
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspgraphs
|
||||||
|
r-lavaan
|
||||||
|
r-reshape2
|
||||||
|
r-semplot
|
||||||
|
r-semtools
|
||||||
|
r-stringr
|
||||||
|
r-tibble
|
||||||
|
r-tidyr
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspsem/lilac.py
Normal file
12
BioArchLinux/r-jaspsem/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()
|
22
BioArchLinux/r-jaspsem/lilac.yaml
Normal file
22
BioArchLinux/r-jaspsem/lilac.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-forcats
|
||||||
|
- r-ggplot2
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-lavaan
|
||||||
|
- r-reshape2
|
||||||
|
- r-semplot
|
||||||
|
- r-semtools
|
||||||
|
- r-stringr
|
||||||
|
- r-tibble
|
||||||
|
- r-tidyr
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspSem/master/DESCRIPTION
|
41
BioArchLinux/r-jaspsummarystatistics/PKGBUILD
Normal file
41
BioArchLinux/r-jaspsummarystatistics/PKGBUILD
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||||
|
_pkgname=jaspSummaryStatistics
|
||||||
|
_pkgver=0.15
|
||||||
|
pkgname=r-${_pkgname,,}
|
||||||
|
pkgver=${_pkgver//[:-]/.}
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="Summary Statistics Module for JASP"
|
||||||
|
arch=('x86_64')
|
||||||
|
url="https://cran.r-project.org/package=${_pkgname}"
|
||||||
|
license=('GPL')
|
||||||
|
depends=(r
|
||||||
|
r-bayesfactor
|
||||||
|
r-bstats
|
||||||
|
r-jaspbase
|
||||||
|
r-jaspfrequencies
|
||||||
|
r-jaspgraphs
|
||||||
|
r-jaspregression
|
||||||
|
r-jaspttests
|
||||||
|
r-jaspanova
|
||||||
|
r-jaspdescriptives
|
||||||
|
r-suppdists
|
||||||
|
r-bayesplay
|
||||||
|
)
|
||||||
|
groups=(r-jasp r-jaspextra)
|
||||||
|
makedepends=()
|
||||||
|
optdepends=()
|
||||||
|
source=("git+https://github.com/jasp-stats/${_pkgname}.git")
|
||||||
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
mkdir -p ${srcdir}/usr/lib/R/library
|
||||||
|
R -e "install.packages('${srcdir}/${_pkgname}',\
|
||||||
|
type='source', repos=NULL,lib='${srcdir}/usr/lib/R/library', INSTALL_opts='--no-multiarch --no-docs --no-test-load')"
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cp -a --no-preserve=ownership "${srcdir}/usr" "${pkgdir}"
|
||||||
|
mkdir -p ${pkgdir}/usr/lib/jasp-desktop/Modules
|
||||||
|
ln -s /usr/lib/R/library ${pkgdir}/usr/lib/jasp-desktop/Modules/${_pkgname}
|
||||||
|
}
|
12
BioArchLinux/r-jaspsummarystatistics/lilac.py
Normal file
12
BioArchLinux/r-jaspsummarystatistics/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()
|
22
BioArchLinux/r-jaspsummarystatistics/lilac.yaml
Normal file
22
BioArchLinux/r-jaspsummarystatistics/lilac.yaml
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
maintainers:
|
||||||
|
- github: sukanka
|
||||||
|
email: su975853527@gmail.com
|
||||||
|
build_prefix: extra-x86_64
|
||||||
|
repo_depends:
|
||||||
|
- r-bayesfactor
|
||||||
|
- r-bstats
|
||||||
|
- r-jaspbase
|
||||||
|
- r-jaspfrequencies
|
||||||
|
- r-jaspgraphs
|
||||||
|
- r-jaspregression
|
||||||
|
- r-jaspttests
|
||||||
|
- r-jaspanova
|
||||||
|
- r-jaspdescriptives
|
||||||
|
- r-suppdists
|
||||||
|
- r-bayesplay
|
||||||
|
pre_build: vcs_update
|
||||||
|
post_build: git_pkgbuild_commit
|
||||||
|
update_on:
|
||||||
|
- regex: 'Version:\s*([\d._-]+)'
|
||||||
|
source: regex
|
||||||
|
url: https://raw.githubusercontent.com/jasp-stats/jaspSummaryStatistics/master/DESCRIPTION
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue