Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 1 May 2020 14:09:35 +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: r533540 - in head/devel: . py-msal-extensions
Message-ID:  <202005011409.041E9ZbN021233@repo.freebsd.org>

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

Log:
  Add devel/py-msal-extensions: Microsoft Authentication Extensions for Python
  
  The Microsoft Authentication Extensions for Python offers secure mechanisms for
  client applications to perform cross-platform token cache serialization and
  persistence. It gives additional support to the Microsoft Authentication
  Library for Python (MSAL).
  
  MSAL Python supports an in-memory cache by default and provides the
  SerializableTokenCache to perform cache serialization. You can read more about
  this in the MSAL Python documentation. Developers are required to implement
  their own cache persistance across multiple platforms and Microsoft
  Authentication Extensions makes this simpler.
  
  WWW: https://pypi.org/project/msal-extensions/

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Fri May  1 14:08:13 2020	(r533539)
+++ head/devel/Makefile	Fri May  1 14:09:35 2020	(r533540)
@@ -4669,6 +4669,7 @@
     SUBDIR += py-mox
     SUBDIR += py-mox3
     SUBDIR += py-msal
+    SUBDIR += py-msal-extensions
     SUBDIR += py-msgpack
     SUBDIR += py-mulpyplexer
     SUBDIR += py-multi_key_dict

Added: head/devel/py-msal-extensions/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-msal-extensions/Makefile	Fri May  1 14:09:35 2020	(r533540)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	msal-extensions
+DISTVERSION=	0.2.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	dbaio@FreeBSD.org
+COMMENT=	Microsoft Authentication Extensions for Python
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}msal>=0.4.1<2.0.0:devel/py-msal@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}portalocker>=1.0:devel/py-portalocker@${PY_FLAVOR} \
+		${PY_PATHLIB}
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/devel/py-msal-extensions/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-msal-extensions/distinfo	Fri May  1 14:09:35 2020	(r533540)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588336565
+SHA256 (msal-extensions-0.2.2.tar.gz) = 31414753c484679bb3b6c6401623eb4c3ccab630af215f2f78c1d5c4f8e1d1a9
+SIZE (msal-extensions-0.2.2.tar.gz) = 12607

Added: head/devel/py-msal-extensions/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-msal-extensions/pkg-descr	Fri May  1 14:09:35 2020	(r533540)
@@ -0,0 +1,12 @@
+The Microsoft Authentication Extensions for Python offers secure mechanisms for
+client applications to perform cross-platform token cache serialization and
+persistence. It gives additional support to the Microsoft Authentication
+Library for Python (MSAL).
+
+MSAL Python supports an in-memory cache by default and provides the
+SerializableTokenCache to perform cache serialization. You can read more about
+this in the MSAL Python documentation. Developers are required to implement
+their own cache persistance across multiple platforms and Microsoft
+Authentication Extensions makes this simpler.
+
+WWW: https://pypi.org/project/msal-extensions/



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