Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-alt
On 29-08-2011 11:30:46 +0200, Burcin Erocal wrote:
> > "--dir-file=%s/dir %s/%s" % (EPREFIX, inforoot, inforoot, x))[1]
> > TypeError: not all arguments converted during string formatting
>
> I also ran into this last week. The following patch fixes the problem for me. It seems to be introduced in the prefix version of portage.
>
Thanks, there was a bug about it, I now see there is a ) missing. I'll
apply your patch soon.
> --- prefix-portage-2.2.01.19011.org/pym/_emerge/main.py 2011-08-24 13:55:50.326357336 +0200
> +++ prefix-portage-2.2.01.19011.1/pym/_emerge/main.py 2011-08-24 17:42:24.960793637 +0200
> @@ -160,8 +160,8 @@
> del e
> processed_count += 1
> myso = portage.subprocess_getstatusoutput(
> - "LANG=C LANGUAGE=C %s/usr/bin/install-info " +
> - "--dir-file=%s/dir %s/%s" % (EPREFIX, inforoot, inforoot, x))[1]
> + ("LANG=C LANGUAGE=C %s/usr/bin/install-info " +
> + "--dir-file=%s/dir %s/%s") % (EPREFIX, inforoot, inforoot, x))[1]
> existsstr="already exists, for file `"
> if myso!="":
> if
> re.search(existsstr,myso):
>
>
>
--
Fabian Groffen
Gentoo on a different level
|
|