r-rcppziggurat: use metadata checks

This commit is contained in:
Pekka Ristola 2023-06-17 15:45:59 +03:00
parent 5948208405
commit c6b01113b0
No known key found for this signature in database
GPG key ID: 2C20BE716E05213E
4 changed files with 28 additions and 22 deletions

View file

@ -1,36 +1,39 @@
# Maintainer: Guoyi Zhang <guoyizhang at malacology dot net> # Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
_pkgname=RcppZiggurat _pkgname=RcppZiggurat
_pkgver=0.1.6 _pkgver=0.1.6
pkgname=r-${_pkgname,,} pkgname=r-${_pkgname,,}
pkgver=0.1.6 pkgver=${_pkgver//[:-]/.}
pkgrel=5 pkgrel=5
pkgdesc="'Rcpp' Integration of Different "Ziggurat" Normal RNG Implementations" pkgdesc="'Rcpp' Integration of Different \"Ziggurat\" Normal RNG Implementations"
arch=('x86_64') arch=(x86_64)
url="https://cran.r-project.org/package=${_pkgname}" url="https://cran.r-project.org/package=${_pkgname}"
license=('GPL') license=(GPL)
depends=( depends=(
r gsl
r-rcpp r-rcpp
)
makedepends=(
r-rcppgsl r-rcppgsl
) )
optdepends=( optdepends=(
r-knitr r-knitr
r-lattice
r-microbenchmark r-microbenchmark
r-pinp r-pinp
r-rbenchmark r-rbenchmark
r-rmarkdown r-rmarkdown
) )
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz") source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('53115de66376aafe087e90ff166d6de1')
sha256sums=('9c78255ca476c945c05a564d1e4da363de714d890e0e27f3b252fd73c50eed71') sha256sums=('9c78255ca476c945c05a564d1e4da363de714d890e0e27f3b252fd73c50eed71')
build() { build() {
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}" mkdir -p build
R CMD INSTALL "$_pkgname" -l build
} }
package() { package() {
install -dm0755 "${pkgdir}/usr/lib/R/library" install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library" cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
} }
# vim:set ts=2 sw=2 et:

View file

@ -1,12 +1,13 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
from lilaclib import * from lilaclib import *
import os
import sys
sys.path.append(os.path.normpath(f'{__file__}/../../../lilac-extensions'))
from lilac_r_utils import r_pre_build
def pre_build(): def pre_build():
for line in edit_file('PKGBUILD'): r_pre_build(_G)
if line.startswith('_pkgver='):
line = f'_pkgver={_G.newver}'
print(line)
update_pkgver_and_pkgrel(_G.newver.replace(':', '.').replace('-', '.'))
def post_build(): def post_build():
git_pkgbuild_commit() git_pkgbuild_commit()

View file

@ -1,12 +1,14 @@
build_prefix: extra-x86_64 build_prefix: extra-x86_64
maintainers: maintainers:
- github: starsareintherose - github: pekkarr
email: kuoi@bioarchlinux.org email: pekkarr@protonmail.com
repo_depends: repo_depends:
- r-rcpp - r-rcpp
repo_makedepends:
- r-rcppgsl - r-rcppgsl
update_on: update_on:
- regex: RcppZiggurat_([\d._-]+).tar.gz - source: rpkgs
source: regex pkgname: RcppZiggurat
url: https://cran.r-project.org/package=RcppZiggurat repo: cran
md5: true
- alias: r - alias: r

View file

@ -295,7 +295,7 @@ def check_fortran(pkg: Pkgbuild, desc: Description, cfg: CheckConfig):
elif not fortran_files and fortran_dep: elif not fortran_files and fortran_dep:
raise CheckFailed("Unnecessary make dependency: gcc-fortran") raise CheckFailed("Unnecessary make dependency: gcc-fortran")
elif cfg.ignore_fortran_files and not fortran_files: elif cfg.ignore_fortran_files and not fortran_files:
raise CheckFailed("Unnecessary config 'ignore_fortran_files'"); raise CheckFailed("Unnecessary config 'ignore_fortran_files'")
def check_systemrequirements(pkg: Pkgbuild, desc: Description, cfg: CheckConfig): def check_systemrequirements(pkg: Pkgbuild, desc: Description, cfg: CheckConfig):
if cfg.expect_systemrequirements != desc.systemrequirements: if cfg.expect_systemrequirements != desc.systemrequirements: