1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Provides user session management for Flask.

It handles tasks of logging in, logging out, and remembering your user's
sessions over extended periods of time.
It is not bound to any particular database system or permissions model.

WWW: https://github.com/maxcountryman/flask-login

PR:		210978
Submitted by:	Andrej Ebert <andrej@ebert.su>
This commit is contained in:
Pawel Pekala 2016-07-16 17:21:15 +00:00
parent 79e38944f4
commit bb7ff5e2e1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=418644
4 changed files with 31 additions and 0 deletions

View File

@ -1599,6 +1599,7 @@
SUBDIR += py-flask-compress
SUBDIR += py-flask-cors
SUBDIR += py-flask-flatpages
SUBDIR += py-flask-login
SUBDIR += py-flask-oauthlib
SUBDIR += py-flask-restful
SUBDIR += py-flask-sockets

View File

@ -0,0 +1,21 @@
# $FreeBSD$
PORTNAME= Flask-Login
PORTVERSION= 0.3.2
CATEGORIES= www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= andrej@ebert.su
COMMENT= User session management for Flask
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=0.9:www/py-flask
USES= python
USE_PYTHON= autoplist distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1468169405
SHA256 (Flask-Login-0.3.2.tar.gz) = e72eff5c35e5a31db1aeca1db5d2501be702674ea88e8f223b5d2b11644beee6
SIZE (Flask-Login-0.3.2.tar.gz) = 11799

View File

@ -0,0 +1,6 @@
Provides user session management for Flask.
It handles tasks of logging in, logging out, and remembering your user's
sessions over extended periods of time.
It is not bound to any particular database system or permissions model.
WWW: https://github.com/maxcountryman/flask-login