According to Repology, the current upstream release is 1.0.1. Please bump.
The bug has been closed via the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=787c9c0e296f2b44a7d9ac4d1afd7569b3ad7310 commit 787c9c0e296f2b44a7d9ac4d1afd7569b3ad7310 Author: Pacho Ramos <pacho@gentoo.org> AuthorDate: 2019-12-26 17:45:04 +0000 Commit: Pacho Ramos <pacho@gentoo.org> CommitDate: 2019-12-26 17:45:13 +0000 dev-python/moviepy: Bump to 1.0.1 Closes: https://bugs.gentoo.org/696638 Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Pacho Ramos <pacho@gentoo.org> dev-python/moviepy/Manifest | 1 + dev-python/moviepy/moviepy-1.0.1.ebuild | 35 +++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+)
Thanks for bumping - however, this version does not work because two essential libraries are missing in gentoo: - Already during the import, "proglog" is not found (https://github.com/Edinburgh-Genome-Foundry/Proglog). - When trying to actually use the software, the mechanism trying to locate the ffmpeg binary defaults to FFMPEG_BINARY='ffmpeg-imageio' (in /usr/lib/python3.7/site-packages/moviepy/config_defaults.py) which is not applicable in linux and fails trying to import imageio_ffmpeg (in /usr/lib/python3.7/site-packages/imageio/plugins/ffmpeg.py). Setting FFMPEG_BINARY='auto-detect' in config_defaults.py fixes this.
(In reply to Bernd Feige from comment #2) > Thanks for bumping - however, this version does not work because two > essential libraries are missing in gentoo: Sorry, of course the second one is not fixed by providing imageio_ffmpeg but just requires setting the default correctly as outlined.