svn commit: r383561 - in head/security: . py-flask-httpauth

Ruslan Makhmatkhanov rm at FreeBSD.org
Wed Apr 8 10:58:07 UTC 2015


Author: rm
Date: Wed Apr  8 10:58:05 2015
New Revision: 383561
URL: https://svnweb.freebsd.org/changeset/ports/383561

Log:
  Basic and Digest HTTP authentication for Flask routes.
  
  WWW: http://github.com/miguelgrinberg/flask-httpauth/

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Wed Apr  8 10:54:10 2015	(r383560)
+++ head/security/Makefile	Wed Apr  8 10:58:05 2015	(r383561)
@@ -789,6 +789,7 @@
     SUBDIR += py-ed25519ll
     SUBDIR += py-fail2ban
     SUBDIR += py-fchksum
+    SUBDIR += py-flask-httpauth
     SUBDIR += py-gnupg
     SUBDIR += py-gnutls
     SUBDIR += py-htpasswd

Added: head/security/py-flask-httpauth/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-httpauth/Makefile	Wed Apr  8 10:58:05 2015	(r383561)
@@ -0,0 +1,17 @@
+# $FreeBSD$
+
+PORTNAME=	Flask-HTTPAuth
+PORTVERSION=	2.4.0
+CATEGORIES=	security python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	rm at FreeBSD.org
+COMMENT=	Basic and Digest HTTP authentication for Flask routes
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Flask>0:${PORTSDIR}/www/py-flask
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/security/py-flask-httpauth/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-httpauth/distinfo	Wed Apr  8 10:58:05 2015	(r383561)
@@ -0,0 +1,2 @@
+SHA256 (Flask-HTTPAuth-2.4.0.tar.gz) = bdab2c61fb68f620710513d9ef2440745c011873efe7395c9e4e38bc53d9350f
+SIZE (Flask-HTTPAuth-2.4.0.tar.gz) = 2433

Added: head/security/py-flask-httpauth/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-httpauth/pkg-descr	Wed Apr  8 10:58:05 2015	(r383561)
@@ -0,0 +1,3 @@
+Basic and Digest HTTP authentication for Flask routes.
+
+WWW: http://github.com/miguelgrinberg/flask-httpauth/


More information about the svn-ports-all mailing list