Unfortunately, the SOAP client library suds is no longer maintained by the original author. However, there are some forks. In particular, the suds fork by 'jurko' seems promising: https://bitbucket.org/jurko/suds I propose to switch to this fork. This way, Python 3 will be available which presumably fixes bug #425810. Thanks in advance!
Created attachment 374440 [details, diff] diff -u of ebuilds If no objections shall commit this version soon.
Sounds good to me.
Version 0.6 of dev-python/suds (jurko) has been released. I created an ebuild based on the patch (https://bugs.gentoo.org/show_bug.cgi?id=498022#c1).
Created attachment 396660 [details] suds-0.6.ebuild
fixed in 0.6/0.6-r1 of suds
(In reply to Matthew Thode ( prometheanfire ) from comment #5) > fixed in 0.6/0.6-r1 of suds The new ebuild fails with USE="-doc" due to this line: > use doc && epydoc -n "Suds - ${DESCRIPTION}" -o doc suds || die $ false && echo Done || echo Failed Failed
switched from this: use doc && epydoc -n "Suds - ${DESCRIPTION}" -o doc suds || die to this: ! use doc || epydoc -n "Suds - ${DESCRIPTION}" -o doc suds || die fixed in place as it was a build failure
How about you stop writing ugly one-liners for the sake of it, and use if ... fi?
no need to be a dick about it
Thanks, works fine with Python 3.4.