[yum-cvs] yum/yum __init__.py,1.109,1.110

Seth Vidal skvidal at login.linux.duke.edu
Mon Mar 28 03:21:17 UTC 2005


Update of /home/groups/yum/cvs/yum/yum
In directory login:/tmp/cvs-serv29342/yum

Modified Files:
	__init__.py 
Log Message:

config exclude implemented
when you exit a ts run w/o actually finishing the transaction, don't reset
the tsInfo class
clean up the help output in the shell.


Index: __init__.py
===================================================================
RCS file: /home/groups/yum/cvs/yum/yum/__init__.py,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -r1.109 -r1.110
--- __init__.py	27 Mar 2005 21:22:13 -0000	1.109
+++ __init__.py	28 Mar 2005 03:21:14 -0000	1.110
@@ -358,7 +358,7 @@
             self.log(2, 'Excluding Packages from %s' % repo.name)
             
         exactmatch, matched, unmatched = \
-           parsePackages(self.pkgSack.returnPackages(repoid), excludelist)
+           parsePackages(self.pkgSack.returnPackages(repoid), excludelist, casematch=1)
         
         for po in exactmatch + matched:
             self.log(3, 'Excluding %s' % po)
@@ -377,7 +377,7 @@
         
         pkglist = self.pkgSack.returnPackages(repo.id)
         exactmatch, matched, unmatched = \
-           parsePackages(pkglist, includelist)
+           parsePackages(pkglist, includelist, casematch=1)
         
         self.log(2, 'Reducing %s to included packages only' % repo.name)
         rmlist = []




More information about the Yum-cvs-commits mailing list