extras-buildsys/utils extras-repoview.py,1.6,1.7

Michael Schwendt (mschwendt) fedora-extras-commits at redhat.com
Mon Jun 12 11:18:45 UTC 2006


Author: mschwendt

Update of /cvs/fedora/extras-buildsys/utils
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv3063

Modified Files:
	extras-repoview.py 
Log Message:
Too much output which nobody is interested in, right? -- If not, maybe make this customisable?


Index: extras-repoview.py
===================================================================
RCS file: /cvs/fedora/extras-buildsys/utils/extras-repoview.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- extras-repoview.py	11 May 2006 10:54:11 -0000	1.6
+++ extras-repoview.py	12 Jun 2006 11:18:42 -0000	1.7
@@ -49,15 +49,16 @@
 
 
 def do_repoview(repodir):
-    print 'Generating repoview'
-    cmd = '/usr/bin/repoview %s' % repodir
+    print 'Generating repoview in %s' % repodir
+    cmd = '/usr/bin/repoview -q %s' % repodir
     run_and_check(cmd)            
 
     # if there's a debug subdir, make that a repo, too.
     dbg_repodir = os.path.join(repodir, 'debug')
 
     if os.path.exists(dbg_repodir):
-        cmd = '/usr/bin/repoview %s' % dbg_repodir
+        print 'Generating repoview in %s' % dbg_repodir
+        cmd = '/usr/bin/repoview -q %s' % dbg_repodir
         run_and_check(cmd)                    
 
 
@@ -67,9 +68,6 @@
         sys.exit(1)
     
     destdir = os.path.join(treedir, dist)
-
-    print "Making Repoview pages"
-
     do_repoview(os.path.join(destdir, 'SRPMS'))
 
     # arch repo creation




More information about the scm-commits mailing list