Date: Saturday, May 25, 2019 @ 05:01:36 Author: felixonmars Revision: 469713
archrelease: copy trunk to community-any Added: python-flask/repos/community-any/PKGBUILD (from rev 469712, python-flask/trunk/PKGBUILD) Deleted: python-flask/repos/community-any/PKGBUILD ----------+ PKGBUILD | 115 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 58 insertions(+), 57 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2019-05-25 05:01:24 UTC (rev 469712) +++ PKGBUILD 2019-05-25 05:01:36 UTC (rev 469713) @@ -1,57 +0,0 @@ -# $Id$ -# Maintainer: Sven-Hendrik Haase <s...@lutzhaase.com> -# Contributor: Alexander Rødseth <rods...@gmail.com> -# Contributor: Thomas Dziedzic < gostrc at gmail > -# Contributor: Tarmo Heiskanen <turs...@gmail.com> - -pkgbase=python-flask -pkgname=('python-flask' 'python2-flask') -pkgver=1.0.2 -pkgrel=2 -pkgdesc='Micro webdevelopment framework for Python' -url='http://flask.pocoo.org/' -arch=('any') -license=('custom:BSD') -makedepends=('python-setuptools' 'python2-setuptools') -source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz") -sha512sums=('80a65b62293560982eaf043cf923eaf91f57ba7ce71329046227fcbd7cc0ead841449083b7fc23d283b2515322c4ea732a36b445ff9f1697febc0207392a9792') - -prepare() { - cp -r "flask-$pkgver" "python-flask-$pkgver" - cp -r "flask-$pkgver" "python2-flask-$pkgver" -} - -buildk() { - cd "$srcdir/python-flask-$pkgver" - python setup.py build - - cd "$srcdir/python2-flask-$pkgver" - python setup.py build -} - -check() { - cd "$srcdir/python-flask-$pkgver" - python setup.py test - - cd "$srcdir/python2-flask-$pkgver" - python2 setup.py test -} - -package_python-flask() { - depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 'python-click') - cd "$srcdir/python-flask-$pkgver" - - python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -package_python2-flask() { - depends=('python2-werkzeug' 'python2-jinja' 'python2-itsdangerous' 'python2-click') - cd "$srcdir/python2-flask-$pkgver" - - python2 setup.py install --root="$pkgdir" --optimize=1 - mv "$pkgdir"/usr/bin/flask "$pkgdir"/usr/bin/flask2 - install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: python-flask/repos/community-any/PKGBUILD (from rev 469712, python-flask/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2019-05-25 05:01:36 UTC (rev 469713) @@ -0,0 +1,58 @@ +# Maintainer: Sven-Hendrik Haase <s...@lutzhaase.com> +# Contributor: Alexander Rødseth <rods...@gmail.com> +# Contributor: Thomas Dziedzic < gostrc at gmail > +# Contributor: Tarmo Heiskanen <turs...@gmail.com> + +pkgbase=python-flask +pkgname=('python-flask' 'python2-flask') +pkgver=1.0.3 +pkgrel=1 +pkgdesc='Micro webdevelopment framework for Python' +url='http://flask.pocoo.org/' +arch=('any') +license=('custom:BSD') +makedepends=('python-setuptools' 'python2-setuptools' 'python-werkzeug' 'python2-werkzeug' + 'python-jinja' 'python2-jinja' 'python-itsdangerous' 'python2-itsdangerous' + 'python-click' 'python2-click') +source=("https://github.com/pallets/flask/archive/${pkgver}.tar.gz") +sha512sums=('67aaed68f7a918909ec3107777f53a97d921259824996fd3dc5fb46d03c9b8e918f25a7f02cd845139d6e4444d21baf3c4b721956a383fc82d4cc5fdd9367207') + +prepare() { + cp -r "flask-$pkgver" "python-flask-$pkgver" + cp -r "flask-$pkgver" "python2-flask-$pkgver" +} + +buildk() { + cd "$srcdir/python-flask-$pkgver" + python setup.py build + + cd "$srcdir/python2-flask-$pkgver" + python setup.py build +} + +check() { + cd "$srcdir/python-flask-$pkgver" + python setup.py test + + cd "$srcdir/python2-flask-$pkgver" + python2 setup.py test +} + +package_python-flask() { + depends=('python-werkzeug' 'python-jinja' 'python-itsdangerous' 'python-click') + cd "$srcdir/python-flask-$pkgver" + + python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +package_python2-flask() { + depends=('python2-werkzeug' 'python2-jinja' 'python2-itsdangerous' 'python2-click') + cd "$srcdir/python2-flask-$pkgver" + + python2 setup.py install --root="$pkgdir" --optimize=1 + mv "$pkgdir"/usr/bin/flask "$pkgdir"/usr/bin/flask2 + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} + +# vim:set ts=2 sw=2 et: