[arch-commits] Commit in python-flask/repos (2 files)

Felix Yan felixonmars at archlinux.org
Sat Jun 30 09:11:57 UTC 2018


    Date: Saturday, June 30, 2018 @ 09:11:57
  Author: felixonmars
Revision: 348004

archrelease: copy trunk to community-staging-any

Added:
  python-flask/repos/community-staging-any/
  python-flask/repos/community-staging-any/PKGBUILD
    (from rev 348003, python-flask/trunk/PKGBUILD)

----------+
 PKGBUILD |   57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

Copied: python-flask/repos/community-staging-any/PKGBUILD (from rev 348003, python-flask/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2018-06-30 09:11:57 UTC (rev 348004)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Sven-Hendrik Haase <sh at lutzhaase.com>
+# Contributor: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Tarmo Heiskanen <turskii at 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:



More information about the arch-commits mailing list