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 8D3E3158020 for ; Sat, 26 Nov 2022 15:25:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92779E0907; Sat, 26 Nov 2022 15:25:52 +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 48295E0907 for ; Sat, 26 Nov 2022 15:25:52 +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 45F413414B8 for ; Sat, 26 Nov 2022 15:25:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81944756 for ; Sat, 26 Nov 2022 15:25:49 +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: <1669476346.adfa9a9f9add18a269f9cb5f5deb2e7cb7267ced.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/httpx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/httpx/httpx-0.23.1-r1.ebuild X-VCS-Directories: dev-python/httpx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: adfa9a9f9add18a269f9cb5f5deb2e7cb7267ced X-VCS-Branch: master Date: Sat, 26 Nov 2022 15:25:49 +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: e5b80b5f-1e17-4f58-bc2a-c6f395331804 X-Archives-Hash: d07d45966c0a14226994b01fa13d7c69 commit: adfa9a9f9add18a269f9cb5f5deb2e7cb7267ced Author: Michał Górny gentoo org> AuthorDate: Sat Nov 26 15:18:48 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 26 15:25:46 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adfa9a9f dev-python/httpx: Fix respecting USE=-cli Signed-off-by: Michał Górny gentoo.org> dev-python/httpx/httpx-0.23.1-r1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/httpx/httpx-0.23.1-r1.ebuild b/dev-python/httpx/httpx-0.23.1-r1.ebuild index 41214b718b03..94aea019b8e3 100644 --- a/dev-python/httpx/httpx-0.23.1-r1.ebuild +++ b/dev-python/httpx/httpx-0.23.1-r1.ebuild @@ -56,7 +56,7 @@ distutils_enable_tests pytest src_prepare() { if ! use cli; then - sed -i -e '/console_scripts/d' setup.py || die + sed -i -e '/^httpx =/d' pyproject.toml || die fi sed -i -e '/rfc3986/s:,<2::' pyproject.toml || die distutils-r1_src_prepare