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 44204158009 for ; Wed, 28 Jun 2023 07:19:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A892E08F4; Wed, 28 Jun 2023 07:19:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 32C6EE08F4 for ; Wed, 28 Jun 2023 07:19:29 +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 7D2DB340FEA for ; Wed, 28 Jun 2023 07:19:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8FA4AC8 for ; Wed, 28 Jun 2023 07:19:25 +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: <1687936746.707932300fd70972fe5a2e97a3bb668f39b628a7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-servers/varnish/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-servers/varnish/varnish-7.1.2-r1.ebuild X-VCS-Directories: www-servers/varnish/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 707932300fd70972fe5a2e97a3bb668f39b628a7 X-VCS-Branch: master Date: Wed, 28 Jun 2023 07:19:25 +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: 246baf64-169a-4541-8149-ceae403e1421 X-Archives-Hash: 1f2bb9901232413ad069a30dbf0fbcad commit: 707932300fd70972fe5a2e97a3bb668f39b628a7 Author: Sam James gentoo org> AuthorDate: Wed Jun 28 07:18:01 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 28 07:19:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70793230 www-servers/varnish: add missing selinux policy dep Signed-off-by: Sam James gentoo.org> www-servers/varnish/varnish-7.1.2-r1.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/www-servers/varnish/varnish-7.1.2-r1.ebuild b/www-servers/varnish/varnish-7.1.2-r1.ebuild index b17b13fbf64a..a17456ffee76 100644 --- a/www-servers/varnish/varnish-7.1.2-r1.ebuild +++ b/www-servers/varnish/varnish-7.1.2-r1.ebuild @@ -14,7 +14,7 @@ SRC_URI="http://varnish-cache.org/_downloads/${P}.tgz" LICENSE="BSD-2 GPL-2" SLOT="0/2" KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv x86" -IUSE="jemalloc jit static-libs unwind" +IUSE="jemalloc jit selinux static-libs unwind" CDEPEND=" sys-libs/readline:= @@ -25,19 +25,21 @@ CDEPEND=" unwind? ( sys-libs/libunwind:= ) " -#varnish compiles stuff at run time +# varnish compiles stuff at run time RDEPEND=" ${PYTHON_DEPS} ${CDEPEND} acct-user/varnish acct-group/varnish - sys-devel/gcc" - + sys-devel/gcc + selinux? ( sec-policy/selinux-tgtd ) +" DEPEND=" ${CDEPEND} dev-python/docutils dev-python/sphinx - virtual/pkgconfig" + virtual/pkgconfig +" REQUIRED_USE="${PYTHON_REQUIRED_USE}"