svn commit: r418644 - in head/www: . py-flask-login

Pawel Pekala pawel at FreeBSD.org
Sat Jul 16 17:21:17 UTC 2016


Author: pawel
Date: Sat Jul 16 17:21:15 2016
New Revision: 418644
URL: https://svnweb.freebsd.org/changeset/ports/418644

Log:
  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 at ebert.su>

Added:
  head/www/py-flask-login/
  head/www/py-flask-login/Makefile   (contents, props changed)
  head/www/py-flask-login/distinfo   (contents, props changed)
  head/www/py-flask-login/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Sat Jul 16 17:12:56 2016	(r418643)
+++ head/www/Makefile	Sat Jul 16 17:21:15 2016	(r418644)
@@ -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

Added: head/www/py-flask-login/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-login/Makefile	Sat Jul 16 17:21:15 2016	(r418644)
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+PORTNAME=	Flask-Login
+PORTVERSION=	0.3.2
+CATEGORIES=	www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	andrej at 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>

Added: head/www/py-flask-login/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-login/distinfo	Sat Jul 16 17:21:15 2016	(r418644)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1468169405
+SHA256 (Flask-Login-0.3.2.tar.gz) = e72eff5c35e5a31db1aeca1db5d2501be702674ea88e8f223b5d2b11644beee6
+SIZE (Flask-Login-0.3.2.tar.gz) = 11799

Added: head/www/py-flask-login/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/py-flask-login/pkg-descr	Sat Jul 16 17:21:15 2016	(r418644)
@@ -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


More information about the svn-ports-head mailing list