Date: Tuesday, March 21, 2023 @ 22:40:07
Author: artafinde
Revision: 1425162
archrelease: copy trunk to community-testing-any
Added:
python-nbxmpp/repos/community-testing-any/
python-nbxmpp/repos/community-testing-any/PKGBUILD
(from rev 1425161, python-nbxmpp/trunk/PKGBUILD)
----------+
PKGBUILD | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
Copied: python-nbxmpp/repos/community-testing-any/PKGBUILD (from rev 1425161,
python-nbxmpp/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2023-03-21 22:40:07 UTC (rev 1425162)
@@ -0,0 +1,25 @@
+# Maintainer: Morten Linderud <[email protected]>
+# Contributor: Eric Bélanger <[email protected]>
+
+pkgname=python-nbxmpp
+pkgdesc="A Python library to use Jabber/XMPP networks in a non-blocking way"
+pkgver=4.2.1
+pkgrel=1
+arch=(any)
+url="https://dev.gajim.org/gajim/python-nbxmpp/"
+license=(GPL3)
+depends=(libsoup3 python-gobject python-idna python-precis_i18n)
+makedepends=('python-build' 'python-installer' 'python-wheel'
'python-setuptools')
+source=("https://dev.gajim.org/gajim/python-nbxmpp/-/archive/$pkgver/python-nbxmpp-$pkgver.tar.gz")
+sha256sums=('7d940b5a3f2ca0dc7176a190ac8b007c4ceac4c356c39df8e1b2a87121edfdce')
+b2sums=('cdb2a0c8e5350e535ff16f9ffdcdf5320857d8f75864d77fbb4c752a3969a81c4fbdd1eff46133bade91c7f364ad6804b2cdb7e9f79b988f3e2081ab5d2a5267')
+
+build() {
+ cd $pkgname-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd $pkgname-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}