# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=duplicity
pkgver=3.0.4.1
pkgrel=0
pkgdesc="Encrypted bandwidth-efficient backup using the rsync algorithm"
url="https://duplicity.gitlab.io/duplicity-web/"
arch="all"
license="GPL-2.0-or-later"
depends="python3 py3-boto3 gpg gpg-agent ncftp py3-fasteners"
makedepends="python3-dev py3-setuptools librsync-dev gettext py3-wheel py3-gpep517"
checkdepends="py3-pytest py3-pexpect"
subpackages="$pkgname-pyc $pkgname-doc $pkgname-lang"
source="https://gitlab.com/duplicity/duplicity/-/archive/rel.$pkgver/duplicity-rel.$pkgver.tar.bz2"
builddir="$srcdir/duplicity-rel.$pkgver"

prepare() {
	default_prepare

	# their version setting is broken
	sed -i "s|\$version|$pkgver|" duplicity/__init__.py
}

build() {
	gpep517 build-wheel \
		--wheel-dir .dist \
		--output-fd 3 3>&1 >&2
}

check() {
	python3 -m venv --clear --without-pip --system-site-packages .testenv
	.testenv/bin/python3 -m installer .dist/*.whl
	.testenv/bin/python3 -m pytest testing/unit \
		--ignore testing/unit/test_cli_main.py
}

package() {
	python3 -m installer -d "$pkgdir" \
		.dist/*.whl
}

sha512sums="
51dde6e06395ae0de86fbf1a80c325f568464d6b4c96f6e1756cfec3e7194f38b2efd888100fd00853af37199ca1798f614fd4388662da32a7593047016014a3  duplicity-rel.3.0.4.1.tar.bz2
"
