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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D9C815802F for ; Wed, 29 Mar 2023 00:56:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 666EBE07B3; Wed, 29 Mar 2023 00:56:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4B5CCE07B3 for ; Wed, 29 Mar 2023 00:56:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 71810341338 for ; Wed, 29 Mar 2023 00:56:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F9F78E5 for ; Wed, 29 Mar 2023 00:56:48 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1680051382.4909e091bf283b113e54588aa568110ba8048ad7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/platformio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/platformio/platformio-6.1.6-r1.ebuild dev-embedded/platformio/platformio-6.1.6.ebuild X-VCS-Directories: dev-embedded/platformio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4909e091bf283b113e54588aa568110ba8048ad7 X-VCS-Branch: master Date: Wed, 29 Mar 2023 00:56:48 +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: 7e6c6364-19f2-4bb0-b352-2eb77de61278 X-Archives-Hash: 38fae2dd0e378a398223eb43e90c7940 commit: 4909e091bf283b113e54588aa568110ba8048ad7 Author: Sam James gentoo org> AuthorDate: Wed Mar 29 00:56:16 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Mar 29 00:56:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4909e091 dev-embedded/platformio: loosen starlette, uvicorn deps Tests pass. Closes: https://bugs.gentoo.org/888427 Signed-off-by: Sam James gentoo.org> ...tformio-6.1.6.ebuild => platformio-6.1.6-r1.ebuild} | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/dev-embedded/platformio/platformio-6.1.6.ebuild b/dev-embedded/platformio/platformio-6.1.6-r1.ebuild similarity index 89% rename from dev-embedded/platformio/platformio-6.1.6.ebuild rename to dev-embedded/platformio/platformio-6.1.6-r1.ebuild index 6c0dd8fa4f4b..27e962933b2c 100644 --- a/dev-embedded/platformio/platformio-6.1.6.ebuild +++ b/dev-embedded/platformio/platformio-6.1.6-r1.ebuild @@ -36,8 +36,8 @@ RDEPEND=" >=dev-python/pyelftools-0.27[${PYTHON_USEDEP}] =dev-python/starlette-0.21[${PYTHON_USEDEP}] + >=dev-python/uvicorn-0.19[${PYTHON_USEDEP}] dev-python/wsproto[${PYTHON_USEDEP}] ') virtual/udev" @@ -82,17 +82,21 @@ EPYTEST_DESELECT=( distutils_enable_tests pytest -src_prepare() { - # Allow newer versions of zeroconf, Bug #831181. - # Also wsproto. - # ... and semantic_version, bug #853247. +python_prepare_all() { + # Allow newer versions of: + # - zeroconf, bug #831181. + # - wsproto + # - semantic_version, bug #853247 + # - starlette & uvicorn, bug #888427 sed \ -e '/zeroconf/s/<[0-9.*]*//' \ -e '/wsproto/s/==.*/"/' \ -e '/semantic_version/s/==[0-9.*]*//' \ + -e '/starlette/s/==.*/"/' \ + -e '/uvicorn/s/==.*/"/' \ -i setup.py || die - default + distutils-r1_python_prepare_all } python_test() {