commit 1d01cf85b7e2d31768ce7339d7af3e56f0817c56ec46282f536518011e96cbe2 Author: Tomáš Chvátal Date: Tue Apr 16 10:04:47 2019 +0000 Accepting request 694711 from system:homeautomation:home-assistant initial package version, also used by antlarr, so submitting to devel project OBS-URL: https://build.opensuse.org/request/show/694711 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-av?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/PyAV-6.1.2.obscpio b/PyAV-6.1.2.obscpio new file mode 100644 index 0000000..26414e2 --- /dev/null +++ b/PyAV-6.1.2.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dd84d6ab8a7cd8a6706ca850057023674db7b112f53df29aadf42a80879dde3 +size 705548 diff --git a/PyAV.obsinfo b/PyAV.obsinfo new file mode 100644 index 0000000..11ace9c --- /dev/null +++ b/PyAV.obsinfo @@ -0,0 +1,5 @@ +name: PyAV +version: 6.1.2 +mtime: 1548280799 +commit: dce21c7c8c25a8bc8dfaecd5f59b1e1d56801b74 + diff --git a/_service b/_service new file mode 100644 index 0000000..0b1ec60 --- /dev/null +++ b/_service @@ -0,0 +1,15 @@ + + + https://github.com/mikeboers/PyAV.git + git + dce21c7c8c25a8bc8dfaecd5f59b1e1d56801b74 + 6.1.2 + + + + + + *.tar + xz + + diff --git a/python-av.changes b/python-av.changes new file mode 100644 index 0000000..537417c --- /dev/null +++ b/python-av.changes @@ -0,0 +1,9 @@ +------------------------------------------------------------------- +Sun Apr 14 18:55:53 UTC 2019 - Antonio Larrosa + +- Moved scratchpad (examples) to share dir + +------------------------------------------------------------------- +Thu Mar 21 13:17:54 UTC 2019 - Adrian Schröter + +- initial package of version 6.1.2 diff --git a/python-av.spec b/python-av.spec new file mode 100644 index 0000000..0efc9fc --- /dev/null +++ b/python-av.spec @@ -0,0 +1,70 @@ +# +# spec file for package python-attrs +# +# Copyright (c) 2018 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 +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} + +Name: python-av +Version: 6.1.2 +Release: 0 +Summary: Python bindings for FFmpeg's libraries +License: BSD-3-Clause +Group: Development/Languages/Python +Url: https://github.com/mikeboers/PyAV +Source: PyAV-%{version}.tar.xz +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module Cython} +BuildRequires: fdupes +BuildRequires: ffmpeg-4-libavdevice-devel +BuildRequires: ffmpeg-4-libavfilter-devel +BuildRequires: ffmpeg-4-libavutil-devel +#BuildRequires: pkg-config +BuildRequires: python-rpm-macros +%if 0%{?suse_version} < 1500 +ExcludeArch: i586 +%endif + +%python_subpackages + +%description +Pythonic bindings for FFmpeg's libraries. + +http://docs.mikeboers.com/pyav/develop/ + +%prep +%setup -q -n PyAV-%{version} + +%build +%python_build + +%install +%python_install +rm -Rf %{buildroot}%{python2_sitearch}/scratchpad +mkdir -p %{buildroot}%{_datadir}/python3-av +mv %{buildroot}%{python3_sitearch}/scratchpad %{buildroot}%{_datadir}/python3-av +%fdupes %{buildroot}%{_prefix} + +%files %{python_files} +%license LICENSE.txt +%doc README.md CHANGELOG.rst AUTHORS.rst +%python3_only %_bindir/pyav +%python3_only %{_datadir}/python3-av +%{python_sitearch}/av +%{python_sitearch}/av-%{version}-py%{py_ver}.egg-info + +%changelog