mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
Gajim was recently updated to 2.1.0, but it fails to start without this dependency: > gajim Gajim needs python-nbxmpp >= 6.1.0 (found 6.0.2) to run. Quitting...
34 lines
1 KiB
Text
34 lines
1 KiB
Text
# Maintainer: Peter Shkenev <santurysim@gmail.com>
|
|
pkgname=py3-nbxmpp
|
|
_pkgname=python-nbxmpp
|
|
pkgver=6.1.1
|
|
pkgrel=0
|
|
pkgdesc="A non-blocking XMPP implementation for python"
|
|
url="https://dev.gajim.org/gajim/python-nbxmpp/"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later AND GPL-2.0-or-later AND MIT"
|
|
depends="python3 py3-idna py3-precis-i18n py3-packaging libsoup3"
|
|
makedepends="py3-setuptools py3-gpep517 py3-wheel"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://dev.gajim.org/gajim/$_pkgname/-/archive/$pkgver/$_pkgname-$pkgver.tar.bz2"
|
|
options="!check" # no test suite
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
replaces=py-nbxmpp # Backwards compatibility
|
|
provides=py-nbxmpp=$pkgver-r$pkgrel # Backwards compatibility
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
|
|
}
|
|
|
|
sha512sums="
|
|
8065f7d38dd87907c36d28b5d1ecad35ceed6fde45b84c5d9235754857f12b2d727751bcdda41cbb8ba772afad865f7d3de4ebd04af763305d7c8b7667008ef9 python-nbxmpp-6.1.1.tar.bz2
|
|
"
|