aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-html5lib/APKBUILD
blob: 9d64d3324d3598a1896bb18d55b5fa47e1943e13 (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
29
30
31
32
33
34
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Contributor: Stefan Wagner <stw@bit-strickerei.de>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-html5lib
_pkgname=html5lib
pkgver=1.0.1
pkgrel=4
pkgdesc="A Python HTML parser"
options="!check" # 1 test fail TypeError: object of type 'MarkDecorator' has no len()
url="https://github.com/html5lib/html5lib-python"
arch="noarch"
license="MIT"
depends="py3-six py3-webencodings"
checkdepends="py3-pytest py3-pytest-expect py3-mock"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver

replaces="py-html5lib" # Backwards compatibility
provides="py-html5lib=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	python3 setup.py build
}

check() {
	py.test-3
}

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

sha512sums="35939b4450893864da04e735ee5e0addacf1dd34bae6a6909c76572abf6bfded446a78a713dfde91c1485ba45867d7abeb6a45cf0545c16ea968707be7de5dd2  html5lib-1.0.1.tar.gz"