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 D2FE0158090 for ; Sun, 15 May 2022 11:10:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75FECE08DD; Sun, 15 May 2022 11:10:19 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5EB38E08DD for ; Sun, 15 May 2022 11:10:19 +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 6D466341BFB for ; Sun, 15 May 2022 11:10:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AF02466 for ; Sun, 15 May 2022 11:10:16 +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: <1652613013.1792d5e586f5733eda81e1a511dfb4a3a8acfd0e.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.22.0-r3.ebuild X-VCS-Directories: dev-python/httpx/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1792d5e586f5733eda81e1a511dfb4a3a8acfd0e X-VCS-Branch: master Date: Sun, 15 May 2022 11:10:16 +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: fcbb0631-bbfc-4d7f-b199-77109bda3f4d X-Archives-Hash: 31481083ee217f16c59dcd5d62076adb commit: 1792d5e586f5733eda81e1a511dfb4a3a8acfd0e Author: Michał Górny gentoo org> AuthorDate: Sun May 15 11:09:21 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 15 11:10:13 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1792d5e5 dev-python/httpx: Fix sed expression Signed-off-by: Michał Górny gentoo.org> dev-python/httpx/httpx-0.22.0-r3.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/httpx/httpx-0.22.0-r3.ebuild b/dev-python/httpx/httpx-0.22.0-r3.ebuild index 9575afbcd90f..f0f06597e614 100644 --- a/dev-python/httpx/httpx-0.22.0-r3.ebuild +++ b/dev-python/httpx/httpx-0.22.0-r3.ebuild @@ -54,7 +54,7 @@ distutils_enable_tests pytest src_prepare() { # unpin deps - sed -i -e 's:==[0-9.*]*::' -e 's:,<[0-9.]*::' setup.py || die + sed -i -e 's:==[0-9.*]\+::' -e 's:,<[0-9.]\+::' setup.py || die if ! use cli; then sed -i -e '/console_scripts/d' setup.py || die fi