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-consumption-2.0.0.zip 56975 BLAKE2B c70f3ac45b7f004c7bba6b70c05d4f01db9420ba66f4bb4a45675aa574b06ec11d982bb5dbb4e0e9a7ce159e0f79dbb5f1a1487ecd34304a43f843d62d1b11d4 SHA512 57879641214bfb5faa347d23be6e8149cf676e487bc18b2d588abaa4f7d27b6b93d74d098e8ce45aa451de97a01c102b1a56dbd83c8fb21641d6cb9868bc5427
EBUILD azure-mgmt-consumption-2.0.0-r3.ebuild 981 BLAKE2B 8d4856c2bba305600b478acad5faf69c27f58421c21d8c9f43cf50a9ad4b23061675b9bb4236a88c737042d2d281ed37ec4c7a85e3de05f3136f124dc4efc30a SHA512 b61758cf64986b6eb84ad3b0828e2ea8f75758f327a9fa98fa85d8c0f949fc3f813f478eea6257a40bc4ba1c7436e54980f92c5e3192cdbd303544109cb6ac89
MISC metadata.xml 357 BLAKE2B 925760cd9239efec3fdf049728c3a8ddc29f30b2cba2b8e1e010a802643a1eaf9fba02cb275920ba77fde108ab6d435664a2d6f8301217261ba08e894ffcde28 SHA512 6ab22e1bd7c8e06ba8a834a8e79d6e30db57a46fdb8f9eb4b60406179e886e5ff2a7fede31ed4c39ba8545784b13f7896e3b893cbd6e66ac70187c471fc64a35

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 Consumption Management Client Library for Python"
HOMEPAGE="https://pypi.org/project/azure-mgmt-consumption"
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-consumption</remote-id>
</upstream>
</pkgmetadata>