mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	this is only a partial rebuild, including stuff that i built on my personal machine with python 3.12.2; might fail with 3.12.3
		
			
				
	
	
		
			33 lines
		
	
	
		
			898 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			898 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: Galen Abell <galen@galenabell.com>
 | |
| # Maintainer: Galen Abell <galen@galenabell.com>
 | |
| pkgname=py3-click-threading
 | |
| _pyname=click-threading
 | |
| pkgver=0.5.0
 | |
| pkgrel=4
 | |
| pkgdesc="Utilities for multithreading in click"
 | |
| url="https://github.com/click-contrib/click-threading"
 | |
| arch="noarch"
 | |
| license="MIT"
 | |
| depends="python3 py3-click"
 | |
| makedepends="py3-setuptools"
 | |
| checkdepends="py3-pytest"
 | |
| subpackages="$pkgname-pyc"
 | |
| source="https://files.pythonhosted.org/packages/source/${_pyname%${_pyname#?}}/$_pyname/$_pyname-$pkgver.tar.gz"
 | |
| builddir="$srcdir/$_pyname-$pkgver"
 | |
| 
 | |
| build() {
 | |
| 	python3 setup.py build
 | |
| }
 | |
| 
 | |
| check() {
 | |
| 	PYTHONPATH="$PWD/build/lib" pytest -v
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 setup.py install --skip-build --root="$pkgdir"
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| 0f3cfe6951488dfa9cb5b6a9356bef99cadc56556640e76f68deb7ca2748f578a8ad77fa063e3ca116b17546199a1b3c7982c58a5a6a7b028704692ce1f9e93f  click-threading-0.5.0.tar.gz
 | |
| "
 |