Re: [Yum-devel] [PATCH 2/3] when depsolving - if we have a dep from an installed pkg. Check to see if the thing it requires is being updated or obsoleted. If it is being updated then try to update the

2010-10-19 Thread James Antill
On Tue, 2010-10-19 at 16:49 -0400, Seth Vidal wrote: > this is only to fix a couple of oddball cases where pulling in the obsoleters > is > less likely to be the correct thing to do. > --- > yum/depsolve.py | 20 +++- > 1 files changed, 19 insertions(+), 1 deletions(-) Not

Re: [Yum-devel] [PATCH 1/3] make obsoletes a little more correct vis-a-vis rpm

2010-10-19 Thread James Antill
On Tue, 2010-10-19 at 16:49 -0400, Seth Vidal wrote: > when we add pkgs to be updated or installed (and they are not TrueInstalls) > then go ahead and look through them and add any pkgs that might be Obsoleted > by them > when rpm runs the transaction. Since rpm will run it whether or not we list

[Yum-devel] [PATCH 1/3] make obsoletes a little more correct vis-a-vis rpm

2010-10-19 Thread Seth Vidal
when we add pkgs to be updated or installed (and they are not TrueInstalls) then go ahead and look through them and add any pkgs that might be Obsoleted by them when rpm runs the transaction. Since rpm will run it whether or not we list it when it comes to obsoletes also add a counter any time w

[Yum-devel] [PATCH 3/3] fix the unittests to remove the FIXMEs b/c now they are fixed.

2010-10-19 Thread Seth Vidal
--- test/simpleobsoletestests.py | 10 ++ 1 files changed, 2 insertions(+), 8 deletions(-) diff --git a/test/simpleobsoletestests.py b/test/simpleobsoletestests.py index dfaa7e5..97a9923 100644 --- a/test/simpleobsoletestests.py +++ b/test/simpleobsoletestests.py @@ -560,10 +560,7 @@ cl

[Yum-devel] [PATCH 2/3] when depsolving - if we have a dep from an installed pkg. Check to see if the thing it requires is being updated or obsoleted. If it is being updated then try to update the req

2010-10-19 Thread Seth Vidal
this is only to fix a couple of oddball cases where pulling in the obsoleters is less likely to be the correct thing to do. --- yum/depsolve.py | 20 +++- 1 files changed, 19 insertions(+), 1 deletions(-) diff --git a/yum/depsolve.py b/yum/depsolve.py index 4fcc6f3..cba0fc5

[Yum-devel] [PATCH] Allow packages-list to not take an arg. ... shows recent pkgs.

2010-10-19 Thread James Antill
--- output.py | 17 +++-- 1 files changed, 11 insertions(+), 6 deletions(-) diff --git a/output.py b/output.py index 5e2f073..a32a3a9 100755 --- a/output.py +++ b/output.py @@ -1900,9 +1900,9 @@ to exit. """ Shows the user a list of data about the history, from the point

Re: [Yum-devel] [PATCH] Split search patterns if we get too many, BZ 644432

2010-10-19 Thread seth vidal
On Tue, 2010-10-19 at 15:24 -0400, James Antill wrote: > --- > yum/history.py | 19 --- > 1 files changed, 16 insertions(+), 3 deletions(-) > > diff --git a/yum/history.py b/yum/history.py > index a8004af..26d6ee2 100644 > --- a/yum/history.py > +++ b/yum/history.py > @@ -1176,1

[Yum-devel] [PATCH] Split search patterns if we get too many, BZ 644432

2010-10-19 Thread James Antill
--- yum/history.py | 19 --- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/yum/history.py b/yum/history.py index a8004af..26d6ee2 100644 --- a/yum/history.py +++ b/yum/history.py @@ -1176,12 +1176,25 @@ class YumHistory: return set() data

Re: [Yum-devel] [PATCH] make sure we're using the right urlgrabber opts for retrieving gpgkeys for repos.

2010-10-19 Thread James Antill
On Tue, 2010-10-19 at 10:53 -0400, Seth Vidal wrote: > --- > yum/__init__.py | 15 ++- > 1 files changed, 6 insertions(+), 9 deletions(-) ACK. ___ Yum-devel mailing list Yum-devel@lists.baseurl.org http://lists.baseurl.org/mailman/listin

Re: [Yum-devel] [PATCH] Use rpmdb conflict index if available, in rpm-4.9.x, no need to cache.

2010-10-19 Thread seth vidal
On Mon, 2010-10-18 at 11:55 -0400, James Antill wrote: > --- > yum/depsolve.py |6 +- > yum/rpmsack.py | 33 +++-- > 2 files changed, 32 insertions(+), 7 deletions(-) > > diff --git a/yum/depsolve.py b/yum/depsolve.py > index 886cca8..d4aa0b2 100644 > --- a/

[Yum-devel] [PATCH] make sure we're using the right urlgrabber opts for retrieving gpgkeys for repos.

2010-10-19 Thread Seth Vidal
--- yum/__init__.py | 15 ++- 1 files changed, 6 insertions(+), 9 deletions(-) diff --git a/yum/__init__.py b/yum/__init__.py index 4596e71..cecdf32 100644 --- a/yum/__init__.py +++ b/yum/__init__.py @@ -4236,23 +4236,20 @@ class YumBase(depsolve.Depsolve): key_installed =

Re: [Yum-devel] [PATCH] add 'ud' and 'od' modes to transaction members: updated and obsoleted - change the outputs a bit to correspond to this. - add depsolve cases to handle this better

2010-10-19 Thread James Antill
On Mon, 2010-10-18 at 14:37 -0400, Seth Vidal wrote: > --- > output.py | 12 +++- > test/testbase.py |6 -- > yum/depsolve.py| 24 ++-- > yum/transactioninfo.py |4 ++-- > 4 files changed, 31 insertions(+), 15 deletions(-) AC