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 074CA139083 for ; Tue, 12 Dec 2017 08:13:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51B32E0F6A; Tue, 12 Dec 2017 08:13:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2043DE0F6A for ; Tue, 12 Dec 2017 08:13: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 B780C33BF0B for ; Tue, 12 Dec 2017 08:13:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD6E1AE66 for ; Tue, 12 Dec 2017 08:13:45 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1513066356.6b13996ffd2f9aee9bf924a304a4a4073ad84421.grobian@gentoo> Subject: [gentoo-commits] proj/portage:prefix commit in: pym/portage/ X-VCS-Repository: proj/portage X-VCS-Files: pym/portage/const.py X-VCS-Directories: pym/portage/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 6b13996ffd2f9aee9bf924a304a4a4073ad84421 X-VCS-Branch: prefix Date: Tue, 12 Dec 2017 08:13:45 +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-Archives-Salt: 9be09edc-4d45-466e-b97e-318aa1a4b3a9 X-Archives-Hash: b65b0b7fd2fd67e81becff5ee4a21623 commit: 6b13996ffd2f9aee9bf924a304a4a4073ad84421 Author: Michael Weiser gmx de> AuthorDate: Fri Dec 8 10:00:47 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Dec 12 08:12:36 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=6b13996f Fix macOS 10.13 seatbelt sandbox suid bit setting macOS 10.13 changed the defaults for what is allowed in a seatbelt sandbox, denying setting suid and sgid bits on files. See https://trac.macports.org/ticket/54963 for additional information. Signed-off-by: Fabian Groffen gentoo.org> pym/portage/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/portage/const.py b/pym/portage/const.py index 172c5b189..bdb287379 100644 --- a/pym/portage/const.py +++ b/pym/portage/const.py @@ -83,7 +83,7 @@ MACOSSANDBOX_BINARY = "/usr/bin/sandbox-exec" MACOSSANDBOX_PROFILE = '''(version 1) (allow default) (deny file-write*) -(allow file-write* +(allow file-write* file-write-setugid @@MACOSSANDBOX_PATHS@@) (allow file-write-data @@MACOSSANDBOX_PATHS_CONTENT_ONLY@@)'''