From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1597433-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 52EE715815E for <garchives@archives.gentoo.org>; Sun, 4 Feb 2024 20:11:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 426EBE2B29; Sun, 4 Feb 2024 20:11:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88D00E2B24 for <gentoo-commits@lists.gentoo.org>; Sun, 4 Feb 2024 20:11:16 +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 B4AD234319A for <gentoo-commits@lists.gentoo.org>; Sun, 4 Feb 2024 20:11:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F337714AB for <gentoo-commits@lists.gentoo.org>; Sun, 4 Feb 2024 20:11:13 +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: <1707077436.7480febe6f5367d2ae9daad03d64ae98f210c8fe.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/yamllint/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/yamllint/yamllint-1.33.0-r1.ebuild dev-util/yamllint/yamllint-1.33.0.ebuild X-VCS-Directories: dev-util/yamllint/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7480febe6f5367d2ae9daad03d64ae98f210c8fe X-VCS-Branch: master Date: Sun, 4 Feb 2024 20:11:13 +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: 6a95f607-4514-4692-aeb7-a636951d7104 X-Archives-Hash: f07f7ff81df44c9e88cebe58932efca4 commit: 7480febe6f5367d2ae9daad03d64ae98f210c8fe Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Sun Feb 4 06:19:41 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Feb 4 20:10:36 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7480febe dev-util/yamllint: remove never-correct dependency on setuptools This was erroneously introduced upstream in https://github.com/adrienverge/yamllint/pull/321 with the logic that the generated entrypoint script used pkg_resources to load the entrypoint. This was always heavily conditional on how you installed it, and has better distribution-wide approaches to handle it, and is anyways no longer the case since a while now (because the code that generated pkg_resources entrypoints has stopped doing so). Upstream also accidentally got rid of this dependency while migrating to pyproject.toml, indicating exactly how important it is. Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> .../yamllint/{yamllint-1.33.0.ebuild => yamllint-1.33.0-r1.ebuild} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-util/yamllint/yamllint-1.33.0.ebuild b/dev-util/yamllint/yamllint-1.33.0-r1.ebuild similarity index 76% rename from dev-util/yamllint/yamllint-1.33.0.ebuild rename to dev-util/yamllint/yamllint-1.33.0-r1.ebuild index b0c901c68fb6..04ad8f3bce38 100644 --- a/dev-util/yamllint/yamllint-1.33.0.ebuild +++ b/dev-util/yamllint/yamllint-1.33.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -15,8 +15,9 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" -RDEPEND=">=dev-python/pathspec-0.5.3[${PYTHON_USEDEP}] +RDEPEND=" + >=dev-python/pathspec-0.5.3[${PYTHON_USEDEP}] dev-python/pyyaml[${PYTHON_USEDEP}] - dev-python/setuptools[${PYTHON_USEDEP}]" +" distutils_enable_tests pytest