Python Azure

This commit is contained in:
Gerben Jan Dijkman
2021-07-08 23:55:07 +02:00
parent eccf7e3e78
commit 83357f9877
59 changed files with 827 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST msrest-0.6.21.tar.gz 104436 BLAKE2B 9112f1cae5afb20feaa64ee65f3b6a78d81b521b8bb38eb73c62b62200dc31ee39ff8c377c111ff6c8c8692f9f64ca0f15c5964cb9f772ef1fcfe34e7564db52 SHA512 fbabee54633fc952f41582db51ca079e2517410efe055b7d2b209d5ef25192738aeb72ed6aefab0220fc395468966d0252724c28837dd2e83ada56e2eb0a5f3e
EBUILD msrest-0.6.21.ebuild 759 BLAKE2B 0e7e35746a25f661b354acce2e848bac8c1d320fdf1b6d03c77a06c4e6953fc515bac2ec681bf79147d4f51bc0771cb3f73f227f5e19eff87db9d2b5c6b2f902 SHA512 2bf4b85a9cb1faa6641df352dc523f47b3efe64686ac05a9a3a5d54d618fb5fc5fa18f73cc594d1d86b5bd22de255528af23a666ebef2bed958f05bd7d644125
MISC metadata.xml 410 BLAKE2B 21e45b6973ca6bf87cf068585da3b02c8aee4ac90066c8ca9c2a227fbf0f19428575830bf9dce2acb90a88507b28921f58b8878f030fe24f34ca2841731fa512 SHA512 97450bf5c5787742ec904b34e12ba814b00bdd259e485e399f1b4872f8f8efda1f8f40d1dc0f06e00192393a23d40695b37c45606f3a863460f847db8b18b541

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

View File

@@ -0,0 +1,28 @@
# 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="AutoRest swagger generator Python client runtime"
HOMEPAGE="https://pypi.org/project/msrest"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="MIT"
SLOT="0"
IUSE="+async"
RDEPEND=">=dev-python/certifi-2017.4.17[${PYTHON_USEDEP}]
>=dev-python/isodate-0.6.0[${PYTHON_USEDEP}]
>=dev-python/requests-oauthlib-1.2.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
async? ( >=dev-python/aiohttp-3.0[${PYTHON_USEDEP}]
dev-python/aiodns[${PYTHON_USEDEP}] )"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]"