From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1647474-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 E93CB15802E for <garchives@archives.gentoo.org>; Fri, 28 Jun 2024 01:00:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A3BC2BC027; Fri, 28 Jun 2024 01:00:42 +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 1BCDD2BC027 for <gentoo-commits@lists.gentoo.org>; Fri, 28 Jun 2024 01:00:42 +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 2FCD034027D for <gentoo-commits@lists.gentoo.org>; Fri, 28 Jun 2024 01:00:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 637081D0D for <gentoo-commits@lists.gentoo.org>; Fri, 28 Jun 2024 01:00:39 +0000 (UTC) From: "Sam James" <sam@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, "Sam James" <sam@gentoo.org> Message-ID: <1719536384.15e9e9a9e7fc0b74a9dc3d386ebc402b876fba02.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/greenbone-feed-sync/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0-r1.ebuild net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0.ebuild X-VCS-Directories: net-analyzer/greenbone-feed-sync/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 15e9e9a9e7fc0b74a9dc3d386ebc402b876fba02 X-VCS-Branch: master Date: Fri, 28 Jun 2024 01:00:39 +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: 0a118bd9-7b30-43e3-bcfe-59e29007715f X-Archives-Hash: f83c38ddd5c535f18fc7f01231661874 commit: 15e9e9a9e7fc0b74a9dc3d386ebc402b876fba02 Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Fri Jun 28 00:26:25 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri Jun 28 00:59:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e9e9a9 net-analyzer/greenbone-feed-sync: fix mysterious overdependency on tomli Since the original implementation of config file parsing, which introduced a dependency on tomli, that dependency was conditional on python <3.11, and used the stdlib tomllib where possible: https://github.com/greenbone/greenbone-feed-sync/commit/25c50918e337c2bd77f277e6a946a46715656eec And similarly reflected in the commit that added it as a dependency: https://github.com/greenbone/greenbone-feed-sync/commit/e9d729030f1066c0bf9a273fc8d7b4397cd5dde0 Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> ...e-feed-sync-24.3.0.ebuild => greenbone-feed-sync-24.3.0-r1.ebuild} | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0.ebuild b/net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0-r1.ebuild similarity index 96% rename from net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0.ebuild rename to net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0-r1.ebuild index a29bec692a29..c5178e60a3c3 100644 --- a/net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0.ebuild +++ b/net-analyzer/greenbone-feed-sync/greenbone-feed-sync-24.3.0-r1.ebuild @@ -20,7 +20,9 @@ COMMON_DEPEND=" acct-user/gvm net-misc/rsync >=net-analyzer/gvmd-22.5.0 - >=dev-python/tomli-2.0.1[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + >dev-python/tomli-2.0.1[${PYTHON_USEDEP}] + ' 3.10) >=dev-python/rich-13.2.0[${PYTHON_USEDEP}] >=dev-python/shtab-1.7.0[${PYTHON_USEDEP}] "