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 D414B138351 for ; Sat, 28 Mar 2020 11:08:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BEB83E0DED; Sat, 28 Mar 2020 11:08:02 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9F666E0DED for ; Sat, 28 Mar 2020 11:08:02 +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 6BD0A34F9DE for ; Sat, 28 Mar 2020 11:08:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D993199 for ; Sat, 28 Mar 2020 11:08:00 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1585333438.412e5f58ecf8a342cea79ede059c71ac502054ae.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/tekore/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/tekore/tekore-1.5.0.ebuild X-VCS-Directories: dev-python/tekore/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 412e5f58ecf8a342cea79ede059c71ac502054ae X-VCS-Branch: master Date: Sat, 28 Mar 2020 11:08:00 +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: cc220cf4-f7ae-4732-8686-e4daf95b2a49 X-Archives-Hash: 77dd9caf3b06d204594324e08bda9175 commit: 412e5f58ecf8a342cea79ede059c71ac502054ae Author: Alessandro Barbieri gmail com> AuthorDate: Fri Mar 27 18:23:58 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Fri Mar 27 18:23:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=412e5f58 dev-python/tekore: fixes * re-keyword for py3.7 when deps are available again Package-Manager: Portage-2.3.96, Repoman-2.3.21 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/tekore/tekore-1.5.0.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-python/tekore/tekore-1.5.0.ebuild b/dev-python/tekore/tekore-1.5.0.ebuild index a61bf2a..53e4cb7 100644 --- a/dev-python/tekore/tekore-1.5.0.ebuild +++ b/dev-python/tekore/tekore-1.5.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 @@ -17,19 +17,21 @@ KEYWORDS="~amd64 ~x86" SLOT="0" # tests fail with py3_6 -RESTRICT="python_targets_python3_6? ( test )" +RESTRICT="test" RDEPEND=" dev-python/requests[${PYTHON_USEDEP}] ~dev-python/httpx-0.11.1[${PYTHON_USEDEP}] media-sound/spotify - python_targets_python3_6? ( dev-python/dataclasses[python_targets_python3_6] )" + $(python_gen_cond_dep 'dev-python/dataclasses[${PYTHON_USEDEP}]' python3_6) +" DOCS="readme.rst" distutils_enable_tests pytest distutils_enable_sphinx docs/src dev-python/sphinx_rtd_theme dev-python/sphinx-autodoc-typehints +#is this necessary? python_test() { pytest -vv tests/* || die "Tests fail with ${EPYTHON}" }