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 7676758973 for ; Sat, 6 Feb 2016 09:49:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DFF621C002; Sat, 6 Feb 2016 09:49:17 +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 19BDC21C002 for ; Sat, 6 Feb 2016 09:49:17 +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 08B73340B56 for ; Sat, 6 Feb 2016 09:49:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CB8D8DC for ; Sat, 6 Feb 2016 09:49:12 +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: <1454752134.d86d8200817ee4b77e5d7a4bc552ec4711ed8638.mgorny@gentoo> Subject: [gentoo-commits] proj/eselect-python:master commit in: / X-VCS-Repository: proj/eselect-python X-VCS-Files: python.eselect.in X-VCS-Directories: / X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d86d8200817ee4b77e5d7a4bc552ec4711ed8638 X-VCS-Branch: master Date: Sat, 6 Feb 2016 09:49:12 +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: d96e4bda-9706-4ae1-adc1-704d550145ce X-Archives-Hash: 93cd31addd655acd1f1ea3beed3da63b commit: d86d8200817ee4b77e5d7a4bc552ec4711ed8638 Author: Michał Górny gentoo org> AuthorDate: Sat Feb 6 09:48:54 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Feb 6 09:48:54 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-python.git/commit/?id=d86d8200 update: Ignore Python 2 preference update requests python.eselect.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python.eselect.in b/python.eselect.in index 2bf6e30..e05bff1 100644 --- a/python.eselect.in +++ b/python.eselect.in @@ -362,7 +362,7 @@ describe_update() { describe_update_options() { echo "--if-unset : do not alter preferences unless there is no valid preference set" echo "--ignore SLOT : ignore specified Python slots" - echo "--python2 : update only Python 2 preferences" + echo "--python2 : update only Python 2 preferences (ignored)" echo "--python3 : update only Python 3 preferences" } @@ -379,6 +379,8 @@ do_update() { ;; --python2|--py2) filter=--py2 + echo "Ignoring Python 2 preference update as non-meaningful" + return 0 ;; --python3|--py3) filter=--py3