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 6481B13888F for ; Tue, 6 Oct 2015 19:32:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D129E0826; Tue, 6 Oct 2015 19:32:01 +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 4315EE0826 for ; Tue, 6 Oct 2015 19:32:01 +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 0733C3404A5 for ; Tue, 6 Oct 2015 19:31:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4796BB00 for ; Tue, 6 Oct 2015 19:31:56 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1444159895.6698f841f9f77bad00a963ae61bf0625d5ce35c3.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: pym/tbc/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: pym/tbc/package.py pym/tbc/qachecks.py X-VCS-Directories: pym/tbc/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 6698f841f9f77bad00a963ae61bf0625d5ce35c3 X-VCS-Branch: master Date: Tue, 6 Oct 2015 19:31:56 +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: 61f50b8c-4097-492d-9a72-c2b6a997d3cb X-Archives-Hash: e4084bdd103bae882653e746fb41b36d commit: 6698f841f9f77bad00a963ae61bf0625d5ce35c3 Author: Magnus Granberg gentoo org> AuthorDate: Tue Oct 6 19:31:35 2015 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Tue Oct 6 19:31:35 2015 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=6698f841 add more repoman fixes pym/tbc/package.py | 2 +- pym/tbc/qachecks.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/tbc/package.py b/pym/tbc/package.py index ef9b453..091f75f 100644 --- a/pym/tbc/package.py +++ b/pym/tbc/package.py @@ -109,7 +109,7 @@ class tbc_package(object): add_logs(self._session, log_msg, "info", self._config_id) git_commit = '0' else: - git_commit = self.get_git_log_ebuild(repodir, ebuild_file): + git_commit = self.get_git_log_ebuild(repodir, ebuild_file) # Get the ebuild metadata ebuild_version_metadata_tree = self.get_ebuild_metadata(cpv, repo) diff --git a/pym/tbc/qachecks.py b/pym/tbc/qachecks.py index 67b1448..451f315 100644 --- a/pym/tbc/qachecks.py +++ b/pym/tbc/qachecks.py @@ -14,7 +14,7 @@ from portage import os, _encodings, _unicode_decode, _unicode_encode from portage.exception import DigestException, FileNotFound, ParseError, PermissionDenied from _emerge.Package import Package from _emerge.RootConfig import RootConfig -from tbc.repoman.checks.ebuilds.checks import run_checks +from repoman.checks.ebuilds.checks import run_checks from tbc.repoman.main import repoman_main from tbc.sqlquerys import get_configmetadata_info, get_config_info, get_setup_info import portage