Date: Thursday, March 9, 2023 @ 10:08:33
Author: artafinde
Revision: 1416982
archrelease: copy trunk to community-testing-any
Added:
python-nbxmpp/repos/community-testing-any/
python-nbxmpp/repos/community-testing-any/PKGBUILD
(from rev 1416981, python-nbxmpp/trunk/PKGBUILD)
----------+
PKGBUILD | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
Copied: python-nbxmpp/repos/community-testing-any/PKGBUILD (from rev 1416981,
python-nbxmpp/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2023-03-09 10:08:33 UTC (rev 1416982)
@@ -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.0
+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=('b42abacdd1686800da6f3a4eb07cdccea0691f09335ac4ed32ef989031f2d4eb')
+b2sums=('5779609060b6973be229d371ffe8300662b93504c7c169eff6229cc79cf7105cb57493c078ad0f07b6575b375af24c865897586e869e351ee56e5ab7af48cbfa')
+
+build() {
+ cd $pkgname-$pkgver
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd $pkgname-$pkgver
+ python -m installer --destdir="$pkgdir" dist/*.whl
+}