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-analytics-0.2.1.zip 162935 BLAKE2B 58c4944a6112339c2fdde615f730d6390eb7cbd2879ff92b8cb87cfa45a16f26a04fdb9bde6030c5f4bfd5c52f80776162b028d3932bf831837d0c93c620cf8b SHA512 a8e1a047da2c8f5e8833435cd3d94be224d424f8fbdf6e01c77d28aed1ab54ccfaa5314f538baa00fce67fb7a7344a05633f221d4ec4ae109f7f8a411c1c7556
EBUILD azure-mgmt-datalake-analytics-0.2.1.ebuild 1134 BLAKE2B 189e331f56498365f230f388a351ad289954e174d42c4c265b1691633ee344b0ddc0aa7904f247d19e952c7c5c24fc72eb93fbe1c01d06eb9e310ac28ac689a0 SHA512 40ca784285ed737725d2c71b8cb9f1605d9e063714637423956015aa834f18224ad66d72bd2f7eccf004daec7ad087b33096acd06f3eb40c398a0563e9b0336d
MISC metadata.xml 364 BLAKE2B f9a8ab17a2b647e1dd4f085632c00698eed88a59cf93f4e2e6a9f1132e0a5c2b65fcd38d7375496159ade34e797d94b3c061e5acaf85ef63279276c3886a275d SHA512 c3c9aa319ed83179747044aed9b0660aed177fdb6d5c00d82dea2b6caf92985841409cb273a6623060b950a51702f5325462b824ecc78f2eaa22dc643584c2ee

View File

@@ -0,0 +1,38 @@
# 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 Analytics Management Client Library for Python"
HOMEPAGE="https://pypi.org/project/azure-mgmt-datalake-analytics"
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
rm "${ED}${PYTHON_SITEDIR}/azure/mgmt/datalake/__init__.py" || die
# Avoid portage file collisions
rm -r "${ED}${PYTHON_SITEDIR}/azure/__pycache__" || di
rm -r "${ED}${PYTHON_SITEDIR}/azure/mgmt/__pycache__" || die
rm -r "${ED}${PYTHON_SITEDIR}/azure/mgmt/datalake/__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-analytics</remote-id>
</upstream>
</pkgmetadata>