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
_pkgver=0.1.6
pkgname=r-${_pkgname,,}
pkgver=0.1.6
pkgver=${_pkgver//[:-]/.}
pkgrel=5
pkgdesc="'Rcpp' Integration of Different "Ziggurat" Normal RNG Implementations"
arch=('x86_64')
pkgdesc="'Rcpp' Integration of Different \"Ziggurat\" Normal RNG Implementations"
arch=(x86_64)
url="https://cran.r-project.org/package=${_pkgname}"
license=('GPL')
license=(GPL)
depends=(
r
gsl
r-rcpp
)
makedepends=(
r-rcppgsl
)
optdepends=(
r-knitr
r-lattice
r-microbenchmark
r-pinp
r-rbenchmark
r-rmarkdown
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz")
md5sums=('53115de66376aafe087e90ff166d6de1')
sha256sums=('9c78255ca476c945c05a564d1e4da363de714d890e0e27f3b252fd73c50eed71')
build() {
R CMD INSTALL ${_pkgname}_${_pkgver}.tar.gz -l "${srcdir}"
mkdir -p build
R CMD INSTALL "$_pkgname" -l build
}
package() {
install -dm0755 "${pkgdir}/usr/lib/R/library"
cp -a --no-preserve=ownership "${_pkgname}" "${pkgdir}/usr/lib/R/library"
install -d "$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
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():
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('-', '.'))
r_pre_build(_G)
def post_build():
git_pkgbuild_commit()

View file

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

View file

@ -295,7 +295,7 @@ def check_fortran(pkg: Pkgbuild, desc: Description, cfg: CheckConfig):
elif not fortran_files and fortran_dep:
raise CheckFailed("Unnecessary make dependency: gcc-fortran")
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):
if cfg.expect_systemrequirements != desc.systemrequirements: