[Yum-devel] [PATCH] we need to set the basearch on arm hardware to arm.

2011-05-26 Thread Dennis Gilmore
--- rpmUtils/arch.py |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/rpmUtils/arch.py b/rpmUtils/arch.py index 72cba60..6082005 100644 --- a/rpmUtils/arch.py +++ b/rpmUtils/arch.py @@ -359,6 +359,8 @@ def getBaseArch(myarch=None): return "sparc" elif myarch.

Re: [Yum-devel] [PATCH] Fix unicode problems with grpid

2011-05-26 Thread Ville-Pekka Vainio
to, 2011-05-26 kello 10:46 -0400, James Antill kirjoitti: > On Thu, 2011-05-26 at 17:38 +0300, Ville-Pekka Vainio wrote: > > Running yum groupremove with a group name which does not exist and > > includes unicode characters raises a UnicodeDecodeError. > > > > Pass grpid to to_unicode before print

[Yum-devel] [PATCH] Do ts_done create at the same time as ts_all, so it's consistent. BZ 707668.

2011-05-26 Thread James Antill
--- yum/rpmtrans.py | 77 +- 1 files changed, 53 insertions(+), 24 deletions(-) diff --git a/yum/rpmtrans.py b/yum/rpmtrans.py index 08bf99d..5c35486 100644 --- a/yum/rpmtrans.py +++ b/yum/rpmtrans.py @@ -272,21 +272,58 @@ class RPMTransaction

Re: [Yum-devel] [PATCH] Fix unicode problems with grpid

2011-05-26 Thread James Antill
On Thu, 2011-05-26 at 17:38 +0300, Ville-Pekka Vainio wrote: > Running yum groupremove with a group name which does not exist and > includes unicode characters raises a UnicodeDecodeError. > > Pass grpid to to_unicode before printing it to avoid errors like this. ACK. __

[Yum-devel] [PATCH] Fix unicode problems with grpid

2011-05-26 Thread Ville-Pekka Vainio
Running yum groupremove with a group name which does not exist and includes unicode characters raises a UnicodeDecodeError. Pass grpid to to_unicode before printing it to avoid errors like this. --- yum/__init__.py | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --gi