52 lines
1.7 KiB
Bash
52 lines
1.7 KiB
Bash
# Template file for 'radicale'
|
|
pkgname=radicale
|
|
version=3.1.8
|
|
revision=4
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools"
|
|
depends="python3-vobject python3-dateutil python3-passlib python3-bcrypt
|
|
python3-defusedxml apache-htpasswd"
|
|
checkdepends="${depends} python3-pytest python3-pytest-flake8 python3-isort
|
|
python3-pytest-cov python3-waitress"
|
|
short_desc="Complete calendar and contact storing and manipulating solution"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://radicale.org"
|
|
changelog="https://raw.githubusercontent.com/Kozea/Radicale/master/CHANGELOG.md"
|
|
distfiles="https://github.com/Kozea/Radicale/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=40078e0f05917c09664363a9e289a36d32e00d10a1d169ffc60b5c581deb4e77
|
|
conf_files="
|
|
/etc/radicale/config
|
|
/etc/radicale/rights
|
|
/etc/sv/radicale/log/run"
|
|
make_dirs="
|
|
/etc/radicale 755 root root
|
|
/usr/share/radicale/ 755 root root
|
|
/var/log/radicale/ 700 root root
|
|
/var/lib/radicale 750 radicale radicale"
|
|
system_accounts="radicale"
|
|
radicale_homedir="/var/lib/radicale"
|
|
radicale_descr="Radicale user"
|
|
replaces="radicale2<3.0.6"
|
|
|
|
do_check() {
|
|
# install the package to test_install directory for testing
|
|
python3 setup.py install --root="${PWD}/test_install"
|
|
PYTHONPATH="${PWD}/test_install/${py3_sitelib}" pytest -c /dev/null
|
|
}
|
|
|
|
post_install() {
|
|
vinstall config 644 etc/radicale/
|
|
vinstall rights 640 etc/radicale/
|
|
vinstall config 644 usr/share/examples/radicale
|
|
vinstall radicale.wsgi 644 usr/share/radicale
|
|
vsv radicale
|
|
vdoc README.md
|
|
}
|
|
|
|
radicale2_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" (transitional dummy package)"
|
|
build_style=meta
|
|
}
|