# Maintainer: Caleb Maclennan _appname=user_oidc pkgname=nextcloud-app-${_appname/_/-} pkgver=5.0.2 pkgrel=1 pkgdesc='OIDC connect user backend for Nextcloud' arch=(x86_64) url="https://github.com/nextcloud/$_appname" license=(AGPL3) makedepends=(composer nextcloud npm rsync yq) _archive="$_appname-$pkgver" source=("$url/archive/v$pkgver/$_archive.tar.gz") sha256sums=('f9996bbdd34e4e39f887b921802de9abb058b3f8d13f0e69ca1af88c3e581163') # BEGIN boilerplate nextcloud app version clamping, see also other packages in group # 1. Call respective function helpers in check() and package() *after* cd'ing to the source directory # 2. Add makedepends+=(nextcloud yq) _phps=(php-legacy php) _get_supported_ranges() { _app_min_nextcloud="$(< appinfo/info.xml xq -r '.info.dependencies.nextcloud["@min-version"] | values')" _app_max_nextcloud="$(< appinfo/info.xml xq -r '.info.dependencies.nextcloud["@max-version"] | values | tonumber | .+1')" _app_min_php="$(< appinfo/info.xml xq -r '.info.dependencies.php["@min-version"] | values')" _app_max_php="$(< appinfo/info.xml xq -r '.info.dependencies.php["@max-version"] | values | tonumber | .+0.1')" } _unsupported_range() { printf "%s requires %s %s, but %s %s is provided.\n" "$pkgname" "$1" "$2" "$1" "$3" exit 1 } _nextcloud_app_check() { _get_supported_ranges for _php in "${_phps[@]}"; do command -v "$_php" > /dev/null && break; done local _nextcloud_ver="$("$_php" <(cat /usr/share/webapps/nextcloud/version.php; echo 'print($OC_VersionString);'))" local _php_ver="$("$_php" -r 'print(phpversion());')" [[ "$(vercmp "${_app_min_nextcloud:-0}" "$_nextcloud_ver")" -le 0 ]] || \ _unsupported_range nextcloud "=> $_app_min_nextcloud" "$_nextcloud_ver" [[ "$(vercmp "${_app_max_nextcloud:-999}" "$_nextcloud_ver")" -gt 0 ]] || \ _unsupported_range nextcloud "< $_app_max_nextcloud" "$_nextcloud_ver" [[ "$(vercmp "${_app_min_php:-0}" "$_php_ver")" -le 0 ]] || \ _unsupported_range php ">= $_app_min_php" "$_php_ver" [[ "$(vercmp "${_app_max_php:-999}" "$_php_ver")" -gt 0 ]] || \ _unsupported_range php "< $_app_max_php" "$_php_ver" } _nextcloud_app_package() { _get_supported_ranges depends+=("nextcloud>=${_app_min_nextcloud:-0}" "nextcloud<${_app_max_nextcloud:-999}") depends+=("php-interpreter${_app_min_php:+>=$_app_min_php}" ${_app_max_php:+"php-interpreter<$_app_max_php"}) } # END boilerplate nextcloud app version clamping prepare() { cd "$_archive" composer install --no-dev npm install --cache "$srcdir/npm-cache" --no-audit --no-fund } build() { cd "$_archive" _nextcloud_app_check npm run build --cache "$srcdir/npm-cache" --offline } package() { cd "$_archive" _nextcloud_app_package _appdir="$pkgdir/usr/share/webapps/nextcloud/apps/$_appname" rsync -a --mkpath \ --include='appinfo/***' \ --include='js/***' \ --include='lib/***' \ --include='templates/***' \ --include='vendor/***' \ --include=.php_cs.dist \ --include=webpack.common.js \ --include=webpack.prod.js \ --exclude='*' \ ./ $_appdir/ }