aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-glob2/APKBUILD
blob: e383f6285253794c6a3fbfc21fe3a491077d9fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=py3-glob2
_pkgname=glob2
pkgver=0.7
pkgrel=1
pkgdesc="Version of the glob module that supports recursion via **, and can capture patterns"
url="https://github.com/miracle2k/python-glob2"
arch="noarch"
license="BSD-2-Clause"
depends="python3"
checkdepends="py3-pytest"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir/$_pkgname-$pkgver"

build() {
	python3 setup.py build
}

check() {
	pytest-3 test.py
}

package() {
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="6707c33782373cd71b1794ef3a143f6c0ceb5733bec944d16596eb4662df4c788328078b621bdda6096da95ec2f267256fca620dd7691eb02bf0ce940dd4150e  glob2-0.7.tar.gz"