mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 00:12:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			947 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			947 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Maintainer: Hugo Osvaldo Barrera <hugo@whynothugo.nl>
 | |
| pkgname=py3-virtualenvwrapper
 | |
| pkgver=4.8.4
 | |
| pkgrel=0
 | |
| pkgdesc="Extensions to Ian Bicking's virtualenv tool"
 | |
| url="https://virtualenvwrapper.readthedocs.io/"
 | |
| arch="noarch"
 | |
| license="MIT"
 | |
| depends="python3 py3-virtualenv py3-stevedore"
 | |
| makedepends="
 | |
| 	grep
 | |
| 	py3-gpep517
 | |
| 	py3-pbr
 | |
| 	py3-setuptools
 | |
| 	py3-wheel
 | |
| 	"
 | |
| checkdepends="py3-pytest py3-six"
 | |
| source="https://pypi.org/packages/source/v/virtualenvwrapper/virtualenvwrapper-$pkgver.tar.gz"
 | |
| builddir="$srcdir/virtualenvwrapper-$pkgver"
 | |
| options="!check" # fail to run
 | |
| 
 | |
| build() {
 | |
| 	export PBR_VERSION=$pkgver
 | |
| 	gpep517 build-wheel \
 | |
| 		--wheel-dir dist \
 | |
| 		--output-fd 3 3>&1 >&2
 | |
| }
 | |
| 
 | |
| check() {
 | |
| 	sh tests/run_tests
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 -m installer -d "$pkgdir" \
 | |
| 		dist/*.whl
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| 461938100061e11af0ee9b17405d991ae34e5ec9c79cc12614962d3178b588a2da710baa15ac626960b09177c1b5b10c7bc590cb4c126ebd2f719d0f1527c9c4  virtualenvwrapper-4.8.4.tar.gz
 | |
| "
 |