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 6A9F21384AE for ; Sun, 20 Sep 2015 02:07:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2BBB21C09F; Sun, 20 Sep 2015 02:07:00 +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 8FCE621C04A for ; Sun, 20 Sep 2015 02:06:59 +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 DDD4E340831 for ; Sun, 20 Sep 2015 02:06:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD63B228 for ; Sun, 20 Sep 2015 02:06:53 +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: <1442714049.5119898c569923ff47671f6dd61b8c0dd38cbbc3.dolsen@gentoo> Subject: [gentoo-commits] proj/portage:repoman 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: 5119898c569923ff47671f6dd61b8c0dd38cbbc3 X-VCS-Branch: repoman Date: Sun, 20 Sep 2015 02:06:53 +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: a6b00e34-c1ea-4d2c-9f3e-7df42ba5a848 X-Archives-Hash: 12aafe6bad4a3d7ac34f35210a2d87ce commit: 5119898c569923ff47671f6dd61b8c0dd38cbbc3 Author: Brian Dolbec gentoo org> AuthorDate: Thu Sep 17 04:06:24 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sun Sep 20 01:54:09 2015 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=5119898c 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