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 8231115811D for ; Wed, 28 Jun 2023 07:55:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B548CE0956; Wed, 28 Jun 2023 07:55:16 +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 98615E0956 for ; Wed, 28 Jun 2023 07:55:16 +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 A22EC335D06 for ; Wed, 28 Jun 2023 07:55:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B9D7136 for ; Wed, 28 Jun 2023 07:55:14 +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: <1687938902.c683b3348cc8e55b8305912ca64aaa4ee24a04c1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-cluster/corosync/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-cluster/corosync/corosync-3.1.0.ebuild X-VCS-Directories: sys-cluster/corosync/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c683b3348cc8e55b8305912ca64aaa4ee24a04c1 X-VCS-Branch: master Date: Wed, 28 Jun 2023 07:55:14 +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: 5662ae82-2eeb-4e58-a4d6-e28a018bd4a6 X-Archives-Hash: 041995d21145ee47be068349172ee82d commit: c683b3348cc8e55b8305912ca64aaa4ee24a04c1 Author: Sam James gentoo org> AuthorDate: Wed Jun 28 07:54:06 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 28 07:55:02 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c683b334 sys-cluster/corosync: add missing selinux policy dep Signed-off-by: Sam James gentoo.org> sys-cluster/corosync/corosync-3.1.0.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/sys-cluster/corosync/corosync-3.1.0.ebuild b/sys-cluster/corosync/corosync-3.1.0.ebuild index 9994b075c484..614f1d632a1e 100644 --- a/sys-cluster/corosync/corosync-3.1.0.ebuild +++ b/sys-cluster/corosync/corosync-3.1.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,9 +12,10 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-2 public-domain" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86" -IUSE="augeas dbus doc snmp systemd watchdog xml" +IUSE="augeas dbus doc selinux snmp systemd watchdog xml" -RDEPEND="dev-libs/nss +DEPEND=" + dev-libs/nss >=sys-cluster/libqb-2.0.0:= sys-cluster/kronosnet:= augeas? ( app-admin/augeas ) @@ -22,8 +23,11 @@ RDEPEND="dev-libs/nss snmp? ( net-analyzer/net-snmp ) systemd? ( sys-apps/systemd:= ) watchdog? ( sys-kernel/linux-headers ) - " -DEPEND="${RDEPEND}" +" +RDEPEND=" + ${DEPEND} + selinux? ( sec-policy/selinux-corosync ) +" BDEPEND="virtual/pkgconfig doc? ( sys-apps/groff )"