svn commit: r469912 - in head/security: . py-flask-kerberos

Martin Wilke miwi at FreeBSD.org
Mon May 14 15:59:05 UTC 2018


Author: miwi
Date: Mon May 14 15:59:03 2018
New Revision: 469912
URL: https://svnweb.freebsd.org/changeset/ports/469912

Log:
  GSSAPI Negotiate HTTP authentication for Flask routes.
  
  WWW: https://github.com/mkomitee/flask-kerberos
  
  PR:		225199
  Submitted by:	John W. O'Brien <john at saltant.com>
  Sponsored by:	iXsystems Inc.

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

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Mon May 14 15:54:31 2018	(r469911)
+++ head/security/Makefile	Mon May 14 15:59:03 2018	(r469912)
@@ -934,6 +934,7 @@
     SUBDIR += py-fchksum
     SUBDIR += py-first-server
     SUBDIR += py-flask-httpauth
+    SUBDIR += py-flask-kerberos
     SUBDIR += py-gixy
     SUBDIR += py-gnupg
     SUBDIR += py-gnutls

Added: head/security/py-flask-kerberos/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-kerberos/Makefile	Mon May 14 15:59:03 2018	(r469912)
@@ -0,0 +1,23 @@
+# Created by: John W. O'Brien <john at saltant.com>
+# $FreeBSD$
+
+PORTNAME=	Flask-Kerberos
+PORTVERSION=	1.0.4
+CATEGORIES=	security www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	john at saltant.com
+COMMENT=	GSSAPI Negotiate HTTP authentication for Flask routes
+
+LICENSE=	BSD2CLAUSE
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Flask>0:www/py-flask@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}kerberos>1.1.1:security/py-kerberos@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-flask-kerberos/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-kerberos/distinfo	Mon May 14 15:59:03 2018	(r469912)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1516061296
+SHA256 (Flask-Kerberos-1.0.4.tar.gz) = 6f641f2f534e2194f67a0a15155f9b492e173175f8785e57c373f8754f27ea75
+SIZE (Flask-Kerberos-1.0.4.tar.gz) = 4683

Added: head/security/py-flask-kerberos/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-kerberos/pkg-descr	Mon May 14 15:59:03 2018	(r469912)
@@ -0,0 +1,3 @@
+GSSAPI Negotiate HTTP authentication for Flask routes.
+
+WWW: https://github.com/mkomitee/flask-kerberos


More information about the svn-ports-head mailing list