add zeep-3.4.0-r1

This commit is contained in:
Andreas Billmeier 2020-09-06 15:36:34 +02:00 committed by Andreas Billmeier
parent 8f5dbe8d4b
commit 55774b8ca0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 64 additions and 0 deletions

View File

@ -41,6 +41,7 @@
* add pytest-trio-0.6.0
* aioazurdevops fix deps
* bump ovoenergy-1.1.10
* add zeep-3.4.0-r1
2020-09-05
* repair iglo-1.2.7, drop iglo-1.2.5, abondoned anyway: https://github.com/jesserockz/python-iglo/issues/1#issuecomment-558479023

3
dev-python/zeep/Manifest Normal file
View File

@ -0,0 +1,3 @@
DIST zeep-3.4.0.tar.gz 163748 BLAKE2B 52709b22bf3dbe228630fcaca33dbfb1f9bb2fd6fab9a2f3ad1cfdf92f84aa2a5b1b71dbd5d41eca3bc12a9ac022d27191929533578441ff020e574fe2b95cd8 SHA512 31adea141ffaabb122a2127bcbba2742ed15d4cef91907c8db4aefd8550b2259502a4122825cbfa62559fd5babd3d0c6ce2bf82dd3b79cd9026d8ca008897349
EBUILD zeep-3.4.0-r1.ebuild 1362 BLAKE2B 68bab147d0936c3c2e0d6720cf623771a227aec428857d8ebc299812cfdd55ca5f9daf35193d7db3f7795d102d5ea09eb0dd7764813f1a24305b94ef489166f1 SHA512 fcb470f7d60ad8e2a5c1a94e6b2ff82f181dc219250d336bfd2568f09bb7e3b21147023695ec1592c3f723ff0b91419452048dbdc40807d92e600f117d271498
MISC metadata.xml 467 BLAKE2B 68713924f73cb992053adee7bb9253d69f12ca446462ebfcc4b2842c561e88400b284b954667b62f9e5e0f01bc2e20d17a942027ab748b1fe2e3885c68f58a93 SHA512 8da8eb241f5cffdf2f53dec34620ecf1b2b1f4e0c588e89d8255b893e3eba366987477b2b9436b50dfd30c07e75c3b8e8223f59c21c52cdf92529373e560921e

View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">zeep</remote-id>
<maintainer status="unknown">
<email>michaelvantellingen@gmail.com</email>
<name>Michael van Tellingen</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,45 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A modern/fast Python SOAP client based on lxml / requests"
HOMEPAGE="http://docs.python-zeep.org https://pypi.org/project/zeep/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="+async test tornado"
DOCS=( README.rst CHANGES )
RDEPEND="${DEPEND}
>=dev-python/appdirs-1.4.0[${PYTHON_USEDEP}]
>=dev-python/attrs-17.2.0[${PYTHON_USEDEP}]
>=dev-python/cached-property-1.3.0[${PYTHON_USEDEP}]
>=dev-python/defusedxml-0.4.1[${PYTHON_USEDEP}]
>=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
>=dev-python/lxml-3.1.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.7.0[${PYTHON_USEDEP}]
>=dev-python/requests-toolbelt-0.7.1[${PYTHON_USEDEP}]
>=dev-python/six-1.9.0[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
async? ( >=dev-python/aiohttp-1.0[${PYTHON_USEDEP}] )
tornado? ( >=www-servers/tornado-4.0.2[${PYTHON_USEDEP}]
<www-servers/tornado-5[${PYTHON_USEDEP}] )"
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}