mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 00:12:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
 | |
| # Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
 | |
| pkgname=py3-codespell
 | |
| _pkgname=${pkgname#py3-}
 | |
| pkgver=2.2.2
 | |
| pkgrel=1
 | |
| pkgdesc="Fix common misspellings in text files, primarily source code"
 | |
| options="!check" # No testsuite
 | |
| url="https://github.com/codespell-project/codespell/"
 | |
| arch="noarch"
 | |
| license="GPL-2.0-only"
 | |
| makedepends="
 | |
| 	py3-gpep517
 | |
| 	py3-setuptools
 | |
| 	py3-setuptools_scm
 | |
| 	py3-wheel
 | |
| 	"
 | |
| checkdepends="py3-pytest"
 | |
| depends="py3-chardet"
 | |
| source="$pkgname-$pkgver.tar.gz::https://github.com/codespell-project/codespell/archive/refs/tags/v$pkgver.tar.gz"
 | |
| builddir="$srcdir"/$_pkgname-$pkgver
 | |
| 
 | |
| build() {
 | |
| 	SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver \
 | |
| 	gpep517 build-wheel \
 | |
| 		--wheel-dir dist \
 | |
| 		--output-fd 3 3>&1 >&2
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 -m installer -d "$pkgdir" \
 | |
| 		dist/*.whl
 | |
| }
 | |
| 
 | |
| sha512sums="
 | |
| 1783505829e2abe2eb75854cbc83403bbaeebc61d5eb1832803b065a7314c4140f936ec5018c62883befbf51e4425f96ed8298596fc9a103bcce90fb3dbf5e8d  py3-codespell-2.2.2.tar.gz
 | |
| "
 |