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 6B393158015 for ; Thu, 21 Dec 2023 15:24:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6F432BC01B; Thu, 21 Dec 2023 15:24:53 +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 82D4B2BC016 for ; Thu, 21 Dec 2023 15:24:53 +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 6D57B340BEF for ; Thu, 21 Dec 2023 15:24:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C25C123C for ; Thu, 21 Dec 2023 15:24:51 +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: <1703172286.f496dcf4185cc668031fe31a7511fd14b005469d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tekore/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tekore/tekore-5.2.1-r1.ebuild dev-python/tekore/tekore-5.2.1.ebuild X-VCS-Directories: dev-python/tekore/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: f496dcf4185cc668031fe31a7511fd14b005469d X-VCS-Branch: master Date: Thu, 21 Dec 2023 15:24:51 +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: f1ee21be-5549-4d25-bc5a-614b65eba638 X-Archives-Hash: ae4586db852cf111803e931e40837e50 commit: f496dcf4185cc668031fe31a7511fd14b005469d Author: Michał Górny gentoo org> AuthorDate: Thu Dec 21 15:19:41 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Dec 21 15:24:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f496dcf4 dev-python/tekore: Unpin dev-python/httpx Signed-off-by: Michał Górny gentoo.org> .../tekore/{tekore-5.2.1.ebuild => tekore-5.2.1-r1.ebuild} | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-python/tekore/tekore-5.2.1.ebuild b/dev-python/tekore/tekore-5.2.1-r1.ebuild similarity index 87% rename from dev-python/tekore/tekore-5.2.1.ebuild rename to dev-python/tekore/tekore-5.2.1-r1.ebuild index 19d6051b2c8f..6e7f60d52dae 100644 --- a/dev-python/tekore/tekore-5.2.1.ebuild +++ b/dev-python/tekore/tekore-5.2.1-r1.ebuild @@ -24,7 +24,7 @@ KEYWORDS="~amd64 ~arm64" SLOT="0" RDEPEND=" - =dev-python/pydantic-1.8[${PYTHON_USEDEP}] " @@ -49,3 +49,10 @@ EPYTEST_DESELECT=( # Internet tests/auth/expiring.py::TestCredentialsOnline::test_bad_arguments_raises_error ) + +src_prepare() { + # unpin dependencies + sed -i -e 's:,<[0-9.]*::' pyproject.toml || die + + distutils-r1_src_prepare +}