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 A77AA1387B1 for ; Mon, 21 Sep 2015 23:51:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7441A21C03B; Mon, 21 Sep 2015 23:51:26 +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 6E7F121C026 for ; Mon, 21 Sep 2015 23:51:25 +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 CAEAD3409EC for ; Mon, 21 Sep 2015 23:51:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A7B923F for ; Mon, 21 Sep 2015 23:51: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: <1442878965.e5c1c0899f0cf8e1331a1e523a27703fe84fb8c9.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/main.py pym/repoman/profile.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: e5c1c0899f0cf8e1331a1e523a27703fe84fb8c9 X-VCS-Branch: master Date: Mon, 21 Sep 2015 23:51: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: 15829a24-c915-4c7d-aa23-64350668688b X-Archives-Hash: c3a5b878c1648a729724f53e042c12dd Message-ID: <20150921235119.jlf0FCXae1OGOj-n7uj4m-FAXQMFJ7nC8Vd0Ir1Bnpg@z> commit: e5c1c0899f0cf8e1331a1e523a27703fe84fb8c9 Author: Brian Dolbec gentoo org> AuthorDate: Thu Sep 17 04:06:24 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Mon Sep 21 23:42:45 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e5c1c089 repoman: Change name of dev_keywords() due to variable name conflict Signed-off-by: Brian Dolbec gentoo.org> pym/repoman/main.py | 4 ++-- pym/repoman/profile.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pym/repoman/main.py b/pym/repoman/main.py index e276aba..006afc9 100755 --- a/pym/repoman/main.py +++ b/pym/repoman/main.py @@ -68,7 +68,7 @@ from repoman.ebuild import Ebuild from repoman.errors import err from repoman.gpg import gpgsign, need_signature from repoman.modules.commit import repochecks -from repoman.profile import check_profiles, dev_keywords, setup_profile +from repoman.profile import check_profiles, dev_profile_keywords, setup_profile from repoman.qa_data import ( format_qa_output, format_qa_output_column, qahelp, qawarnings, qacats, missingvars, @@ -243,7 +243,7 @@ scanlist = scan(repolevel, reposplit, startdir, categories, repo_settings) #################### -dev_keywords = dev_keywords(profiles) +dev_keywords = dev_profile_keywords(profiles) qatracker = QATracker() diff --git a/pym/repoman/profile.py b/pym/repoman/profile.py index 11b93c7..0aedbe8 100644 --- a/pym/repoman/profile.py +++ b/pym/repoman/profile.py @@ -28,7 +28,7 @@ class ProfileDesc(object): valid_profile_types = frozenset(['dev', 'exp', 'stable']) -def dev_keywords(profiles): +def dev_profile_keywords(profiles): """ Create a set of KEYWORDS values that exist in 'dev' profiles. These are used