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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 62D8715802F for ; Thu, 23 Feb 2023 18:19:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC1CDE079E; Thu, 23 Feb 2023 18:19: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 8F871E079E for ; Thu, 23 Feb 2023 18:19: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 8648B340C35 for ; Thu, 23 Feb 2023 18:19:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2CE975 for ; Thu, 23 Feb 2023 18:19:39 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1677176376.5ba631f7a98d0ce3e5c8d3c6c780c11c27cb1610.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/systemd-utils/systemd-utils-251.10-r1.ebuild sys-apps/systemd-utils/systemd-utils-252.6.ebuild X-VCS-Directories: sys-apps/systemd-utils/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 5ba631f7a98d0ce3e5c8d3c6c780c11c27cb1610 X-VCS-Branch: master Date: Thu, 23 Feb 2023 18:19:39 +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: f5d31896-807e-4ee0-a756-8670e15a41ca X-Archives-Hash: bdd55d780fadf44cd7a2bd6fcddcab3e commit: 5ba631f7a98d0ce3e5c8d3c6c780c11c27cb1610 Author: Mike Gilbert gentoo org> AuthorDate: Thu Feb 23 18:19:08 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Feb 23 18:19:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ba631f7 sys-apps/systemd-utils: move kernel config check behind udev USE flag Signed-off-by: Mike Gilbert gentoo.org> sys-apps/systemd-utils/systemd-utils-251.10-r1.ebuild | 2 +- sys-apps/systemd-utils/systemd-utils-252.6.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/systemd-utils/systemd-utils-251.10-r1.ebuild b/sys-apps/systemd-utils/systemd-utils-251.10-r1.ebuild index 6d94fe6ec771..2b52117a1fb0 100644 --- a/sys-apps/systemd-utils/systemd-utils-251.10-r1.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-251.10-r1.ebuild @@ -117,7 +117,7 @@ CONFIG_CHECK="~BLK_DEV_BSG ~DEVTMPFS ~!IDE ~INOTIFY_USER ~!SYSFS_DEPRECATED ~!SYSFS_DEPRECATED_V2 ~SIGNALFD ~EPOLL ~FHANDLE ~NET ~UNIX" pkg_setup() { - if [[ ${MERGE_TYPE} != buildonly ]]; then + if [[ ${MERGE_TYPE} != buildonly ]] && use udev; then linux-info_pkg_setup fi } diff --git a/sys-apps/systemd-utils/systemd-utils-252.6.ebuild b/sys-apps/systemd-utils/systemd-utils-252.6.ebuild index 85a489584485..35fbaaa92fd2 100644 --- a/sys-apps/systemd-utils/systemd-utils-252.6.ebuild +++ b/sys-apps/systemd-utils/systemd-utils-252.6.ebuild @@ -110,7 +110,7 @@ CONFIG_CHECK="~BLK_DEV_BSG ~DEVTMPFS ~!IDE ~INOTIFY_USER ~!SYSFS_DEPRECATED ~!SYSFS_DEPRECATED_V2 ~SIGNALFD ~EPOLL ~FHANDLE ~NET ~UNIX" pkg_setup() { - if [[ ${MERGE_TYPE} != buildonly ]]; then + if [[ ${MERGE_TYPE} != buildonly ]] && use udev; then linux-info_pkg_setup fi }