Date: Sunday, July 29, 2018 @ 08:15:44 Author: eschwartz Revision: 364303
upgpkg: python-wtforms 2.2.1-3 fix locales Modified: python-wtforms/trunk/PKGBUILD ----------+ PKGBUILD | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-07-29 07:09:47 UTC (rev 364302) +++ PKGBUILD 2018-07-29 08:15:44 UTC (rev 364303) @@ -7,13 +7,13 @@ pkgbase=python-wtforms pkgname=('python-wtforms' 'python2-wtforms') pkgver=2.2.1 -pkgrel=2 +pkgrel=3 pkgdesc='Flexible forms validation and rendering library for python web development' -url='http://wtforms.simplecodes.com/' +url='https://wtforms.readthedocs.io/' arch=('any') license=('BSD') -makedepends=('python-setuptools' 'python-sphinx' - 'python2-setuptools' 'python2-sphinx') +makedepends=('python-setuptools' 'python-babel' 'python-sphinx' + 'python2-setuptools' 'python-babel' 'python2-sphinx') source=(${pkgname}-${pkgver}.tar.gz::https://github.com/wtforms/wtforms/archive/${pkgver}.tar.gz) sha512sums=('db989ff5352d6834fc51c0ed208de11c12a2c0ad90f73dfeaa8f9995edc7f840deb427f1ffc6167f1c24e44f2137ecbb27ee1113258a6c55ed256a603657ef97') @@ -23,9 +23,11 @@ build() { (cd ${_pyname}-${pkgver} + python setup.py build compile_catalog make -C docs html SPHINXBUILD=sphinx-build ) (cd ${_pyname}-${pkgver}-py2 + python2 setup.py build compile_catalog make -C docs html SPHINXBUILD=sphinx-build2 ) } @@ -34,6 +36,7 @@ depends=('python') cd ${_pyname}-${pkgver} python setup.py install --root="${pkgdir}" -O1 + find "$pkgdir" -type f -name \*.po -delete install -Dm 644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}" install -Dm 644 CHANGES.rst README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" cp -r docs/_build/html "${pkgdir}/usr/share/doc/${pkgname}/html" @@ -43,6 +46,7 @@ depends=('python2') cd ${_pyname}-${pkgver}-py2 python2 setup.py install --root="${pkgdir}" -O1 + find "$pkgdir" -type f -name \*.po -delete install -Dm 644 LICENSE.rst -t "${pkgdir}/usr/share/licenses/${pkgname}" install -Dm 644 CHANGES.rst README.rst -t "${pkgdir}/usr/share/doc/${pkgname}" cp -r docs/_build/html "${pkgdir}/usr/share/doc/${pkgname}/html"