From b4ddd602ddc2490321da6a510731b713d92da767 Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Mon, 24 Jun 2024 07:04:25 +0200 Subject: [PATCH] dev-python/msal-extensions: new package, add 1.2.0 Signed-off-by: Andreas Billmeier --- README.md | 4 +-- dev-python/msal-extensions/Manifest | 3 +++ dev-python/msal-extensions/metadata.xml | 12 +++++++++ .../msal-extensions-1.2.0.ebuild | 25 +++++++++++++++++++ 4 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 dev-python/msal-extensions/Manifest create mode 100644 dev-python/msal-extensions/metadata.xml create mode 100644 dev-python/msal-extensions/msal-extensions-1.2.0.ebuild diff --git a/README.md b/README.md index 13693c785..88d989829 100644 --- a/README.md +++ b/README.md @@ -606,11 +606,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1941 Ebuilds in total, 1930 of them have in total 1953 (42 different) licenses assigned. +There are 1942 Ebuilds in total, 1931 of them have in total 1954 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1115| +|MIT|1116| |Apache-2.0|435| |GPL-3|114| |BSD|110| diff --git a/dev-python/msal-extensions/Manifest b/dev-python/msal-extensions/Manifest new file mode 100644 index 000000000..a0d21caad --- /dev/null +++ b/dev-python/msal-extensions/Manifest @@ -0,0 +1,3 @@ +DIST msal_extensions-1.2.0.tar.gz 22391 BLAKE2B 2bd23c8da6baf040578c5c399a016dbee884799ce1cba175f7d968100ac70fc19437e5ee77ca18bfdf406c05aa7d36b123eef0f49187d7fd1006f3bc22aa295d SHA512 8a56049bfb0c8237fe81f6d39c3368bb1c79ee9fcb211382f8b407ba89cea4f9405a2a4e54ef7f817b2d59091a036440009c2c5858e44da5cf790c1a97fef17e +EBUILD msal-extensions-1.2.0.ebuild 806 BLAKE2B 46e2261d4361aade075fd0e459756c7fc52ae0266e897d8ba98560e5d0f2e0209292dec1f44b66f2a3913caac24fc4ae726314d91b654e45705b30d0fb03c8e3 SHA512 f9d7bb00cfeebda61e18cb0b231868e5ef80f0c92f9e2810434851929df031e2b8b3e53dbfb6d18cb0b1910b84e16cb04e03f473231ada1b17d73b8ac966d9c2 +MISC metadata.xml 430 BLAKE2B aeb42f3ab7a9ebee5f01d5061a4acb2db890030c8944d0a179dd620087c8e7ad9792b594beae42be941e4db6fd4a36f8d18b374939cb3bff8f263157ff8cf592 SHA512 c4df0d4f03e156f3d2689dd1116d45c7b8b802cd91c550d0812560392d75db00b80bf5f2494c5ce719c59330bf22f62055d1f4bbf244b629eccfec8d37da05c9 diff --git a/dev-python/msal-extensions/metadata.xml b/dev-python/msal-extensions/metadata.xml new file mode 100644 index 000000000..9e32d2443 --- /dev/null +++ b/dev-python/msal-extensions/metadata.xml @@ -0,0 +1,12 @@ + + + + + b@edevau.net + Andreas Billmeier + + + msal-extensions + AzureAD/microsoft-authentication-extensions-for-python + + diff --git a/dev-python/msal-extensions/msal-extensions-1.2.0.ebuild b/dev-python/msal-extensions/msal-extensions-1.2.0.ebuild new file mode 100644 index 000000000..80e3c9284 --- /dev/null +++ b/dev-python/msal-extensions/msal-extensions-1.2.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="Microsoft Authentication Library extensions (MSAL EX) provides a persistence API that can save your data on disk, encrypted on Windows, macOS and Linux. Concurrent data access will be coordinated by a file lock mechanism." +HOMEPAGE="https://github.com/AzureAD/microsoft-authentication-extensions-for-python/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/msal-1.29[${PYTHON_USEDEP}] + dev-python/portalocker[${PYTHON_USEDEP}] + dev-python/pygobject[${PYTHON_USEDEP}]" + +distutils_enable_tests pytest