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 1SfdEj-0001w9-H3 for garchives@archives.gentoo.org; Fri, 15 Jun 2012 20:35:17 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E14EE09DC; Fri, 15 Jun 2012 20:34:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 38527E09DC for ; Fri, 15 Jun 2012 20:34:35 +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 9334A1B406B for ; Fri, 15 Jun 2012 20:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id ED29BE543D for ; Fri, 15 Jun 2012 20:34:31 +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: <1339792281.72e7fbc74e4e2033625e22eb4b10931507dfd322.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: 72e7fbc74e4e2033625e22eb4b10931507dfd322 X-VCS-Branch: master Date: Fri, 15 Jun 2012 20:34:31 +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: 542aeca0-cf03-4a81-ab8e-1a1ec58b7bfc X-Archives-Hash: 24ed012387f4abe8d3ffe7a4bf3e029f commit: 72e7fbc74e4e2033625e22eb4b10931507dfd322 Author: Andr=C3=A9 Erdmann mailerd de> AuthorDate: Fri Jun 15 20:31:21 2012 +0000 Commit: Andr=C3=A9 Erdmann mailerd de> CommitDate: Fri Jun 15 20:31:21 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/R_overlay.git= ;a=3Dcommit;h=3D72e7fbc7 run_ebuildcreation.py: prints metadata now modified: run_ebuildcreation.py --- run_ebuildcreation.py | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/run_ebuildcreation.py b/run_ebuildcreation.py index 6b4faf5..dae02c7 100755 --- a/run_ebuildcreation.py +++ b/run_ebuildcreation.py @@ -45,6 +45,13 @@ try: e.show ( sys.stderr ) sys.stderr.write ( '[### this was an ebuild: ###]\n' ) =20 + for ebuild_dir, mdata in ec.metadata.items(): + sys.stderr.write ( '\n** metadata, in subdir %s\n' % ebuild_dir ) + sys.stderr.write ( '[### this is a metadata file: ###]\n' ) + mdata.write ( sys.stderr ) + sys.stderr.write ( '[### this was a metadata file: ###]\n' ) + + ec.close() =20 me ( "end" )