mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			970 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			970 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Maintainer: Peter Shkenev <santurysim@gmail.com>
 | |
| pkgname=py3-nbxmpp
 | |
| _pkgname=nbxmpp
 | |
| pkgver=4.2.0
 | |
| 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"
 | |
| depends="python3 py3-idna py3-precis-i18n py3-packaging libsoup3"
 | |
| makedepends="py3-setuptools py3-gpep517 py3-wheel"
 | |
| source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
 | |
| 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="
 | |
| e933b2a36abd99b63695896efda5170a53ef5215e6013a7db7ad4b89ae180a991aa04c68184cd5b21c860c26003b53b4bfbebf6aaff9c7ea7af03710591ac167  nbxmpp-4.2.0.tar.gz
 | |
| "
 |