[yum] update to latest HEAD Added group_command, and changed to groups as objects by default. Minor update

James Antill james at fedoraproject.org
Fri Jan 20 21:46:49 UTC 2012


commit 70f2f7323e92293c4eec7ebda1b012217cd316ad
Author: James Antill <james at and.org>
Date:   Fri Jan 20 16:45:16 2012 -0500

    update to latest HEAD
    Added group_command, and changed to groups as objects by default.
    Minor updates.

 yum-HEAD.patch |   15 ++++++++-------
 1 files changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/yum-HEAD.patch b/yum-HEAD.patch
index eb1da45..dc3b5f8 100644
--- a/yum-HEAD.patch
+++ b/yum-HEAD.patch
@@ -146998,7 +146998,7 @@ index abd203f..572112a 100644
  - 3.4.1
  - umask bug fix.
 diff --git a/yum/__init__.py b/yum/__init__.py
-index 99039e0..cc64a90 100644
+index 99039e0..0ace29d 100644
 --- a/yum/__init__.py
 +++ b/yum/__init__.py
 @@ -73,6 +73,7 @@ import logginglevels
@@ -148714,16 +148714,17 @@ index 99039e0..cc64a90 100644
 -                        # install /usr/kerberos/bin/* == success (and we want
 -                        #                                all of the pkgs)
 -                        if mypkgs and not misc.re_glob(arg):
-+                        mypkgs = self.pkgSack.searchProvides(arg)
-+                        if not misc.re_glob(arg):
-                             mypkgs = self.bestPackagesFromList(mypkgs,
+-                            mypkgs = self.bestPackagesFromList(mypkgs,
 -                                                               single_name=True)
 -                        if mypkgs:
 -                            pkgs.extend(mypkgs)
 -                        
-+                                                               single_name=True,
-+                                                               req=arg)
-+                        pkgs.extend(mypkgs)
++                    mypkgs = self.pkgSack.searchProvides(arg)
++                    if not misc.re_glob(arg):
++                        mypkgs = self.bestPackagesFromList(mypkgs,
++                                                           single_name=True,
++                                                           req=arg)
++                    pkgs.extend(mypkgs)
              else:
                  nevra_dict = self._nevra_kwarg_parse(kwargs)
  


More information about the scm-commits mailing list