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 02A56139694 for ; Fri, 16 Jun 2017 00:43:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E649021C210; Fri, 16 Jun 2017 00:43:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BC63821C210 for ; Fri, 16 Jun 2017 00:43:03 +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 7602234182B for ; Fri, 16 Jun 2017 00:43:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DFD877467 for ; Fri, 16 Jun 2017 00:43:00 +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: <1497573749.22aa595ef8ae004509ad23fe3a6b6baa0bfe92ec.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/autobahn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/autobahn/autobahn-0.16.0.ebuild dev-python/autobahn/autobahn-17.5.1.ebuild X-VCS-Directories: dev-python/autobahn/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 22aa595ef8ae004509ad23fe3a6b6baa0bfe92ec X-VCS-Branch: master Date: Fri, 16 Jun 2017 00:43:00 +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: 6df4e3bf-7834-4575-8167-706f7ac2d5fd X-Archives-Hash: ea3f30f7ce517c9dfcaa5d122256acf7 commit: 22aa595ef8ae004509ad23fe3a6b6baa0bfe92ec Author: Brian Dolbec gentoo org> AuthorDate: Fri Jun 16 00:38:17 2017 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Jun 16 00:42:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22aa595e dev-python/autobahn: Fix intermittent ACCESS VIOLATION A twisted/plugins/ addition was triggerring a twisted cache update. Causing: * ACCESS DENIED: open_wr: /usr/lib64/python3.6/site-packages/twisted/plugins/VAd-OChNHI-C28Rfdropin.cache.new Package-Manager: Portage-2.3.6_p2, Repoman-2.3.2_p70 dev-python/autobahn/autobahn-0.16.0.ebuild | 7 ++++++- dev-python/autobahn/autobahn-17.5.1.ebuild | 5 +++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/dev-python/autobahn/autobahn-0.16.0.ebuild b/dev-python/autobahn/autobahn-0.16.0.ebuild index 6daae09d86a..9cc6b9581ca 100644 --- a/dev-python/autobahn/autobahn-0.16.0.ebuild +++ b/dev-python/autobahn/autobahn-0.16.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -55,3 +55,8 @@ S="${WORKDIR}"/${MY_P} python_test() { esetup.py test } + +python_compile() { + addpredict "$(python_get_sitedir)" + distutils-r1_python_compile +} diff --git a/dev-python/autobahn/autobahn-17.5.1.ebuild b/dev-python/autobahn/autobahn-17.5.1.ebuild index 9c6160c2097..bd3ca434ee9 100644 --- a/dev-python/autobahn/autobahn-17.5.1.ebuild +++ b/dev-python/autobahn/autobahn-17.5.1.ebuild @@ -55,3 +55,8 @@ python_test() { cd "${BUILD_DIR}"/lib || die py.test -v || die } + +python_compile() { + addpredict "$(python_get_sitedir)" + distutils-r1_python_compile +}