[arch-commits] Commit in python-flask-login/repos (2 files)
Felix Yan
fyan at archlinux.org
Sat Sep 19 13:50:21 UTC 2015
Date: Saturday, September 19, 2015 @ 15:50:20
Author: fyan
Revision: 140841
archrelease: copy trunk to community-staging-any
Added:
python-flask-login/repos/community-staging-any/
python-flask-login/repos/community-staging-any/PKGBUILD
(from rev 140840, python-flask-login/trunk/PKGBUILD)
----------+
PKGBUILD | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
Copied: python-flask-login/repos/community-staging-any/PKGBUILD (from rev 140840, python-flask-login/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2015-09-19 13:50:20 UTC (rev 140841)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgbase=python-flask-login
+pkgname=('python2-flask-login' 'python-flask-login')
+pkgver=0.3.0
+pkgrel=2
+pkgdesc="User session management for Flask."
+arch=('any')
+url="https://pythonhosted.org/Flask-Login/"
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-flask' 'python2-flask' 'git')
+checkdepends=('python-nose' 'python2-nose' 'python-mock' 'python2-mock' 'python-blinker' 'python2-blinker')
+source=("git+https://github.com/maxcountryman/flask-login.git#tag=$pkgver")
+md5sums=('SKIP')
+
+prepare() {
+ cp -a flask-login{,-py2}
+}
+
+check() {
+ cd "$srcdir/flask-login"
+ nosetests3
+
+ cd "$srcdir/flask-login-py2"
+ # https://github.com/maxcountryman/flask-login/issues/232
+ nosetests2 || warning "Tests failed"
+}
+
+package_python-flask-login() {
+ depends=('python-flask')
+
+ cd flask-login
+ python setup.py install --root="$pkgdir/" --optimize=1
+
+ mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
+ install -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname
+}
+
+package_python2-flask-login() {
+ depends=('python2-flask')
+
+ cd flask-login-py2
+ python2 setup.py install --root="$pkgdir/" --optimize=1
+
+ mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
+ install -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname
+}
More information about the arch-commits
mailing list