From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [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 BDD1015802E for ; Tue, 25 Jun 2024 16:39:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 049C3E2B1E; Tue, 25 Jun 2024 16:39:11 +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 DA52DE2B1E for ; Tue, 25 Jun 2024 16:39:10 +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 F3595335C96 for ; Tue, 25 Jun 2024 16:39:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8EAFD1A36 for ; Tue, 25 Jun 2024 16:39:08 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1719333540.b094f09255786e53848867842701cbd13ccd4287.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/openrc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/openrc/openrc-0.54.ebuild X-VCS-Directories: sys-apps/openrc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: b094f09255786e53848867842701cbd13ccd4287 X-VCS-Branch: master Date: Tue, 25 Jun 2024 16:39:08 +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: ac7171ae-c379-41ce-8bec-0a4f13febfbe X-Archives-Hash: 9b8a39ab4eba950ff63655f740b47533 commit: b094f09255786e53848867842701cbd13ccd4287 Author: William Hubbs gentoo org> AuthorDate: Tue Jun 25 16:33:02 2024 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Jun 25 16:39:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b094f092 sys-apps/openrc: add caps use flag Use the caps use flag to control the capabilities feature. Closes: https://bugs.gentoo.org/932090 Signed-off-by: William Hubbs gentoo.org> sys-apps/openrc/openrc-0.54.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-apps/openrc/openrc-0.54.ebuild b/sys-apps/openrc/openrc-0.54.ebuild index ed8424d562b7..e40c480c62b5 100644 --- a/sys-apps/openrc/openrc-0.54.ebuild +++ b/sys-apps/openrc/openrc-0.54.ebuild @@ -18,11 +18,12 @@ fi LICENSE="BSD-2" SLOT="0" -IUSE="audit bash debug pam newnet +netifrc selinux s6 +sysvinit sysv-utils unicode" +IUSE="audit bash caps debug pam newnet +netifrc selinux s6 +sysvinit sysv-utils unicode" COMMON_DEPEND=" pam? ( sys-libs/pam ) audit? ( sys-process/audit ) + caps? ( sys-libs/libcap ) sys-process/psmisc selinux? ( sys-apps/policycoreutils @@ -53,6 +54,7 @@ src_configure() { local emesonargs=( $(meson_feature audit) "-Dbranding=\"Gentoo Linux\"" + $(meson_features caps capabilities) $(meson_use newnet) -Dos=Linux $(meson_use pam)