From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1399483-garchives=archives.gentoo.org@lists.gentoo.org>
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 8888C158090
	for <garchives@archives.gentoo.org>; Sun, 22 May 2022 02:13:21 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 77FF8E0833;
	Sun, 22 May 2022 02:13:20 +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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 57C1AE0833
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 May 2022 02:13:20 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 3A9EC341A56
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 May 2022 02:13:19 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id A822E44E
	for <gentoo-commits@lists.gentoo.org>; Sun, 22 May 2022 02:13:17 +0000 (UTC)
From: "Kenton Groombridge" <concord@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Kenton Groombridge" <concord@gentoo.org>
Message-ID: <1653185565.fdc158c894bcb59960c45420a17dfd622a3a1de3.concord@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/certbot/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-crypt/certbot/certbot-1.26.0.ebuild app-crypt/certbot/certbot-1.27.0.ebuild app-crypt/certbot/certbot-9999.ebuild
X-VCS-Directories: app-crypt/certbot/
X-VCS-Committer: concord
X-VCS-Committer-Name: Kenton Groombridge
X-VCS-Revision: fdc158c894bcb59960c45420a17dfd622a3a1de3
X-VCS-Branch: master
Date: Sun, 22 May 2022 02:13:17 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 893deeb5-9a20-46b7-b237-f5e1e6f494cd
X-Archives-Hash: 9ba7155f5da5a30fadb985f788fe0e80

commit:     fdc158c894bcb59960c45420a17dfd622a3a1de3
Author:     Kenton Groombridge <concord <AT> gentoo <DOT> org>
AuthorDate: Sun May 22 02:02:51 2022 +0000
Commit:     Kenton Groombridge <concord <AT> gentoo <DOT> org>
CommitDate: Sun May 22 02:12:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdc158c8

app-crypt/certbot: add selinux USE flag

Signed-off-by: Kenton Groombridge <concord <AT> gentoo.org>

 app-crypt/certbot/certbot-1.26.0.ebuild | 5 ++++-
 app-crypt/certbot/certbot-1.27.0.ebuild | 5 ++++-
 app-crypt/certbot/certbot-9999.ebuild   | 5 ++++-
 3 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/app-crypt/certbot/certbot-1.26.0.ebuild b/app-crypt/certbot/certbot-1.26.0.ebuild
index 2d3795642b7b..44b7e3889a5e 100644
--- a/app-crypt/certbot/certbot-1.26.0.ebuild
+++ b/app-crypt/certbot/certbot-1.26.0.ebuild
@@ -23,6 +23,8 @@ HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
 LICENSE="Apache-2.0"
 SLOT="0"
 
+IUSE="selinux"
+
 RDEPEND="
 	>=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
 	>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
@@ -34,6 +36,7 @@ RDEPEND="
 	dev-python/pyrfc3339[${PYTHON_USEDEP}]
 	>=dev-python/pytz-2019.3[${PYTHON_USEDEP}]
 	dev-python/zope-component[${PYTHON_USEDEP}]
-	dev-python/zope-interface[${PYTHON_USEDEP}]"
+	dev-python/zope-interface[${PYTHON_USEDEP}]
+	selinux? ( sec-policy/selinux-certbot )"
 
 distutils_enable_tests pytest

diff --git a/app-crypt/certbot/certbot-1.27.0.ebuild b/app-crypt/certbot/certbot-1.27.0.ebuild
index 0040de76755a..bad8bc65b32d 100644
--- a/app-crypt/certbot/certbot-1.27.0.ebuild
+++ b/app-crypt/certbot/certbot-1.27.0.ebuild
@@ -23,6 +23,8 @@ HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
 LICENSE="Apache-2.0"
 SLOT="0"
 
+IUSE="selinux"
+
 RDEPEND="
 	>=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
 	>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
@@ -34,6 +36,7 @@ RDEPEND="
 	dev-python/pyrfc3339[${PYTHON_USEDEP}]
 	>=dev-python/pytz-2019.3[${PYTHON_USEDEP}]
 	dev-python/zope-component[${PYTHON_USEDEP}]
-	dev-python/zope-interface[${PYTHON_USEDEP}]"
+	dev-python/zope-interface[${PYTHON_USEDEP}]
+	selinux? ( sec-policy/selinux-certbot )"
 
 distutils_enable_tests pytest

diff --git a/app-crypt/certbot/certbot-9999.ebuild b/app-crypt/certbot/certbot-9999.ebuild
index 0040de76755a..bad8bc65b32d 100644
--- a/app-crypt/certbot/certbot-9999.ebuild
+++ b/app-crypt/certbot/certbot-9999.ebuild
@@ -23,6 +23,8 @@ HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/"
 LICENSE="Apache-2.0"
 SLOT="0"
 
+IUSE="selinux"
+
 RDEPEND="
 	>=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
 	>=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
@@ -34,6 +36,7 @@ RDEPEND="
 	dev-python/pyrfc3339[${PYTHON_USEDEP}]
 	>=dev-python/pytz-2019.3[${PYTHON_USEDEP}]
 	dev-python/zope-component[${PYTHON_USEDEP}]
-	dev-python/zope-interface[${PYTHON_USEDEP}]"
+	dev-python/zope-interface[${PYTHON_USEDEP}]
+	selinux? ( sec-policy/selinux-certbot )"
 
 distutils_enable_tests pytest