# Contributor: Erol V. Aktay # Maintainer: Daniel J Griffiths pkgbase=python-html5lib pkgname=('python2-html5lib') pkgver=0.999999999 pkgrel=2 arch=('any') url="https://github.com/html5lib" license=('MIT') makedepends=('python2' 'unzip' 'python2-webencodings') checkdepends=('python2-six' 'python2-pytest' 'python2-lxml' 'python2-mock') source=($pkgbase-$pkgver.tar.gz::https://github.com/html5lib/html5lib-python/archive/${pkgver}.tar.gz LICENSE) md5sums=('a81446ef3ce3ef18f5e8e242b7072b83' '838c366f69b72c5df05c96dff79b35f2') package_python-html5lib() { pkgdesc="A Python HTML parser/tokenizer based on the WHATWG HTML5 spec" depends=('python' 'python-six' 'python-webencodings') cd ${srcdir}/html5lib-python-${pkgver} python3 setup.py install --root=${pkgdir} install -Dm755 $srcdir/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE } package_python2-html5lib() { depends=('python2' 'python2-six' 'python2-webencodings') pkgdesc="A Python2 HTML parser/tokenizer based on the WHATWG HTML5 spec" cd ${srcdir}/html5lib-python-${pkgver} python2 setup.py install --root=${pkgdir} install -Dm755 $srcdir/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE } check() { cd ${srcdir}/html5lib-python-${pkgver}/html5lib/tests # nosetests2 # nosetests }