Python Azure

This commit is contained in:
Gerben Jan Dijkman
2021-07-08 23:49:54 +02:00
parent fe9e6c94cf
commit 2fbf41d0ad
255 changed files with 3221 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST azure-appconfiguration-1.1.1.zip 77609 BLAKE2B e0d1e2d2bef7472059c44a8b7d14513171652e275b03abb9bd9caea64732d98813a9684715d9502bd08d0df040267600fc2b4d5339215d0c9d75cdfc3bfa2715 SHA512 d19b3ab02324de25fab2550bf414701b7388e2ff10dd05478c7e3fe71723e75955377cbaa18c0086acc2707f410723733c10f7e03ed4ff86dfc0600d1e9320c5
EBUILD azure-appconfiguration-1.1.1-r1.ebuild 677 BLAKE2B 7364f78a3eb0bf5c3b6cf26211cfe04d4e611082103e1aedb8261eaa179370f5f8b4d4169d3cc351cafa8450b190902229568d0345076b06b235d91288cdf002 SHA512 673b26722b6e29df35e1e784b68e87172b54fd18566f15ea353b6e18b3e925802e2a10de365c6996bc511be316bed1dcf687fb4912cc7dcbd9855c0ed4698755
MISC metadata.xml 426 BLAKE2B 2e90c3638f1ae4bdfbdb83e1a7b17aa3305bb9e66d98c6821fa61d32e3e491af7e79db6dbc4575d596d1d0c454c3232b74a6e4d8bc8630131a1d3b79be95076d SHA512 3f1020b89eb9118e81c0786f2bab214d32ea5b3e4ed8a9ad0491a08f5e523345869f02df455f1b4222d7937a8945147cfdbb0c454b12295cb4096165294d9325

View File

@@ -0,0 +1,26 @@
# 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 app configuration data library for Python"
HOMEPAGE="https://pypi.org/project/azure-appconfiguration"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="MIT"
SLOT="0"
IUSE="+async"
RDEPEND=">=dev-python/azure-core-1.8.2[${PYTHON_USEDEP}]
>=dev-python/msrest-0.6.18[${PYTHON_USEDEP}]
async? ( >=dev-python/aiohttp-3.0[${PYTHON_USEDEP}]
>=dev-python/aiodns-2.0[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"

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">azure-appconfiguration</remote-id>
</upstream>
<use>
<flag name="async">Install async support</flag>
</use>
</pkgmetadata>