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-mgmt-iothubprovisioningservices-0.2.0.zip 71353 BLAKE2B b22fd3bb86db2842648c3e129a26f44b219c07a74819fb553101c61acd8b5af0787827f2a32808c7a8fb0cf8de4f80118be5aa7fdbe2afd890bee4472e0a0c15 SHA512 1fae999c1b7d31bd0687d7a7560ef7a5d0a00c8ef0830f058e4a3bf0195f08a49bfdbcf5be798cbd975201b48d8278fd076ebb7f15c457f3c563bdc48ba3bacf
EBUILD azure-mgmt-iothubprovisioningservices-0.2.0-r3.ebuild 1002 BLAKE2B 7553508b37e37d7d14ab1aeb22e92b401b2b867072f80dc9356f843da084f320e36b4148f9b6ff4513170e8bf0cdaecc7c540e67c902d7b1558228de1756fa64 SHA512 2e85aa69c73553cbc571bee222e2526c1059b6b3288f3985029c7703ac65a21390dc5912efb0bcf9c43244c478c3e3b20bcde1a3413731b1bbc04adc256dc6fe
MISC metadata.xml 372 BLAKE2B 1709b2b48c0aed4d4647b776edd8a076d46d197da7d25433900962101a7f3417744a776cf7e5b05f049c11e71470f6ff2348055e57bccb9fee28b34fde1758f3 SHA512 278ac8d76f51cad8dd5a4b63b8d0158ba74d781341b1e63c8c65479b55d651e6d23c218e6e419d5df4f43d3fc1fe36df522891e62e771bf908f5112dce06e4ad

View File

@@ -0,0 +1,36 @@
# 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 Azure IoTHub Provisioning Services Client Library for Python"
HOMEPAGE="https://pypi.org/project/azure-mgmt-iothubprovisioningservices"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="MIT"
SLOT="0"
RDEPEND=">=dev-python/msrestazure-0.6.4[${PYTHON_USEDEP}]
>=dev-python/azure-common-1.1.27[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"
python_install() {
distutils-r1_python_install
python_export PYTHON_SITEDIR
# __init__.py are provided by net-misc/azure-cli
rm "${ED}${PYTHON_SITEDIR}/azure/__init__.py" || die
rm "${ED}${PYTHON_SITEDIR}/azure/mgmt/__init__.py" || die
# Avoid portage file collisions
rm -r "${ED}${PYTHON_SITEDIR}/azure/__pycache__" || die
rm -r "${ED}${PYTHON_SITEDIR}/azure/mgmt/__pycache__" || die
}

View File

@@ -0,0 +1,11 @@
<?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-mgmt-iothubprovisioningservices</remote-id>
</upstream>
</pkgmetadata>