blob: ee8e0af7aee316be73826c80fe47c73eac4fa0f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Ondřej Hošek <ondra.hosek@gmail.com>
# Contributor: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
_gitrepo='python-nbxmpp'
pkgname='python-nbxmpp-git'
pkgver=5.0.3.r4.gb44690d
pkgrel=1
pkgdesc="Nonblocking Jabber/XMPP library, used by Gajim"
arch=('any')
url="https://dev.gajim.org/gajim/python-nbxmpp"
license=('GPL3')
makedepends=('git' 'python' 'python-build' 'python-installer' 'python-setuptools' 'python-wheel')
depends=('python' 'python-precis_i18n' 'python-gobject' 'python-packaging' 'python-idna' 'libsoup3' 'glib2')
conflicts=('python-nbxmpp')
provides=("python-nbxmpp=$pkgver")
source=("git+https://dev.gajim.org/gajim/$_gitrepo.git")
sha384sums=('SKIP')
pkgver() {
cd "$srcdir/$_gitrepo"
git describe --tags --long | sed 's/^nbxmpp-//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$srcdir/$_gitrepo"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/$_gitrepo"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|