Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/portage/
Date: Tue, 05 May 2020 17:13:25
Message-Id: 1588698958.df8b23f97740c1f87501b552af8081aba99b8956.zmedico@gentoo
1 commit: df8b23f97740c1f87501b552af8081aba99b8956
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 5 17:13:48 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue May 5 17:15:58 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df8b23f9
7
8 sys-apps/portage: Check for CONFIG_UTS_NS
9
10 Reported-by: Tomek L <tomek <AT> lutel.pl>
11 See: https://github.com/gentoo/portage/pull/539
12 Bug: https://bugs.gentoo.org/680456#c8
13 Package-Manager: Portage-2.3.99, Repoman-2.3.22
14 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
15
16 sys-apps/portage/portage-2.3.99-r2.ebuild | 2 +-
17 sys-apps/portage/portage-9999.ebuild | 2 +-
18 2 files changed, 2 insertions(+), 2 deletions(-)
19
20 diff --git a/sys-apps/portage/portage-2.3.99-r2.ebuild b/sys-apps/portage/portage-2.3.99-r2.ebuild
21 index a8d904ae372..91855cdabde 100644
22 --- a/sys-apps/portage/portage-2.3.99-r2.ebuild
23 +++ b/sys-apps/portage/portage-2.3.99-r2.ebuild
24 @@ -82,7 +82,7 @@ SRC_URI="mirror://gentoo/${PN}-${TARBALL_PV}.tar.bz2
25 https://github.com/gentoo/portage/commit/9738a404e876270cbdef2514f66915bce35d7435.patch -> portage-2.3.89-bug-718578.patch"
26
27 pkg_pretend() {
28 - local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS"
29 + local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS ~UTS_NS"
30
31 check_extra_config
32 }
33
34 diff --git a/sys-apps/portage/portage-9999.ebuild b/sys-apps/portage/portage-9999.ebuild
35 index 7c222c5a813..f581cb8ae97 100644
36 --- a/sys-apps/portage/portage-9999.ebuild
37 +++ b/sys-apps/portage/portage-9999.ebuild
38 @@ -78,7 +78,7 @@ EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/portage.git
39 https://github.com/gentoo/portage.git"
40
41 pkg_pretend() {
42 - local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS"
43 + local CONFIG_CHECK="~IPC_NS ~PID_NS ~NET_NS ~UTS_NS"
44
45 check_extra_config
46 }