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 41964158009 for ; Wed, 28 Jun 2023 07:50:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CBFBE0938; Wed, 28 Jun 2023 07:50:55 +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 50EF1E0938 for ; Wed, 28 Jun 2023 07:50:55 +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 9A77D340FFC for ; Wed, 28 Jun 2023 07:50:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23C7BACE for ; Wed, 28 Jun 2023 07:50:51 +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: <1687938609.31c2d1000602719f0ad4d1819c26b587baf14242.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/watchdog/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/watchdog/watchdog-5.16-r1.ebuild X-VCS-Directories: sys-apps/watchdog/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 31c2d1000602719f0ad4d1819c26b587baf14242 X-VCS-Branch: master Date: Wed, 28 Jun 2023 07:50:51 +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: 7e23772a-78d8-4772-9374-e7dfbe06287e X-Archives-Hash: 2fe6cbac872e046c5ce72b1a065902b9 commit: 31c2d1000602719f0ad4d1819c26b587baf14242 Author: Sam James gentoo org> AuthorDate: Wed Jun 28 07:39:33 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 28 07:50:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c2d100 sys-apps/watchdog: add missing selinux policy dep Signed-off-by: Sam James gentoo.org> sys-apps/watchdog/watchdog-5.16-r1.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sys-apps/watchdog/watchdog-5.16-r1.ebuild b/sys-apps/watchdog/watchdog-5.16-r1.ebuild index 2c909e19992d..8b95e45fda2a 100644 --- a/sys-apps/watchdog/watchdog-5.16-r1.ebuild +++ b/sys-apps/watchdog/watchdog-5.16-r1.ebuild @@ -12,10 +12,13 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86" -IUSE="nfs" +IUSE="nfs selinux" -RDEPEND="nfs? ( net-libs/libtirpc )" -DEPEND="${RDEPEND}" +DEPEND="nfs? ( net-libs/libtirpc )" +RDEPEND=" + ${DEPEND} + selinux? ( sec-policy/selinux-watchdog ) +" BDEPEND=" virtual/pkgconfig "