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 6229115807A for ; Wed, 9 Oct 2024 06:31:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5ABB5E29E5; Wed, 9 Oct 2024 06:31:11 +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 3C2D8E29EA for ; Wed, 9 Oct 2024 06:31:11 +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 42850343209 for ; Wed, 9 Oct 2024 06:31:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F2D51B65 for ; Wed, 9 Oct 2024 06:31:07 +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: <1728455460.c49e4d5b927e26d6adbb26291a32c65257fa4dc2.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/openapi-schema-validator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2-r1.ebuild dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2.ebuild X-VCS-Directories: dev-python/openapi-schema-validator/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c49e4d5b927e26d6adbb26291a32c65257fa4dc2 X-VCS-Branch: master Date: Wed, 9 Oct 2024 06:31:07 +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: 5e2ba4f4-5d58-4f48-88e8-93434dde854c X-Archives-Hash: 4cd7487466cc36618b29c7da6cae5e56 commit: c49e4d5b927e26d6adbb26291a32c65257fa4dc2 Author: Michał Górny gentoo org> AuthorDate: Wed Oct 9 06:29:37 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Oct 9 06:31:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49e4d5b dev-python/openapi-schema-validator: Unpin dependencies Signed-off-by: Michał Górny gentoo.org> ...lidator-0.6.2.ebuild => openapi-schema-validator-0.6.2-r1.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2.ebuild b/dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2-r1.ebuild similarity index 87% rename from dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2.ebuild rename to dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2-r1.ebuild index 795cf335b7f0..09270377ce90 100644 --- a/dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2.ebuild +++ b/dev-python/openapi-schema-validator/openapi-schema-validator-0.6.2-r1.ebuild @@ -32,6 +32,9 @@ src_prepare() { "${FILESDIR}/${P}-test.patch" ) - sed -e '/--cov/d' -i pyproject.toml || die distutils-r1_src_prepare + + sed -i -e '/--cov/d' pyproject.toml || die + # unpin dependencies + sed -i -e 's:\^:>=:' pyproject.toml || die }