[Yum-devel] sparc64v complex updates

2013-04-18 Thread John Haxby
Hello All, I've been tinkering with a old sparc box recently and noticed an odd problem when yum updating the kernel. If I have two kernels currently installed and use yum update to pick up a third, it's ignored. Turning on debug shows that the new kernel is being put in a complex update, but n

Re: [Yum-devel] [PATCH] support socks4/5 proxies

2013-04-18 Thread James Antill
On Thu, 2013-04-18 at 11:13 -0400, Zdenek Pavlas wrote: > > Have you tried this? > > I didn't set up a socks proxy Yeh, that's what I meant ... was kind of hoping you'd found some random socks proxy so didn't have to set one up too. Worst case ... can you find someone who requested it at some

Re: [Yum-devel] [PATCH] bash completion: load yum.bash in. BZ 953210

2013-04-18 Thread Ville Skyttä
On 2013-04-18 11:26, Zdenek Pavlas wrote: > --- > yum-utils.bash | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/yum-utils.bash b/yum-utils.bash > index 20e8e5c..6578bb3 100644 > --- a/yum-utils.bash > +++ b/yum-utils.bash > @@ -1,3 +1,6 @@ > +# need functions from yum.bash > +type -t

Re: [Yum-devel] [PATCH] support socks4/5 proxies

2013-04-18 Thread Zdenek Pavlas
> Have you tried this? I didn't set up a socks proxy, but it indeed worked all the way down to pycurl setopt(), and curl has connected to the proxy=socks4://localhost:3000 URL, and sent some binary junk, so it very likely works.. # nc -l -v 3000|hexdump Connection from localhost.localdomain 4128

Re: [Yum-devel] [PATCH] support socks4/5 proxies

2013-04-18 Thread James Antill
On Thu, 2013-04-18 at 16:01 +0200, Zdenek Pavlas wrote: > There was a request to implement this: > http://lists.baseurl.org/pipermail/yum/2013-February/023923.html Pretty sure we've had multiple BZs over the years too (might want to search for any open ones and stick them in the commit msg). > c

[Yum-devel] [PATCH] support socks4/5 proxies

2013-04-18 Thread Zdenek Pavlas
There was a request to implement this: http://lists.baseurl.org/pipermail/yum/2013-February/023923.html curl supports socks proxies via the same setopt(PROXY, url) API we already use for ftp/http/https proxies, so it's pretty easy. --- yum/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 del

[Yum-devel] [PATCH] bash completion: load yum.bash in. BZ 953210

2013-04-18 Thread Zdenek Pavlas
--- yum-utils.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/yum-utils.bash b/yum-utils.bash index 20e8e5c..6578bb3 100644 --- a/yum-utils.bash +++ b/yum-utils.bash @@ -1,3 +1,6 @@ +# need functions from yum.bash +type -t _yum >/dev/null || . $(pkg-config --variable=completionsdir ba