From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SZlTV-0005oY-7Y for garchives@archives.gentoo.org; Wed, 30 May 2012 16:10:17 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 517A1E07A5; Wed, 30 May 2012 16:10:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2212CE07A5 for ; Wed, 30 May 2012 16:10:00 +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 779AB1B402C for ; Wed, 30 May 2012 16:09:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id E8130E5434 for ; Wed, 30 May 2012 16:09:55 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1338394004.8b8b3983172965c2534e15172814af79c0286d4e.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: / X-VCS-Repository: proj/R_overlay X-VCS-Files: run_ebuildcreation.py X-VCS-Directories: / X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 8b8b3983172965c2534e15172814af79c0286d4e X-VCS-Branch: master Date: Wed, 30 May 2012 16:09:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 7fca7a3d-cf28-41e8-8b3c-0a630d4a9012 X-Archives-Hash: b41ee112a14a3305fd1ad91e4fedb641 commit: 8b8b3983172965c2534e15172814af79c0286d4e Author: Andre Erdmann mailerd de> AuthorDate: Wed May 30 16:06:44 2012 +0000 Commit: Andr=C3=A9 Erdmann mailerd de> CommitDate: Wed May 30 16:06:44 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/R_overlay.git= ;a=3Dcommit;h=3D8b8b3983 run_ebuildcreation : more verbose, run_ebuildcreation not run_x --- run_ebuildcreation.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/run_ebuildcreation.py b/run_ebuildcreation.py index ee9ea49..2f522b5 100755 --- a/run_ebuildcreation.py +++ b/run_ebuildcreation.py @@ -6,7 +6,7 @@ import sys =20 def me ( msg ): - sys.stderr.write ("<=3D=3D=3D run_x " + msg + " =3D=3D=3D>\n" ) + sys.stderr.write ("<=3D=3D=3D run_ebuildcreation " + msg + " =3D=3D=3D>= \n" ) =20 me ( "start" ) =20 @@ -17,6 +17,7 @@ try: ec =3D EbuildCreator () =20 for tarball in sys.argv[1:]: + sys.stderr.write ( "Adding tarball " + tarball + " to the EbuildCreato= r.\n" ) if ec.add_package ( tarball ) is None: raise Exception ( "ec.add() returns None, fix that." ) =20