svn commit: r470467 - in head/security: . py-flask-saml py-flask-saml/files

Martin Wilke miwi at FreeBSD.org
Sun May 20 18:06:18 UTC 2018


Author: miwi
Date: Sun May 20 18:06:16 2018
New Revision: 470467
URL: https://svnweb.freebsd.org/changeset/ports/470467

Log:
  Flask-SAML is an extension for the Flask web application micro framework
  that implements Security Association Markup Language (SAML) authentication.
  
  WWW: https://bitbucket.org/asecurityteam/flask_saml
  
  PR:		225202
  Submitted by:	John W. O'Brien <john at saltant.com>
  Sponsored by:	iXsystems Inc.

Added:
  head/security/py-flask-saml/
  head/security/py-flask-saml/Makefile   (contents, props changed)
  head/security/py-flask-saml/distinfo   (contents, props changed)
  head/security/py-flask-saml/files/
  head/security/py-flask-saml/files/patch-setup.py   (contents, props changed)
  head/security/py-flask-saml/pkg-descr   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Sun May 20 16:26:53 2018	(r470466)
+++ head/security/Makefile	Sun May 20 18:06:16 2018	(r470467)
@@ -935,6 +935,7 @@
     SUBDIR += py-first-server
     SUBDIR += py-flask-httpauth
     SUBDIR += py-flask-kerberos
+    SUBDIR += py-flask-saml
     SUBDIR += py-gixy
     SUBDIR += py-gnupg
     SUBDIR += py-gnutls

Added: head/security/py-flask-saml/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-saml/Makefile	Sun May 20 18:06:16 2018	(r470467)
@@ -0,0 +1,24 @@
+# Created by: John W. O'Brien <john at saltant.com>
+# $FreeBSD$
+
+PORTNAME=	Flask-SAML
+PORTVERSION=	0.4.3
+CATEGORIES=	security www python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	john at saltant.com
+COMMENT=	SAML authentication for Flask web apps
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}Flask>0.8.0:www/py-flask@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}blinker>=1.1:devel/py-blinker@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pysaml2>4.0.0:security/py-pysaml2@${FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/security/py-flask-saml/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-saml/distinfo	Sun May 20 18:06:16 2018	(r470467)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1516061025
+SHA256 (Flask-SAML-0.4.3.tar.gz) = f03dea7bee6746de22042a2f73637d39666e54ab15e3d844de134603f92861c1
+SIZE (Flask-SAML-0.4.3.tar.gz) = 4572

Added: head/security/py-flask-saml/files/patch-setup.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-saml/files/patch-setup.py	Sun May 20 18:06:16 2018	(r470467)
@@ -0,0 +1,10 @@
+--- setup.py.orig	2018-05-21 01:06:59 UTC
++++ setup.py
+@@ -25,7 +25,6 @@ setuptools.setup(
+     author='Florian Ruechel',
+     tests_require=['pytest >= 2.5.2', 'mock', 'sphinx', 'pytest-mock'],
+     install_requires=install_requires,
+-    setup_requires=['pytest-runner'],
+     author_email='fruechel at atlassian.com',
+     description='Flask SAML integration',
+     long_description=long_description,

Added: head/security/py-flask-saml/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/py-flask-saml/pkg-descr	Sun May 20 18:06:16 2018	(r470467)
@@ -0,0 +1,4 @@
+Flask-SAML is an extension for the Flask web application micro framework
+that implements Security Association Markup Language (SAML) authentication.
+
+WWW: https://bitbucket.org/asecurityteam/flask_saml


More information about the svn-ports-all mailing list