Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 696638 - dev-python/moviepy: version bump
Summary: dev-python/moviepy: version bump
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Horea Christian
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-10-05 10:45 UTC by Michał Górny
Modified: 2020-01-01 19:26 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2019-10-05 10:45:22 UTC
According to Repology, the current upstream release is 1.0.1.  Please bump.
Comment 1 Larry the Git Cow gentoo-dev 2019-12-26 17:45:20 UTC
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(+)
Comment 2 Bernd Feige 2020-01-01 19:24:38 UTC
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.
Comment 3 Bernd Feige 2020-01-01 19:26:56 UTC
(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.