From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8F08139500 for ; Sun, 15 Aug 2021 21:38:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EC9DE0937; Sun, 15 Aug 2021 02:23:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 12DA1E0937 for ; Sun, 15 Aug 2021 02:23:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6B8D3437B5 for ; Sun, 15 Aug 2021 02:23:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F8EA86F for ; Sun, 15 Aug 2021 02:23:18 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1628994157.b92b7b925e14a42a3fcae4856a70c711d978cbb6.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zeep/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zeep/Manifest dev-python/zeep/zeep-4.0.0.ebuild X-VCS-Directories: dev-python/zeep/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: b92b7b925e14a42a3fcae4856a70c711d978cbb6 X-VCS-Branch: master Date: Sun, 15 Aug 2021 02:23:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fa6b95c7-2f7d-4486-a3e8-7a913f398d65 X-Archives-Hash: c7453fe90af7c9c73cbf51f069f8199e commit: b92b7b925e14a42a3fcae4856a70c711d978cbb6 Author: Louis Sautier gentoo org> AuthorDate: Sun Aug 15 00:58:58 2021 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Aug 15 02:22:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b92b7b92 dev-python/zeep: add 4.0.0, enable py3.10 and tests Also stop overriding DOCS which only contains standard file names. Signed-off-by: Louis Sautier gentoo.org> dev-python/zeep/Manifest | 1 + dev-python/zeep/zeep-4.0.0.ebuild | 51 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/dev-python/zeep/Manifest b/dev-python/zeep/Manifest index 0ba65e2d73c..1997ddc674c 100644 --- a/dev-python/zeep/Manifest +++ b/dev-python/zeep/Manifest @@ -1 +1,2 @@ DIST zeep-3.4.0.tar.gz 163748 BLAKE2B 52709b22bf3dbe228630fcaca33dbfb1f9bb2fd6fab9a2f3ad1cfdf92f84aa2a5b1b71dbd5d41eca3bc12a9ac022d27191929533578441ff020e574fe2b95cd8 SHA512 31adea141ffaabb122a2127bcbba2742ed15d4cef91907c8db4aefd8550b2259502a4122825cbfa62559fd5babd3d0c6ce2bf82dd3b79cd9026d8ca008897349 +DIST zeep-4.0.0.tar.gz 163646 BLAKE2B 84547f5ac5bfb42f6bfbe9879ae19466270e7699764a0f91b68d927d1776a040307ccc4f482dce93b765b8b3de191615d6a7b6a3fda38655c312c02a962fc954 SHA512 1ccc59d6ad1979f291cd89d0ac73d7bfc886501d7939c7e788b700454c571deffcc5a93c0e4fee7d6bbce4ad3cc2b309a95da57bcc4551ee5b37111e2fbc0acb diff --git a/dev-python/zeep/zeep-4.0.0.ebuild b/dev-python/zeep/zeep-4.0.0.ebuild new file mode 100644 index 00000000000..5b9cebfc0b4 --- /dev/null +++ b/dev-python/zeep/zeep-4.0.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="A modern/fast Python SOAP client based on lxml / requests" +HOMEPAGE="http://docs.python-zeep.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="async tornado" + +# TODO: remove six dependency when this is merged: +# https://github.com/mvantellingen/python-zeep/pull/1250 +RDEPEND=" + >=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-file-1.5.1[${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}] +