mirror of
https://github.com/BioArchLinux/Packages.git
synced 2025-03-10 12:02:42 +00:00
add jaspExtra and jaspCommon
This commit is contained in:
parent
3f22f23a40
commit
c125bb4323
75 changed files with 1884 additions and 0 deletions
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
|
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-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
|
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
|
38
BioArchLinux/r-jaspttests/PKGBUILD
Normal file
38
BioArchLinux/r-jaspttests/PKGBUILD
Normal file
|
@ -0,0 +1,38 @@
|
|||
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||
_pkgname=jaspTTests
|
||||
_pkgver=0.15.0
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc="T-Tests Module for JASP"
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(r
|
||||
r-bayesfactor
|
||||
r-car
|
||||
r-ggplot2
|
||||
r-jaspbase
|
||||
r-jaspgraphs
|
||||
r-logspline
|
||||
r-plotrix
|
||||
r-plyr
|
||||
)
|
||||
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-jaspttests/lilac.py
Normal file
12
BioArchLinux/r-jaspttests/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-jaspttests/lilac.yaml
Normal file
19
BioArchLinux/r-jaspttests/lilac.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
maintainers:
|
||||
- github: sukanka
|
||||
email: su975853527@gmail.com
|
||||
build_prefix: extra-x86_64
|
||||
repo_depends:
|
||||
- r-bayesfactor
|
||||
- r-car
|
||||
- r-ggplot2
|
||||
- r-jaspbase
|
||||
- r-jaspgraphs
|
||||
- r-logspline
|
||||
- r-plotrix
|
||||
- r-plyr
|
||||
pre_build: vcs_update
|
||||
post_build: git_pkgbuild_commit
|
||||
update_on:
|
||||
- regex: 'Version:\s*([\d._-]+)'
|
||||
source: regex
|
||||
url: https://raw.githubusercontent.com/jasp-stats/jaspTTests/master/DESCRIPTION
|
33
BioArchLinux/r-jaspvisualmodeling/PKGBUILD
Normal file
33
BioArchLinux/r-jaspvisualmodeling/PKGBUILD
Normal file
|
@ -0,0 +1,33 @@
|
|||
#Maintainer: sukanka <su975853527 AT gmail.com>
|
||||
_pkgname=jaspVisualModeling
|
||||
_pkgver=0.15
|
||||
pkgname=r-${_pkgname,,}
|
||||
pkgver=${_pkgver//[:-]/.}
|
||||
pkgrel=1
|
||||
pkgdesc="Visual Modeling Module for JASP"
|
||||
arch=('x86_64')
|
||||
url="https://cran.r-project.org/package=${_pkgname}"
|
||||
license=('GPL')
|
||||
depends=(r
|
||||
r-flexplot
|
||||
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-jaspvisualmodeling/lilac.py
Normal file
12
BioArchLinux/r-jaspvisualmodeling/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-jaspvisualmodeling/lilac.yaml
Normal file
14
BioArchLinux/r-jaspvisualmodeling/lilac.yaml
Normal file
|
@ -0,0 +1,14 @@
|
|||
maintainers:
|
||||
- github: sukanka
|
||||
email: su975853527@gmail.com
|
||||
build_prefix: extra-x86_64
|
||||
repo_depends:
|
||||
- r-flexplot
|
||||
- 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/jaspVisualModeling/master/DESCRIPTION
|
Loading…
Add table
Reference in a new issue