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 DDDE6138334 for ; Fri, 28 Dec 2018 18:23:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC552E07FE; Fri, 28 Dec 2018 18:23:48 +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 C358DE07FE for ; Fri, 28 Dec 2018 18:23:48 +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 A3EC5335C47 for ; Fri, 28 Dec 2018 18:23:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9391742F for ; Fri, 28 Dec 2018 18:23:43 +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: <1546021149.97e55f75067a87c7dfd46d1a139cbd4e01bc70b9.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.53-r1.ebuild sys-apps/portage/portage-2.3.53.ebuild X-VCS-Directories: sys-apps/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 97e55f75067a87c7dfd46d1a139cbd4e01bc70b9 X-VCS-Branch: master Date: Fri, 28 Dec 2018 18:23:43 +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: 3c5c9654-038a-4b36-a67e-05a59a9e526a X-Archives-Hash: 7c13b46300782b81a9c4a390667735a6 commit: 97e55f75067a87c7dfd46d1a139cbd4e01bc70b9 Author: Zac Medico gentoo org> AuthorDate: Fri Dec 28 18:18:34 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Dec 28 18:19:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e55f75 sys-apps/portage: 2.3.53-r1 revbump for bug 673900 Temporarily disable new FEATURES that require unshare, since they may not fail gracefully in some cases. Bug: https://bugs.gentoo.org/673900 Package-Manager: Portage-2.3.53, Repoman-2.3.12 Signed-off-by: Zac Medico gentoo.org> .../portage/{portage-2.3.53.ebuild => portage-2.3.53-r1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys-apps/portage/portage-2.3.53.ebuild b/sys-apps/portage/portage-2.3.53-r1.ebuild similarity index 97% rename from sys-apps/portage/portage-2.3.53.ebuild rename to sys-apps/portage/portage-2.3.53-r1.ebuild index da25940d204..749f0d8ed97 100644 --- a/sys-apps/portage/portage-2.3.53.ebuild +++ b/sys-apps/portage/portage-2.3.53-r1.ebuild @@ -95,6 +95,13 @@ pkg_setup() { python_prepare_all() { distutils-r1_python_prepare_all + # Bug 673900 - FEATURES that require unshare may fail + # ungracefully if unshare support is somehow broken. + sed -e 's: ipc-sandbox::' \ + -e 's:network-sandbox ::' \ + -e 's: pid-sandbox::' \ + -i cnf/make.globals || die + if use gentoo-dev; then einfo "Disabling --dynamic-deps by default for gentoo-dev..." sed -e 's:\("--dynamic-deps", \)\("y"\):\1"n":' \