Hello community, here is the log from the commit of package python-moviepy for openSUSE:Factory checked in at 2019-05-22 15:38:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-moviepy (Old) and /work/SRC/openSUSE:Factory/.python-moviepy.new.5148 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-moviepy" Wed May 22 15:38:46 2019 rev:6 rq:698245 version:1.0.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-moviepy/python-moviepy.changes 2019-01-24 14:14:12.027308044 +0100 +++ /work/SRC/openSUSE:Factory/.python-moviepy.new.5148/python-moviepy.changes 2019-05-22 15:38:48.126585539 +0200 @@ -1,0 +2,16 @@ +Fri Apr 19 16:19:00 UTC 2019 - Todd R <[email protected]> + +- Update to 1.0.0 + * fix typo that introduces audio regression + * added dependencies so python2.7 will survive as long as + imageio supports it + * new version of imageio with imageio_ffmpeg + * removed unused imageio.ffmpeg_download() + * Progress bars and messages now with Proglog + * fixing the git remote syntax + * modified max duration error for better understanding + * added requests as a core dependency + * FIX changed order of specifications -ss befor -i for + ffmpeg_extract_subclip() + +------------------------------------------------------------------- Old: ---- moviepy-0.2.3.5.tar.gz New: ---- moviepy-1.0.0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-moviepy.spec ++++++ --- /var/tmp/diff_new_pack.0rXp2y/_old 2019-05-22 15:38:48.686585377 +0200 +++ /var/tmp/diff_new_pack.0rXp2y/_new 2019-05-22 15:38:48.690585376 +0200 @@ -1,7 +1,7 @@ # # spec file for package python-moviepy # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,14 +19,14 @@ %define modname moviepy %{?!python_module:%define python_module() python-%{**} python3-%{**}} -Name: python-%{modname} -Version: 0.2.3.5 +Name: python-moviepy +Version: 1.0.0 Release: 0 Summary: Video editing with Python License: MIT Group: Development/Languages/Python -Url: https://github.com/Zulko/%{modname} -Source: https://files.pythonhosted.org/packages/source/m/%{modname}/%{modname}-%{version}.tar.gz +Url: https://github.com/Zulko/moviepy +Source: https://files.pythonhosted.org/packages/source/m/moviepy/moviepy-%{version}.tar.gz BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros @@ -35,9 +35,9 @@ BuildRequires: %{python_module coveralls >= 1.1} BuildRequires: %{python_module cryptography} BuildRequires: %{python_module decorator >= 4.0.2} -BuildRequires: %{python_module imageio >= 2.1.2} BuildRequires: %{python_module numpy} BuildRequires: %{python_module opencv >= 3.0} +BuildRequires: %{python_module proglog} BuildRequires: %{python_module pyOpenSSL >= 0.14} BuildRequires: %{python_module pytest >= 3.0.0} BuildRequires: %{python_module pytest-cov >= 2.5.1} @@ -46,18 +46,28 @@ BuildRequires: ImageMagick BuildRequires: ffmpeg BuildRequires: python-ipaddress +BuildRequires: python-imageio >= 2.0 +BuildRequires: python3-imageio >= 2.5 +BuildRequires: python3-imageio-ffmpeg >= 0.2.0 # /SECTION Requires: python-decorator >= 4.0.2 -Requires: python-imageio >= 2.1.2 Requires: python-numpy +Requires: python-proglog +Requires: python-requests >= 2.8.1 Requires: python-tqdm >= 4.11.2 +%ifpython2 +Requires: python-imageio >= 2.1.2 +%endif +%ifpython3 +Requires: python-imageio >= 2.5 +Requires: python-imageio-ffmpeg >= 0.2.0 +%endif Recommends: ImageMagick Recommends: ffmpeg Recommends: python-Pillow Recommends: python-matplotlib >= 2.0.0 Recommends: python-opencv >= 3.0 Recommends: python-pygame >= 1.9.3 -Recommends: python-requests >= 2.8.1 Recommends: python-scikit-image >= 0.13.0 Recommends: python-scikit-learn Recommends: python-scipy >= 0.19.0 @@ -73,7 +83,7 @@ effects. %prep -%setup -q -n %{modname}-%{version} +%setup -q -n moviepy-%{version} %build %python_build @@ -82,12 +92,12 @@ %python_install %python_expand rm -rf %{buildroot}%{$python_sitelib}/tests %{python_expand %fdupes %{buildroot}%{$python_sitelib} -$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/%{modname}/audio/ -$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/%{modname}/audio/ -$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/%{modname}/video/ -$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/%{modname}/video/ -$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/%{modname}/video/compositing/ -$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/%{modname}/video/compositing/ +$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/moviepy/audio/ +$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/moviepy/audio/ +$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/moviepy/video/ +$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/moviepy/video/ +$python -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/moviepy/video/compositing/ +$python -O -m compileall -d %{$python_sitelib} %{buildroot}%{$python_sitelib}/moviepy/video/compositing/ %fdupes %{buildroot}%{$python_sitelib} } @@ -97,6 +107,6 @@ %files %{python_files} %doc README.rst %license LICENCE.txt -%{python_sitelib}/%{modname}* +%{python_sitelib}/moviepy* %changelog ++++++ moviepy-0.2.3.5.tar.gz -> moviepy-1.0.0.tar.gz ++++++ ++++ 2644 lines of diff (skipped)
