From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1477104-garchives=archives.gentoo.org@lists.gentoo.org> 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 7ED5C15800F for <garchives@archives.gentoo.org>; Sat, 14 Jan 2023 04:57:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBB89E0858; Sat, 14 Jan 2023 04:57:15 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2A0FE0858 for <gentoo-commits@lists.gentoo.org>; Sat, 14 Jan 2023 04:57:15 +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 CB98F340E63 for <gentoo-commits@lists.gentoo.org>; Sat, 14 Jan 2023 04:57:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49C6A884 for <gentoo-commits@lists.gentoo.org>; Sat, 14 Jan 2023 04:57:11 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> 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" <mgorny@gentoo.org> Message-ID: <1673672227.ea3d6a426d1830ecfcd33e0954950db9c78dd4a3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tavern/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tavern/tavern-2.0.0-r1.ebuild dev-python/tavern/tavern-2.0.0.ebuild X-VCS-Directories: dev-python/tavern/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ea3d6a426d1830ecfcd33e0954950db9c78dd4a3 X-VCS-Branch: master Date: Sat, 14 Jan 2023 04:57:11 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 638f7c20-61b8-4afb-84d3-aaa54d57a81c X-Archives-Hash: 385fd21a0b1883c70366605572df313c commit: ea3d6a426d1830ecfcd33e0954950db9c78dd4a3 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Sat Jan 14 04:35:25 2023 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Sat Jan 14 04:57:07 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3d6a42 dev-python/tavern: Unpin dependencies Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/tavern/{tavern-2.0.0.ebuild => tavern-2.0.0-r1.ebuild} | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dev-python/tavern/tavern-2.0.0.ebuild b/dev-python/tavern/tavern-2.0.0-r1.ebuild similarity index 85% rename from dev-python/tavern/tavern-2.0.0.ebuild rename to dev-python/tavern/tavern-2.0.0-r1.ebuild index aaa8b06af97a..76f95bcd211d 100644 --- a/dev-python/tavern/tavern-2.0.0.ebuild +++ b/dev-python/tavern/tavern-2.0.0-r1.ebuild @@ -43,3 +43,9 @@ BDEPEND=" " distutils_enable_tests pytest + +src_prepare() { + # strip unnecessary pins, upstream doesn't update them a lot + sed -i -E -e 's:,?<=?[0-9.]+::' -e 's:~=:>=:' pyproject.toml || die + distutils-r1_src_prepare +}