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 E105E138334 for ; Wed, 20 Jun 2018 08:12:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8111E092C; Wed, 20 Jun 2018 08:12:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 AD9B1E092C for ; Wed, 20 Jun 2018 08:12:19 +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 A58FF335C9E for ; Wed, 20 Jun 2018 08:12:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DDCE2E5 for ; Wed, 20 Jun 2018 08:12:15 +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: <1529482327.8fda0a70c015ef799c81167d9e26b0c70733a7d0.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/prefix/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/prefix/make.defaults X-VCS-Directories: profiles/prefix/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 8fda0a70c015ef799c81167d9e26b0c70733a7d0 X-VCS-Branch: master Date: Wed, 20 Jun 2018 08:12:15 +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: 8607df4c-9ae3-4018-b710-5d4cac69eca6 X-Archives-Hash: df727a9259a85e5e79b64d8dbb9ec861 commit: 8fda0a70c015ef799c81167d9e26b0c70733a7d0 Author: Fabian Groffen gentoo org> AuthorDate: Wed Jun 20 08:06:28 2018 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Jun 20 08:12:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fda0a70 profiles/prefix/make.defaults: drop FEATURES=collision-protect After many years, we finally came to the conclusion we don't need this any more, and can do with protect-owned (the default) very well. Most prominent reason for this is that Gentoo for Mac OS X has been superseeded by Gentoo Prefix for macOS, which no longer tries to install binaries side by side with the host provided utilities. E.g. it is no longer the case that files encountered as a conflict can be something that is provided by the host system (and hence should not be nuked). In Gentoo Prefix we assume that $EPREFIX is solely managed by the PM, so anything it finds there which it doesn't know about can be safely overwritten. Users that actually use EPREFIX=/ on their systems can set FEATURES=collision-protect in their local make.conf. Bug: https://bugs.gentoo.org/655414 profiles/prefix/make.defaults | 2 -- 1 file changed, 2 deletions(-) diff --git a/profiles/prefix/make.defaults b/profiles/prefix/make.defaults index b3da563c4e2..bf8aae2ea85 100644 --- a/profiles/prefix/make.defaults +++ b/profiles/prefix/make.defaults @@ -8,8 +8,6 @@ # ssl: encrypted connections are a nice feature USE="readline zlib ncurses ssl" -FEATURES="collision-protect" - # Python 3.6 is unmasked for us, build stuff by default with latest to # avoid unnecessary builds PYTHON_TARGETS="python2_7 python3_6"