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 D7E47158009 for ; Wed, 28 Jun 2023 07:37:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D287E0918; Wed, 28 Jun 2023 07:37:51 +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 E885CE090F for ; Wed, 28 Jun 2023 07:37:50 +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 C322E341001 for ; Wed, 28 Jun 2023 07:37:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4ED85ACE for ; Wed, 28 Jun 2023 07:37:47 +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: <1687937816.1a8708033fa6281befc9a407e1635b5730809210.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/freeradius/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/freeradius/freeradius-3.2.2.ebuild X-VCS-Directories: net-dialup/freeradius/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1a8708033fa6281befc9a407e1635b5730809210 X-VCS-Branch: master Date: Wed, 28 Jun 2023 07:37:47 +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: 8f951165-cf1e-4b77-850f-c6658131d915 X-Archives-Hash: 70e4dc1abab790d38833bba8bfebc84c commit: 1a8708033fa6281befc9a407e1635b5730809210 Author: Sam James gentoo org> AuthorDate: Wed Jun 28 07:24:59 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 28 07:36:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a870803 net-dialup/freeradius: add missing selinux policy dep Signed-off-by: Sam James gentoo.org> net-dialup/freeradius/freeradius-3.2.2.ebuild | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/net-dialup/freeradius/freeradius-3.2.2.ebuild b/net-dialup/freeradius/freeradius-3.2.2.ebuild index c42360c89bca..00ea3f5bc11d 100644 --- a/net-dialup/freeradius/freeradius-3.2.2.ebuild +++ b/net-dialup/freeradius/freeradius-3.2.2.ebuild @@ -22,7 +22,7 @@ KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~sparc x86" IUSE=" debug firebird iodbc kerberos ldap memcached mysql mongodb odbc oracle pam - postgres python readline redis samba sqlite ssl systemd + postgres python readline redis samba selinux sqlite ssl systemd " RESTRICT="firebird? ( bindist )" @@ -37,7 +37,8 @@ RESTRICT="firebird? ( bindist )" # TODO: unconditional json-c for now as automagic dep despite efforts to stop it # ditto libpcap. Can restore USE=rest, USE=pcap if/when fixed. -RDEPEND="acct-group/radius +DEPEND=" + acct-group/radius acct-user/radius !net-dialup/cistronradius dev-libs/libltdl @@ -67,8 +68,12 @@ RDEPEND="acct-group/radius samba? ( net-fs/samba ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-1.0.2:=[-bindist(-)] ) - systemd? ( sys-apps/systemd:= )" -DEPEND="${RDEPEND}" + systemd? ( sys-apps/systemd:= ) +" +RDEPEND=" + ${DEPEND} + selinux? ( sec-policy/selinux-radius ) +" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"