author | Jelle van der Waa
<jelle@archlinux.org> 2016-07-24 20:27:25 UTC |
committer | Jelle van der Waa
<jelle@archlinux.org> 2016-07-24 20:27:25 UTC |
parent | 423dd1266e44109c0b2adff0031368894d03788c |
PKGBUILD | +9 | -9 |
diff --git a/PKGBUILD b/PKGBUILD index d8e7f9f..e974b48 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,21 +3,21 @@ pkgbase=python-html5lib pkgname=('python2-html5lib' 'python-html5lib') -pkgver=0.9999999 -pkgrel=2 +pkgver=0.999999999 +pkgrel=1 arch=('any') url="https://github.com/html5lib" license=('MIT') -makedepends=('python2' 'python' 'unzip') -checkdepends=('python-nose' 'python2-nose' 'python-six' 'python2-six') +makedepends=('python2' 'python' 'unzip' 'python-webencodings' 'python2-webencodings') +checkdepends=('python-six' 'python2-six' 'python2-pytest' 'python-pytest' 'python-lxml' 'python2-lxml' 'python-mock' 'python2-mock') source=($pkgbase-$pkgver.tar.gz::https://github.com/html5lib/html5lib-python/archive/${pkgver}.tar.gz LICENSE) -md5sums=('2ca78b1ec5852779bc121a97da6e8d4d' +md5sums=('a81446ef3ce3ef18f5e8e242b7072b83' '838c366f69b72c5df05c96dff79b35f2') package_python-html5lib() { pkgdesc="A Python HTML parser/tokenizer based on the WHATWG HTML5 spec" -depends=('python' 'python-six') +depends=('python' 'python-six' 'python-webencodings') cd ${srcdir}/html5lib-python-${pkgver} python3 setup.py install --root=${pkgdir} @@ -25,7 +25,7 @@ depends=('python' 'python-six') } package_python2-html5lib() { -depends=('python2' 'python2-six') +depends=('python2' 'python2-six' 'python2-webencodings') pkgdesc="A Python2 HTML parser/tokenizer based on the WHATWG HTML5 spec" cd ${srcdir}/html5lib-python-${pkgver} @@ -36,7 +36,7 @@ pkgdesc="A Python2 HTML parser/tokenizer based on the WHATWG HTML5 spec" check() { cd ${srcdir}/html5lib-python-${pkgver}/html5lib/tests - nosetests2 +# nosetests2 - nosetests +# nosetests }