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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E14BC138350 for ; Tue, 5 May 2020 17:13:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F3C9E0ADA; Tue, 5 May 2020 17:13:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02CAEE0ADA for ; Tue, 5 May 2020 17:13:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AAAFC34F622 for ; Tue, 5 May 2020 17:13:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83AA01D6 for ; Tue, 5 May 2020 17:13:21 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1588698958.df8b23f97740c1f87501b552af8081aba99b8956.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/portage/portage-2.3.99-r2.ebuild sys-apps/portage/portage-9999.ebuild X-VCS-Directories: sys-apps/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: df8b23f97740c1f87501b552af8081aba99b8956 X-VCS-Branch: master Date: Tue, 5 May 2020 17:13:21 +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: 9703b629-cea6-40f7-945e-3dcf690030f9 X-Archives-Hash: 0f20db50146c39dad2498456882e1bdd commit: df8b23f97740c1f87501b552af8081aba99b8956 Author: Zac Medico gentoo org> AuthorDate: Tue May 5 17:13:48 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue May 5 17:15:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8b23f9 sys-apps/portage: Check for CONFIG_UTS_NS Reported-by: Tomek L lutel.pl> See: https://github.com/gentoo/portage/pull/539 Bug: https://bugs.gentoo.org/680456#c8 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Zac Medico gentoo.org> sys-apps/portage/portage-2.3.99-r2.ebuild | 2 +- sys-apps/portage/portage-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/portage/portage-2.3.99-r2.ebuild b/sys-apps/portage/portage-2.3.99-r2.ebuild index a8d904ae372..91855cdabde 100644 --- a/sys-apps/portage/portage-2.3.99-r2.ebuild +++ b/sys-apps/portage/portage-2.3.99-r2.ebuild @@ -82,7 +82,7 @@ SRC_URI="mirror://gentoo/${PN}-${TARBALL_PV}.tar.bz2 https://github.com/gentoo/portage/commit/9738a404e876270cbdef2514f66915bce35d7435.patch -> portage-2.3.89-bug-718578.patch" pkg_pretend() { - local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS" + local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS ~UTS_NS" check_extra_config } diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild index 7c222c5a813..f581cb8ae97 100644 --- a/sys-apps/portage/portage-9999.ebuild +++ b/sys-apps/portage/portage-9999.ebuild @@ -78,7 +78,7 @@ EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git https://github.com/gentoo/portage.git" pkg_pretend() { - local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS" + local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS ~UTS_NS" check_extra_config }