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 25EDB158089 for ; Sat, 16 Sep 2023 09:27:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B2272BC018; Sat, 16 Sep 2023 09:27:33 +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 4DD772BC018 for ; Sat, 16 Sep 2023 09:27:33 +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 507D1335D2E for ; Sat, 16 Sep 2023 09:27:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A244B1178 for ; Sat, 16 Sep 2023 09:27:30 +0000 (UTC) From: "Sam James" 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" Message-ID: <1694856390.75fa022ed9151c28d701f06b357563699ccf29e0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Type-Tiny/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/Type-Tiny/Type-Tiny-2.4.0-r1.ebuild dev-perl/Type-Tiny/Type-Tiny-2.4.0.ebuild X-VCS-Directories: dev-perl/Type-Tiny/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 75fa022ed9151c28d701f06b357563699ccf29e0 X-VCS-Branch: master Date: Sat, 16 Sep 2023 09:27:30 +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: a67be6ff-5e9b-42b1-87e9-1bdf5ed0d2b0 X-Archives-Hash: 60a467be6096378c1553166836846d0b commit: 75fa022ed9151c28d701f06b357563699ccf29e0 Author: Sam James gentoo org> AuthorDate: Sat Sep 16 07:16:49 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Sep 16 09:26:30 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75fa022e dev-perl/Type-Tiny: use PDEPEND ``` * Error: circular dependencies: (dev-perl/Type-Tiny-XS-0.25.0:0/0::gentoo, ebuild scheduled for merge) depends on (dev-perl/Type-Tiny-2.4.0:0/0::gentoo, ebuild scheduled for merge) (buildtime) (dev-perl/Type-Tiny-XS-0.25.0:0/0::gentoo, ebuild scheduled for merge) (buildtime) It might be possible to break this cycle by applying any of the following changes: - dev-perl/Type-Tiny-2.4.0 (Change USE: +minimal) - dev-perl/Type-Tiny-XS-0.25.0 (Change USE: +minimal) ``` The RDEPEND="!minimal? ( dev-perl/Type-Tiny-XS )" dep is just a recommendation, so it's fine to satisfy it later on. Use PDEPEND instead. Signed-off-by: Sam James gentoo.org> .../Type-Tiny/{Type-Tiny-2.4.0.ebuild => Type-Tiny-2.4.0-r1.ebuild} | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-perl/Type-Tiny/Type-Tiny-2.4.0.ebuild b/dev-perl/Type-Tiny/Type-Tiny-2.4.0-r1.ebuild similarity index 97% rename from dev-perl/Type-Tiny/Type-Tiny-2.4.0.ebuild rename to dev-perl/Type-Tiny/Type-Tiny-2.4.0-r1.ebuild index e2d934c42c7b..5c7b7316f4bd 100644 --- a/dev-perl/Type-Tiny/Type-Tiny-2.4.0.ebuild +++ b/dev-perl/Type-Tiny/Type-Tiny-2.4.0-r1.ebuild @@ -28,6 +28,10 @@ RDEPEND=" >=dev-perl/Ref-Util-XS-0.100.0 >=dev-perl/Regexp-Util-0.3.0 virtual/perl-Scalar-List-Utils + ) +" +PDEPEND=" + !minimal? ( >=dev-perl/Type-Tiny-XS-0.25.0 ) "