Date: Wed, 8 Apr 2015 10:58:05 +0000 (UTC) From: Ruslan Makhmatkhanov <rm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r383561 - in head/security: . py-flask-httpauth Message-ID: <201504081058.t38Aw5pF046086@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504081058.t38Aw5pF046086>