Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 May 2020 14:08:14 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533539 - in head/devel: . py-msal
Message-ID:  <202005011408.041E8EGu021006@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dbaio
Date: Fri May  1 14:08:13 2020
New Revision: 533539
URL: https://svnweb.freebsd.org/changeset/ports/533539

Log:
  Add devel/py-msal: Microsoft Authentication Library (MSAL) for Python
  
  The Microsoft Authentication Library for Python enables applications to
  integrate with the Microsoft identity platform. It allows you to sign in users
  or apps with Microsoft identities (Azure AD, Microsoft Accounts and Azure AD
  B2C accounts) and obtain tokens to call Microsoft APIs such as Microsoft Graph
  or your own APIs registered with the Microsoft identity platform. It is built
  using industry standard OAuth2 and OpenID Connect protocols.
  
  WWW: https://github.com/AzureAD/microsoft-authentication-library-for-python

Added:
  head/devel/py-msal/
  head/devel/py-msal/Makefile   (contents, props changed)
  head/devel/py-msal/distinfo   (contents, props changed)
  head/devel/py-msal/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri May  1 13:40:25 2020	(r533538)
+++ head/devel/Makefile	Fri May  1 14:08:13 2020	(r533539)
@@ -4668,6 +4668,7 @@
     SUBDIR += py-more-itertools5
     SUBDIR += py-mox
     SUBDIR += py-mox3
+    SUBDIR += py-msal
     SUBDIR += py-msgpack
     SUBDIR += py-mulpyplexer
     SUBDIR += py-multi_key_dict

Added: head/devel/py-msal/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-msal/Makefile	Fri May  1 14:08:13 2020	(r533539)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	msal
+DISTVERSION=	1.2.0
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@FreeBSD.org
+COMMENT=	Microsoft Authentication Library (MSAL) for Python
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}requests>=2.0.0<3:www/py-requests@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pyjwt>=1.0.0<2:www/py-pyjwt@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-msal/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-msal/distinfo	Fri May  1 14:08:13 2020	(r533539)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588336121
+SHA256 (msal-1.2.0.tar.gz) = de98eabd7fa3cc36c7b8c11ac28a1a56538b37fb04894aeb4b485bcd9ecb175f
+SIZE (msal-1.2.0.tar.gz) = 42220

Added: head/devel/py-msal/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-msal/pkg-descr	Fri May  1 14:08:13 2020	(r533539)
@@ -0,0 +1,8 @@
+The Microsoft Authentication Library for Python enables applications to
+integrate with the Microsoft identity platform. It allows you to sign in users
+or apps with Microsoft identities (Azure AD, Microsoft Accounts and Azure AD
+B2C accounts) and obtain tokens to call Microsoft APIs such as Microsoft Graph
+or your own APIs registered with the Microsoft identity platform. It is built
+using industry standard OAuth2 and OpenID Connect protocols.
+
+WWW: https://github.com/AzureAD/microsoft-authentication-library-for-python



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005011408.041E8EGu021006>