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-datalake-store-0.5.0.zip 101342 BLAKE2B b2d2d57f01310f7aeac6d9d5abd049258c90b790a344a0f4111049ee552f06f5088acda4a39548557a8a42ae37e865de08a5ea8a34204ec347ee4b96097c554c SHA512 a7c8d1c31c86bae51d7ed83229b656b9983d6d6dab2997ea1e659917d0d7a34d888debbbb1f5e50cb7ed56f6eda21a48fa7ea79d453ee2d88cf4899c96179194
EBUILD azure-mgmt-datalake-store-0.5.0-r3.ebuild 988 BLAKE2B 6fa921cc3bfe14fc8d0b727c47348d17e1e3ff9baaa1430c9b7cf08d03a03da7e370fcca0d7972d0be2c4fb1bc46cd247ec5abd678cb1dee5f0b8c273cd65b0a SHA512 c6277ca204a19594f48366c9a1f61139afb5ee9c0117ac0e964b2f67146010e5c5ef67cdcedf16a8e1bee61d9ceadbf28dbf1edc83184117e6751a284d8c17bf
MISC metadata.xml 360 BLAKE2B c349ef772058e5b25259558e4a0b8268014e18c0e412272a6848275834aceab8cf2241ac73421ef49eb4d3d9cc0956ebc72ca669e64ff8446ca603469ef96a18 SHA512 081532b3fec406a40db198fc812d599ffd0083afd6607b8b9991a459a35eb88e878c7b50cf4c996e47d7e056c2cfedf9879cafa2988a2d1d9cfbac3392f72835

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