Date: Wednesday, February 23, 2022 @ 06:42:19 Author: foutrelis Revision: 1136228
upgpkg: borg 1.2.0-2: move python-msgpack to deps (FS#73929) Also: - add python-pkgconfig to build deps to avoid having to specify BORG_OPENSSL_PREFIX - remove cython build dep; unneeded when using release tarballs Modified: borg/trunk/PKGBUILD ----------+ PKGBUILD | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2022-02-23 06:28:02 UTC (rev 1136227) +++ PKGBUILD 2022-02-23 06:42:19 UTC (rev 1136228) @@ -5,17 +5,19 @@ pkgname=borg _pkgname=borgbackup pkgver=1.2.0 -pkgrel=1 +pkgrel=2 pkgdesc='Deduplicating backup program with compression and authenticated encryption' url='https://borgbackup.github.io/' license=('BSD') arch=('x86_64') -depends=('acl' 'lz4' 'openssl' 'xz' 'zstd' 'python' 'python-packaging') +depends=('acl' 'lz4' 'openssl' 'xz' 'zstd' 'python' 'python-packaging' + 'python-msgpack') optdepends=('openssh: repositories on remote hosts' 'python-llfuse: mounting backups as a FUSE file system') -makedepends=('cython' 'python-sphinx' 'python-setuptools' 'python-guzzle-sphinx-theme' 'python-setuptools-scm') +makedepends=('python-setuptools' 'python-setuptools-scm' 'python-pkgconfig' + 'python-sphinx' 'python-guzzle-sphinx-theme') checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-benchmark' - 'python-mock' 'python-msgpack' 'python-dateutil') + 'python-mock' 'python-dateutil') provides=('borgbackup') replaces=('borgbackup') source=("https://github.com/$_pkgname/$pkgname/releases/download/$pkgver/$_pkgname-$pkgver.tar.gz"{,.asc}) @@ -25,7 +27,6 @@ build() { cd "$_pkgname-$pkgver" - export BORG_OPENSSL_PREFIX="/usr/include/openssl/" python setup.py build }