extras-buildsys/utils extras-repobuild.py,1.18,1.19

Michael Schwendt (mschwendt) fedora-extras-commits at redhat.com
Tue Jun 13 09:29:04 UTC 2006


Author: mschwendt

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

Modified Files:
	extras-repobuild.py 
Log Message:
minor changes in status output


Index: extras-repobuild.py
===================================================================
RCS file: /cvs/fedora/extras-buildsys/utils/extras-repobuild.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- extras-repobuild.py	15 May 2006 20:36:46 -0000	1.18
+++ extras-repobuild.py	13 Jun 2006 09:29:02 -0000	1.19
@@ -70,8 +70,8 @@
     if not DEBUG:        
         if os.path.exists(rpdata): shutil.rmtree(rpdata)
     
-    print 'processing: %s' % repodir
-    print 'Cleaning up older packages (keeping %d latest)' % (keep)
+    print 'Processing: %s' % repodir
+    print 'cleaning up older packages (keeping %d latest)' % (keep)
     repomanage = '/usr/bin/repomanage -c -k%d -o %s' % (keep, repodir)
     if nomanage:
         cmd = '%s | grep -v %s | xargs rm -f' % (repomanage, nomanage)
@@ -79,7 +79,7 @@
         cmd = '%s | xargs rm -f' % repomanage
     run_and_check(cmd)
         
-    print 'Creating repository metadata'
+    print 'creating repository metadata'
     if os.path.exists(compspath):
         cmd = '/usr/bin/createrepo -c %s -q -g %s -x \'*debuginfo*\' %s' % (cachedir, compsname, repodir)
     else:
@@ -96,7 +96,7 @@
         if os.path.exists(dbg_rpdata) and not DEBUG:
             shutil.rmtree(dbg_rpdata)
 
-        print 'processing debug packages'
+        print 'creating metadata for debug packages'
     
         cmd = '/usr/bin/createrepo -c %s -q %s' % (cachedir, dbg_repodir)
         run_and_check(cmd)            
@@ -110,8 +110,6 @@
     destdir = os.path.join(treedir, dist)
     keep = (dist == 'development') and 1 or 2
 
-    print "Making Repository Metadata"
-
     do_repo_stuff(os.path.join(destdir, 'SRPMS'), keep, keepdict.get(dist))
 
     # arch repo creation




More information about the fedora-extras-commits mailing list