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 A5F8D13835A for ; Sun, 23 May 2021 13:41:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B8417E088D; Sun, 23 May 2021 13:41:19 +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 A00A0E088D for ; Sun, 23 May 2021 13:41:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 35332340DF5 for ; Sun, 23 May 2021 13:41:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BC5279C for ; Sun, 23 May 2021 13:41:15 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1621777269.df24bfcdae199a2fd8b3944754693137c0eb8b5e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/txAMQP/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/txAMQP/txAMQP-0.8.2.ebuild X-VCS-Directories: dev-python/txAMQP/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: df24bfcdae199a2fd8b3944754693137c0eb8b5e X-VCS-Branch: master Date: Sun, 23 May 2021 13:41:15 +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: 92c25193-4157-42c6-9c5b-74fe7a1bebee X-Archives-Hash: 4c6fae1f26d948c07ecad6eba7f50551 commit: df24bfcdae199a2fd8b3944754693137c0eb8b5e Author: Michał Górny gentoo org> AuthorDate: Sun May 23 13:28:04 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 23 13:41:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df24bfcd dev-python/txAMQP: Enable py3.9 Signed-off-by: Michał Górny gentoo.org> dev-python/txAMQP/txAMQP-0.8.2.ebuild | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/dev-python/txAMQP/txAMQP-0.8.2.ebuild b/dev-python/txAMQP/txAMQP-0.8.2.ebuild index a68485a6339..31f1d27c9d0 100644 --- a/dev-python/txAMQP/txAMQP-0.8.2.ebuild +++ b/dev-python/txAMQP/txAMQP-0.8.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7,8} ) +PYTHON_COMPAT=( python3_{7..9} ) PYTHON_REQ_USE="xml(+)" inherit distutils-r1 @@ -14,6 +14,7 @@ HOMEPAGE="https://github.com/txamqp/txamqp" # pypi tarball misses doc files # https://github.com/txamqp/txamqp/pull/10 SRC_URI="https://github.com/txamqp/txamqp/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" +S=${WORKDIR}/${MY_P} LICENSE="Apache-2.0" KEYWORDS="~amd64 ~x86 ~x64-solaris" @@ -24,14 +25,12 @@ RDEPEND=" dev-python/twisted[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}] " -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] +BDEPEND=" test? ( ${RDEPEND} net-misc/rabbitmq-server )" -S=${WORKDIR}/${MY_P} - # Tests connect to the system rabbitmq server # TODO: figure out how to start an isolated instance RESTRICT="test"