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 8027215806E for ; Sat, 27 May 2023 13:03:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FC8EE07EF; Sat, 27 May 2023 13:03:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 81253E07EF for ; Sat, 27 May 2023 13:03:22 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4DEB33409A4 for ; Sat, 27 May 2023 13:03:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9BF1C990 for ; Sat, 27 May 2023 13:03:19 +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: <1685192588.19d05920ea8d2c712657e4dc8c1bf3c4c45112d0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/pkgcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/pkgcheck/pkgcheck-0.10.24.ebuild dev-util/pkgcheck/pkgcheck-9999.ebuild X-VCS-Directories: dev-util/pkgcheck/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 19d05920ea8d2c712657e4dc8c1bf3c4c45112d0 X-VCS-Branch: master Date: Sat, 27 May 2023 13:03:19 +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: 91346a2d-7b2b-40e4-913c-ed7e2efbc658 X-Archives-Hash: 371a932b56ea153fc01cba43eab59186 commit: 19d05920ea8d2c712657e4dc8c1bf3c4c45112d0 Author: Sam James gentoo org> AuthorDate: Sat May 27 13:02:53 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 27 13:03:08 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19d05920 dev-util/pkgcheck: fix typo Fixes: a0eece665f3c1c43e6bed799ead6190591296cfa Closes: https://bugs.gentoo.org/907248 Signed-off-by: Sam James gentoo.org> dev-util/pkgcheck/pkgcheck-0.10.24.ebuild | 2 +- dev-util/pkgcheck/pkgcheck-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/pkgcheck/pkgcheck-0.10.24.ebuild b/dev-util/pkgcheck/pkgcheck-0.10.24.ebuild index 2a3ddbf5026a..2f2baf83328c 100644 --- a/dev-util/pkgcheck/pkgcheck-0.10.24.ebuild +++ b/dev-util/pkgcheck/pkgcheck-0.10.24.ebuild @@ -74,7 +74,7 @@ src_compile() { } python_test() { - if ! has_version -b "dev-python/requests[${PYTHON_USEDEP}" ; then + if ! has_version -b "dev-python/requests[${PYTHON_USEDEP}]" ; then EPYTEST_DESELECT=( tests/checks/test_all.py::TestNetworkCheck::test_network_enabled ) diff --git a/dev-util/pkgcheck/pkgcheck-9999.ebuild b/dev-util/pkgcheck/pkgcheck-9999.ebuild index 223c78696997..25fe3d8378ba 100644 --- a/dev-util/pkgcheck/pkgcheck-9999.ebuild +++ b/dev-util/pkgcheck/pkgcheck-9999.ebuild @@ -74,7 +74,7 @@ src_compile() { } python_test() { - if ! has_version -b "dev-python/requests[${PYTHON_USEDEP}" ; then + if ! has_version -b "dev-python/requests[${PYTHON_USEDEP}]" ; then EPYTEST_DESELECT=( tests/checks/test_all.py::TestNetworkCheck::test_network_enabled )