From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C6B601384B4 for ; Wed, 9 Dec 2015 20:42:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA57021C0CF; Wed, 9 Dec 2015 20:42:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32C3221C074 for ; Wed, 9 Dec 2015 20:42:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1A811340860 for ; Wed, 9 Dec 2015 20:42:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F0B5F2C for ; Wed, 9 Dec 2015 20:42:05 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1449693676.d7c8024fd8e92d7424b0843558fc27efc71da43a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/python-single-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d7c8024fd8e92d7424b0843558fc27efc71da43a X-VCS-Branch: master Date: Wed, 9 Dec 2015 20:42:05 +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: 161405b0-0fbb-4a65-bde8-50094dfa6aa8 X-Archives-Hash: b4c21908ff758a3b317f50ba3bc0b4d8 commit: d7c8024fd8e92d7424b0843558fc27efc71da43a Author: Michał Górny gentoo org> AuthorDate: Sun Dec 6 15:55:24 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Dec 9 20:41:16 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7c8024f python-single-r1.eclass: Mark eclass-generated variables read-only eclass/python-single-r1.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/python-single-r1.eclass b/eclass/python-single-r1.eclass index 8021501..1582295 100644 --- a/eclass/python-single-r1.eclass +++ b/eclass/python-single-r1.eclass @@ -238,7 +238,7 @@ _python_single_set_globals() { PYTHON_DEPS+="python_single_target_${i}? ( ${PYTHON_PKG_DEP} ) " done fi - PYTHON_USEDEP=${optflags// /,} + declare -g -r PYTHON_USEDEP=${optflags// /,} # 1) well, python-exec would suffice as an RDEP # but no point in making this overcomplex, BDEP doesn't hurt anyone @@ -253,6 +253,7 @@ _python_single_set_globals() { else PYTHON_DEPS+="dev-lang/python-exec:2[${PYTHON_USEDEP}]" fi + readonly PYTHON_DEPS PYTHON_REQUIRED_USE } _python_single_set_globals unset -f _python_single_set_globals