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 B2EF113800E for ; Thu, 2 Aug 2012 15:15:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 813D2E073C; Thu, 2 Aug 2012 15:14:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 530F4E073C for ; Thu, 2 Aug 2012 15:14:25 +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 85F441B4030 for ; Thu, 2 Aug 2012 15:14:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 93DBAE5446 for ; Thu, 2 Aug 2012 15:14:16 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1343919384.f86187ff5e6bb95ed3f0d7f159e32c378e984565.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/overlay/manifest/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/overlay/manifest/helpers.py X-VCS-Directories: roverlay/overlay/manifest/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: f86187ff5e6bb95ed3f0d7f159e32c378e984565 X-VCS-Branch: master Date: Thu, 2 Aug 2012 15:14:16 +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: c9805b32-d7f0-4320-a050-5aff006abefc X-Archives-Hash: a0f1a883691da314d7cab27575a3e1a6 commit: f86187ff5e6bb95ed3f0d7f159e32c378e984565 Author: André Erdmann mailerd de> AuthorDate: Thu Aug 2 14:56:24 2012 +0000 Commit: André Erdmann mailerd de> CommitDate: Thu Aug 2 14:56:24 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=f86187ff Manifest: use strutil, not util --- roverlay/overlay/manifest/helpers.py | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/roverlay/overlay/manifest/helpers.py b/roverlay/overlay/manifest/helpers.py index d49ecf7..fe31119 100644 --- a/roverlay/overlay/manifest/helpers.py +++ b/roverlay/overlay/manifest/helpers.py @@ -12,7 +12,7 @@ import logging import subprocess -from roverlay import config, util +from roverlay import config, strutil from roverlay.overlay.manifest.env import ManifestEnv @@ -54,8 +54,6 @@ class ExternalManifestCreation ( object ): self.manifest_env ['PORTAGE_RO_DISTDIRS'] = distdirs - #util.dodir ( self.manifest_env ['DISTDIR'] ) - ebuild_call = subprocess.Popen ( ( self.ebuild_prog, @@ -71,12 +69,12 @@ class ExternalManifestCreation ( object ): output = ebuild_call.communicate() # log stdout? - #for line in util.pipe_lines ( output [0] ): + #for line in strutil.pipe_lines ( output [0] ): # LOGGER.debug ( line ) - #for line in util.pipe_lines ( output [0] ): print ( line ) + #for line in strutil.pipe_lines ( output [0] ): print ( line ) # log stderr - for line in util.pipe_lines ( output [1], use_filter=True ): + for line in strutil.pipe_lines ( output [1], use_filter=True ): self.logger.warning ( line ) if ebuild_call.returncode == 0: