Created attachment 333228 [details] gpodder-3.4.0.ebuild Just a version bump request
renamed ebuild to 3.5 and it still installed for me.
renamed to 3.5.1 and it works for this as well.
Comment on attachment 333228 [details] gpodder-3.4.0.ebuild This ebuild has false dependency of dev-python/imaging wrt bug 471570, thus obsoleting the attachement to avoid it sneaking into portage.
Created attachment 349640 [details] gpodder-3.5.1.ebuild Hi, i'm testing the version 3.5.1. I need to put 3 patches, one to make work with dev-python/eyeD3 (i make a pull request about that upstream) and two to fix plugins errors from upstream's git, now seems to work without errors nor warnings. Patches: fix_eye3d.patch : https://github.com/hashashin/gpodder/commit/3df7f7fbf38e0949096fcfc798e73e1574d082dd ted_subtitles_fix.patch and audio_normalize_fix.patch https://github.com/gpodder/gpodder/commit/63d6df5ed07dfc13c4fbd4fa3e363f9ed3b31d6a Salud.
Works with 3.5.1 for me. However, I believe it seems to have a dependency on sys-apps/iproute2.
3.5.1 worked fine for me. I'm looking forward to the update because 3.5.1 fixes a Youtube download issue.
3.6.0 in Portage
Hi, I filled a bug on gpodder tracker : https://bugs.gpodder.org/show_bug.cgi?id=1730#c24. Since update, gpodder always displays a message "No network connection". Here changes that i made to make it works: diff --git a/src/gpodder/util.py b/src/gpodder/util.py index 076f6aa..e9a80bf 100644 --- a/src/gpodder/util.py +++ b/src/gpodder/util.py @@ -1703,6 +1703,11 @@ def unix_get_active_interfaces(): if b: yield b.group(1) + # fix gentoo + for interface, state in re.findall('(\\w+):.*<([A-Z,]+)>', stdout): + if interface != 'lo' and 'UP' in state.split(','): + yield interface + def connection_available(): """Check if an Internet connection is available
(In reply to tipiak from comment #8) > Hi, > > I filled a bug on gpodder tracker : > https://bugs.gpodder.org/show_bug.cgi?id=1730#c24 You commented on a already RESOLVED, FIXED bug at upstream tracker, and did same here. That doesn't work, you are lucky if anyone ever sees your messages, I did by accident from bugmail. File new bugs to both.
Ok, I did it. Thank you for the trick.