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
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: Lauren N. Liberda <lauren@selfisekai.rocks>
 | |
| # Maintainer: Lauren N. Liberda <lauren@selfisekai.rocks>
 | |
| pkgname=py3-class-doc
 | |
| pkgver=1.25
 | |
| pkgrel=1
 | |
| pkgdesc="Extract attributes docstrings defined in various ways"
 | |
| url="https://github.com/danields761/class-doc"
 | |
| arch="noarch"
 | |
| license="MIT"
 | |
| depends="py3-more-itertools"
 | |
| makedepends="py3-gpep517 py3-poetry-core"
 | |
| checkdepends="py3-pytest"
 | |
| subpackages="$pkgname-pyc"
 | |
| source="https://github.com/danields761/class-doc/archive/refs/tags/$pkgver/class-doc-$pkgver.tar.gz
 | |
| 	masonry.patch
 | |
| 	"
 | |
| builddir="$srcdir/class-doc-$pkgver"
 | |
| 
 | |
| build() {
 | |
| 	gpep517 build-wheel \
 | |
| 		--wheel-dir .dist \
 | |
| 		--output-fd 3 3>&1 >&2
 | |
| }
 | |
| 
 | |
| check() {
 | |
| 	python3 -m venv --clear --without-pip --system-site-packages testenv
 | |
| 	testenv/bin/python3 -m installer .dist/*.whl
 | |
| 	testenv/bin/python3 -m pytest
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 -m installer -d "$pkgdir" \
 | |
| 		.dist/*.whl
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| ee90100b8be199873c411ecb97915bc835c744d30e539eb661193224a200e66d66189857dc5043bd32f2f01c9ea852b9624d3b01d4236e2e3f93fe278d0da26a  class-doc-1.25.tar.gz
 | |
| f063b339531531a47a9a72f84a49374f6e8178d8901c207bcb7713a19c49ed72f54260937b5d5d106bc48c8d54e43eeef818c0d6a6a32f4edc06ce9f71962050  masonry.patch
 | |
| "
 |