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 261D4158008 for ; Thu, 15 Jun 2023 02:07:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 670C7E08F2; Thu, 15 Jun 2023 02:07:27 +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 48EC9E08F2 for ; Thu, 15 Jun 2023 02:07:27 +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 56203340F65 for ; Thu, 15 Jun 2023 02:07:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E56CDA8D for ; Thu, 15 Jun 2023 02:07:24 +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: <1686794805.dd9f1217aada80b4e25327638e3f8ceacf666eb3.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/tmpfiles/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/tmpfiles/tmpfiles-0-r4.ebuild virtual/tmpfiles/tmpfiles-0-r5.ebuild X-VCS-Directories: virtual/tmpfiles/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: dd9f1217aada80b4e25327638e3f8ceacf666eb3 X-VCS-Branch: master Date: Thu, 15 Jun 2023 02:07:24 +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: 1cc7923c-b67c-4512-84b7-e43bc6788514 X-Archives-Hash: 1784009ea775e0cb6f2056a64905c5d3 commit: dd9f1217aada80b4e25327638e3f8ceacf666eb3 Author: Sam James gentoo org> AuthorDate: Thu Jun 15 02:06:17 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jun 15 02:06:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd9f1217 virtual/tmpfiles: add USE=systemd to help dependency resolution Portage sometimes struggles when moving between OpenRC <-> systemd and ends up wasting cycles. Give it a hint like we do in virtual/libudev. Signed-off-by: Sam James gentoo.org> .../tmpfiles/{tmpfiles-0-r4.ebuild => tmpfiles-0-r5.ebuild} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/virtual/tmpfiles/tmpfiles-0-r4.ebuild b/virtual/tmpfiles/tmpfiles-0-r5.ebuild similarity index 78% rename from virtual/tmpfiles/tmpfiles-0-r4.ebuild rename to virtual/tmpfiles/tmpfiles-0-r5.ebuild index ed8a8b1c5b01..2d31b47c699d 100644 --- a/virtual/tmpfiles/tmpfiles-0-r4.ebuild +++ b/virtual/tmpfiles/tmpfiles-0-r5.ebuild @@ -1,16 +1,16 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 DESCRIPTION="Virtual to select between different tmpfiles.d handlers" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="systemd" RDEPEND=" !prefix-guest? ( - || ( - sys-apps/systemd-utils[tmpfiles] - sys-apps/systemd - ) - )" + systemd? ( sys-apps/systemd ) + !systemd? ( sys-apps/systemd-utils[tmpfiles] ) + ) +"