Python Azure

This commit is contained in:
Gerben Jan Dijkman
2021-07-08 23:55:07 +02:00
parent eccf7e3e78
commit 83357f9877
59 changed files with 827 additions and 0 deletions

3
dev-python/msal/Manifest Normal file
View File

@@ -0,0 +1,3 @@
DIST msal-1.10.0.tar.gz 56834 BLAKE2B 3989cec0c7aa9b2531650b8f197ed25e73c206354fc8b2ac8ac3cdda14bc4762e914f3eb696eca8358196fa2cfa866351fecc755be8e7692545129307aebeac8 SHA512 f95e52720d998b3aa66bca3ca56a23495a94c66b24ddd1e09bf246183d9afe67b338af9f61a162c15bcb6d6b9ddb89b0371e7f609b8f88c268878f644906e86c
EBUILD msal-1.10.0.ebuild 551 BLAKE2B de9141045beb88667269e2d72578d24a2ee872cbe12209a77401e8189091e9604f227c89797224734e46a14579d9f43b01b1e3cddf9a0570cc4adec3e1a403a4 SHA512 b00a33ae5d110f8eae7e20ec85c87ddb8e779ebe7f9fe0d33a933e0409e1bbbdf176f1cd934b7312e49d0203e0a721f6ab474072edab4907887bde2928f9a38e
MISC metadata.xml 661 BLAKE2B 4f3ecbf11af41157fb8a171291d86cf064b7035fb420bb11623c985702eea8e655dcbd305b6c99b1a086b5a87323b681491be3433f38439b8d75fe7907a9680b SHA512 c3c184ffa3a5ce5428a41aa916caf8d981cb277e483405378f7791eb59e807d993c42d540ccef819e0f7f6772d75854b9028bd375daf9a4c0fc2b626542665b5

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>vincent.hardy@linuxunderground.be</email>
<name>Vincent Hardy</name>
</maintainer>
<upstream>
<remote-id type="pypi">msal</remote-id>
</upstream>
<longdescription>
The Microsoft Authentication Library (MSAL) for Python library enables your app to access the Microsoft Cloud by supporting authentication of users with Microsoft Azure Active Directory accounts (AAD) and Microsoft Accounts (MSA) using industry standard OAuth2 and OpenID Connect.
</longdescription>
</pkgmetadata>

View File

@@ -0,0 +1,22 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
inherit distutils-r1
DESCRIPTION="Microsoft Authentication Library (MSAL) for Python library"
HOMEPAGE="https://pypi.org/project/msal"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="MIT"
SLOT="0"
RDEPEND=">=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
>=dev-python/pyjwt-1.7.1[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"