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 EA990139694 for ; Fri, 16 Jun 2017 21:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 339A221C06A; Fri, 16 Jun 2017 21:50:22 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1332B21C06A for ; Fri, 16 Jun 2017 21:50:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 106223416FC for ; Fri, 16 Jun 2017 21:50:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71E87746C for ; Fri, 16 Jun 2017 21:50:19 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1497649810.9ae55c53f4606d6edb1caff8c03e425a9565738f.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/base/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/base/make.defaults X-VCS-Directories: profiles/base/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 9ae55c53f4606d6edb1caff8c03e425a9565738f X-VCS-Branch: master Date: Fri, 16 Jun 2017 21:50:19 +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: 3f45c2b6-a36d-4ae0-a155-e606aab193f1 X-Archives-Hash: 84025dc92c0ce6d8317b0ca8a06ce690 commit: 9ae55c53f4606d6edb1caff8c03e425a9565738f Author: Brian Dolbec gentoo org> AuthorDate: Fri Jun 16 19:16:21 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Jun 16 21:50:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ae55c53 profiles/base/make.defualts: Add TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE To prevent access violations for packages that install plugins to twisted. All pkgs should call /usr/bin/twisted-regen-cache in pkg_postinst() to regenrate the caches. profiles/base/make.defaults | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults index 28bf57c0e02..b090eab54c8 100644 --- a/profiles/base/make.defaults +++ b/profiles/base/make.defaults @@ -136,3 +136,8 @@ UNINSTALL_IGNORE="/lib/modules/* /var/run /var/lock" # Andreas K. Hüttel (23 Aug 2013) # Make emerge messages default to English as per Council decision LC_MESSAGES="C" + +# Brian Dolbec (16 Jun 2017) +# disable twisted's plugin cache update to prevent access violations +# call /usr/bin/twisted-regen-cache in pkg_postinst() +TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE="1"