[Yum-devel] [PATCH 3/3] A solution to the obsoletes but don't provide problem.

2012-06-18 Thread James Antill
--- yum/depsolve.py | 20 ++-- 1 files changed, 18 insertions(+), 2 deletions(-) diff --git a/yum/depsolve.py b/yum/depsolve.py index 449cf48..aaed2f6 100644 --- a/yum/depsolve.py +++ b/yum/depsolve.py @@ -485,12 +485,28 @@ class Depsolve(object): # try to update th

[Yum-devel] [PATCH 1/3] Add obsoletes testcase for openssl in current rawhide.

2012-06-18 Thread James Antill
--- test/simpleobsoletestests.py | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/test/simpleobsoletestests.py b/test/simpleobsoletestests.py index 70dde98..55e6f14 100644 --- a/test/simpleobsoletestests.py +++ b/test/simpleobsoletestests.py @@ -624,6

[Yum-devel] [PATCH 2/3] Fix strong_requires always being empty in test packages.

2012-06-18 Thread James Antill
--- test/testbase.py |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/test/testbase.py b/test/testbase.py index 0a931f1..608da70 100644 --- a/test/testbase.py +++ b/test/testbase.py @@ -141,6 +141,7 @@ class FakePackage(packages.YumAvailablePackage): self.yumdb_in

Re: [Yum-devel] [PATCH] Do not flood the screen when we can't show the lock owner. BZ 745281

2012-06-18 Thread James Antill
On Mon, 2012-06-18 at 12:03 +0200, Zdeněk Pavlas wrote: > get_lock_owner() returns a valid locker PID (not a zombie process) > but get_process_info(PID) fails. This needs more investigation. > At least, make the locker PID readable by not flooding the screen. Given that people can't reproduce it

[Yum-devel] [PATCH] Do not flood the screen when we can't show the lock owner. BZ 745281

2012-06-18 Thread Zdeněk Pavlas
get_lock_owner() returns a valid locker PID (not a zombie process) but get_process_info(PID) fails. This needs more investigation. At least, make the locker PID readable by not flooding the screen. --- yummain.py |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/yummai