Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
commit: 95226ca095165a2fa021663bc23b52e32f70a1f3
Author: André Erdmann <dywi <AT> mailerd <DOT> de>
AuthorDate: Thu May 31 18:22:25 2012 +0000
Commit: André Erdmann <dywi <AT> mailerd <DOT> de>
CommitDate: Thu May 31 18:22:25 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=95226ca0
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
import sys
-sys.stderr.write ( "<=== run_descreader start ===>\n" )
+print ( "<=== run_descreader start ===>\n" )
try:
- import roverlay.fileio
-
- reader = roverlay.fileio.DescriptionReader()
-
- for tarball in sys.argv[1:]:
- reader.readfile ( tarball )
-
print ( "<=== run_descreader end ===>\n" )
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 ()
for e in ec.collect_ebuilds ():
- sys.stderr.write ( '\n[### this is an ebuild: ###]\n' )
+ sys.stderr.write ( '\n** ebuild, filename=' + e.suggest_name ( '__undef__' ) + '.ebuild\n' )
+ sys.stderr.write ( '[### this is an ebuild: ###]\n' )
e.show ( sys.stderr )
sys.stderr.write ( '[### this was an ebuild: ###]\n' )
|
|