Re: [Yum-devel] [PATCH] Add an upgrade-all command. Based on idea by Michael Schwendt.

2011-08-18 Thread Ville Skyttä
On 08/18/2011 07:09 PM, James Antill wrote: > The idea is that sometimes you want to say "make sure the entire > dep. tree for package XYZ is at the latest version" > > Things this patch doesn't do: > > 1. local packages. > > 2. implied deps. ... like @buildsys / @core. > > 3. recursive updat

[Yum-devel] [PATCH] Add an upgrade-all command. Based on idea by Michael Schwendt.

2011-08-18 Thread James Antill
The idea is that sometimes you want to say "make sure the entire dep. tree for package XYZ is at the latest version" Things this patch doesn't do: 1. local packages. 2. implied deps. ... like @buildsys / @core. 3. recursive updates for updates that add new deps. --- cli.py | 46 +++

[Yum-devel] [PATCH] Don't look for the releasever, if we are overridding it. BZ 727966.

2011-08-18 Thread James Antill
--- yum/__init__.py |2 +- yum/config.py |9 +++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/yum/__init__.py b/yum/__init__.py index 5bbf079..5fb7c00 100644 --- a/yum/__init__.py +++ b/yum/__init__.py @@ -321,7 +321,7 @@ class YumBase(depsolve.Depsolve):

[Yum-devel] [PATCH 2/2] NoMoreMirrorsRepoError is a RepoError

2011-08-18 Thread Zdeněk Pavlas
--- yum/yumRepo.py |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/yum/yumRepo.py b/yum/yumRepo.py index 11fbf0a..91b7dde 100644 --- a/yum/yumRepo.py +++ b/yum/yumRepo.py @@ -1033,7 +1033,7 @@ Insufficient space in download directory %s if grab_can_fail:

[Yum-devel] [PATCH 1/2] _depsolving_failed: prevent AttributeError. BZ 731717

2011-08-18 Thread Zdeněk Pavlas
This attribute is just a hack to send a flag from depsolver to yummain, so I don't think we need a default in __init__. --- yummain.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/yummain.py b/yummain.py index 4b1112a..25cf067 100755 --- a/yummain.py +++ b/yummain.py @