47 lines
1.6 KiB
Bash
47 lines
1.6 KiB
Bash
# Template file for 'borg'
|
|
pkgname=borg
|
|
version=1.2.2
|
|
revision=3
|
|
build_style=python3-module
|
|
make_check_args="-k not((benchmark)or(test_readonly_check)or(test_readonly_diff)or(test_readonly_export_tar)or(test_readonly_extract)or(test_readonly_info)or(test_readonly_list))"
|
|
make_check_target="build/lib.*/borg/testsuite"
|
|
hostmakedepends="python3-dateutil python3-pip python3-pkgconfig
|
|
python3-setuptools python3-wheel"
|
|
makedepends="python3-devel openssl-devel acl-devel liblz4-devel libzstd-devel"
|
|
depends="python3-llfuse python3-msgpack python3-packaging python3-argon2"
|
|
# llfuse is purposefully not included in checkdepends since the tests using it
|
|
# don't work in chroot
|
|
checkdepends="python3-pytest ${depends/python3-llfuse/}"
|
|
short_desc="Deduplicating backup program with compression and encryption"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://borgbackup.github.io/"
|
|
changelog="https://borgbackup.readthedocs.io/en/stable/changes.html#changelog"
|
|
distfiles="${PYPI_SITE}/b/borgbackup/borgbackup-${version}.tar.gz"
|
|
checksum=d730687443f1beb602b1d72bae36318f6f9654818fcdc50458540ec579e57260
|
|
|
|
export BORG_OPENSSL_PREFIX="${XBPS_CROSS_BASE}/usr"
|
|
export BORG_LIBLZ4_PREFIX="${XBPS_CROSS_BASE}/usr"
|
|
export BORG_LIBZSTD_PREFIX="${XBPS_CROSS_BASE}/usr"
|
|
|
|
pre_build() {
|
|
vsed -i setup.py \
|
|
-e '/setup_requires=/d' \
|
|
-e '/use_scm_version=/,+3d' \
|
|
-e "/name=/ a\
|
|
version='${version}',"
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
|
|
for f in docs/man/*.1 ; do
|
|
vman $f
|
|
done
|
|
|
|
cd scripts/shell_completions
|
|
vcompletion bash/${pkgname} bash
|
|
vcompletion fish/${pkgname}.fish fish
|
|
vcompletion zsh/_${pkgname} zsh
|
|
}
|