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 4FC4C1381F3 for ; Sat, 15 Dec 2012 20:08:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2E5A721C02D; Sat, 15 Dec 2012 20:08:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ABC6F21C02D for ; Sat, 15 Dec 2012 20:08:50 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AC68733DC81 for ; Sat, 15 Dec 2012 20:08:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2F14BE543C for ; Sat, 15 Dec 2012 20:08:48 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1355601898.e91e0dac2fbcec4ebb42af29e2914a120341eefa.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/checks.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: e91e0dac2fbcec4ebb42af29e2914a120341eefa X-VCS-Branch: master Date: Sat, 15 Dec 2012 20:08:48 +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: 958f74e0-acad-473a-a4a6-aeca93bc1eac X-Archives-Hash: 1f5668956f75f5355076e2d2ecb05fa2 commit: e91e0dac2fbcec4ebb42af29e2914a120341eefa Author: Michał Górny gentoo org> AuthorDate: Sat Dec 15 14:43:29 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Dec 15 20:04:58 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=e91e0dac makeopts_jobs is declared in multiprocessing, not eutils. --- pym/repoman/checks.py | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index f8252b5..c6c7ddb 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -552,8 +552,7 @@ _eclass_info = { 'funcs': ( 'estack_push', 'estack_pop', 'eshopts_push', 'eshopts_pop', 'eumask_push', 'eumask_pop', 'epatch', 'epatch_user', - 'emktemp', 'edos2unix', 'in_iuse', 'use_if_iuse', 'usex', - 'makeopts_jobs' + 'emktemp', 'edos2unix', 'in_iuse', 'use_if_iuse', 'usex' ), 'comprehensive': False, @@ -588,6 +587,13 @@ _eclass_info = { 'comprehensive': False }, + 'multiprocessing': { + 'funcs': ( + 'makeopts_jobs', + ), + 'comprehensive': False + }, + 'prefix': { 'funcs': ( 'eprefixify',