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 97F2D158003 for ; Thu, 6 Oct 2022 19:59:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88A49E0930; Thu, 6 Oct 2022 19:59:53 +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 6C7A2E0930 for ; Thu, 6 Oct 2022 19:59:53 +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 D2B4C335DE9 for ; Thu, 6 Oct 2022 19:59:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3405D523 for ; Thu, 6 Oct 2022 19:59:50 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1665086371.98f33c7e1471a5fc0cf80c633ff442222d851aa0.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/targets/systemd/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/targets/systemd/make.defaults X-VCS-Directories: profiles/targets/systemd/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 98f33c7e1471a5fc0cf80c633ff442222d851aa0 X-VCS-Branch: master Date: Thu, 6 Oct 2022 19:59:50 +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: f97fe230-1632-45a1-9eb6-f84db4467542 X-Archives-Hash: cc09ead063b97457967f79a4041e5b6b commit: 98f33c7e1471a5fc0cf80c633ff442222d851aa0 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed Oct 5 17:26:03 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu Oct 6 19:59:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f33c7e profiles/targets/systemd: add sysv-utils to BOOTSTRAP_USE catalyst, bootstrap.sh and BOOTSTRAP_USE all set USE=-* at various stages of builds. This results in systemd build with -sysv-utils and pulls sys-apps/sysvinit as a dependency in stage1/stage2 builds. Closes: https://github.com/gentoo/gentoo/pull/27644 Suggested-by: Mike Gilbert gentoo.org> Signed-off-by: Georgy Yakovlev gentoo.org> profiles/targets/systemd/make.defaults | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/targets/systemd/make.defaults b/profiles/targets/systemd/make.defaults index 8bc064858b21..5db64cfb8cc4 100644 --- a/profiles/targets/systemd/make.defaults +++ b/profiles/targets/systemd/make.defaults @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 USE="systemd udev" -BOOTSTRAP_USE="${BOOTSTRAP_USE} systemd udev" +BOOTSTRAP_USE="${BOOTSTRAP_USE} systemd sysv-utils udev"