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 1SaA2j-0006mS-L7 for garchives@archives.gentoo.org; Thu, 31 May 2012 18:24:17 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20C0FE064E; Thu, 31 May 2012 18:24:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E87E5E064E for ; Thu, 31 May 2012 18:24:09 +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 3DB051B4044 for ; Thu, 31 May 2012 18:24:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id EDCF0E5431 for ; Thu, 31 May 2012 18:24:07 +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: <1338488545.95226ca095165a2fa021663bc23b52e32f70a1f3.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: / X-VCS-Repository: proj/R_overlay X-VCS-Files: run_descreader.py run_ebuildcreation.py X-VCS-Directories: / X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 95226ca095165a2fa021663bc23b52e32f70a1f3 X-VCS-Branch: master Date: Thu, 31 May 2012 18:24:07 +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: f5f8db12-d8a3-4d89-9628-803c1e3c964e X-Archives-Hash: 8dde406a0985ec316be19c6cfa3890d4 commit: 95226ca095165a2fa021663bc23b52e32f70a1f3 Author: Andr=C3=A9 Erdmann mailerd de> AuthorDate: Thu May 31 18:22:25 2012 +0000 Commit: Andr=C3=A9 Erdmann mailerd de> CommitDate: Thu May 31 18:22:25 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/R_overlay.git= ;a=3Dcommit;h=3D95226ca0 temporary files --- run_descreader.py | 9 +-------- run_ebuildcreation.py | 3 ++- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/run_descreader.py b/run_descreader.py index b113510..926281e 100755 --- a/run_descreader.py +++ b/run_descreader.py @@ -4,16 +4,9 @@ # Distributed under the terms of the GNU General Public License v2 =20 import sys -sys.stderr.write ( "<=3D=3D=3D run_descreader start =3D=3D=3D>\n" ) +print ( "<=3D=3D=3D run_descreader start =3D=3D=3D>\n" ) =20 try: - import roverlay.fileio - - reader =3D roverlay.fileio.DescriptionReader() - - for tarball in sys.argv[1:]: - reader.readfile ( tarball ) - print ( "<=3D=3D=3D run_descreader end =3D=3D=3D>\n" ) =20 except Exception as err: diff --git a/run_ebuildcreation.py b/run_ebuildcreation.py index 2f522b5..239ba82 100755 --- a/run_ebuildcreation.py +++ b/run_ebuildcreation.py @@ -24,7 +24,8 @@ try: ec.run () =20 for e in ec.collect_ebuilds (): - sys.stderr.write ( '\n[### this is an ebuild: ###]\n' ) + sys.stderr.write ( '\n** ebuild, filename=3D' + e.suggest_name ( '__un= def__' ) + '.ebuild\n' ) + sys.stderr.write ( '[### this is an ebuild: ###]\n' ) e.show ( sys.stderr ) sys.stderr.write ( '[### this was an ebuild: ###]\n' ) =20