forked from pool/python-PyOgg
Python bindings for Xiphorg's Ogg Vorbis, Opus and FLAC
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyOgg?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -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
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
||||
3
PyOgg-0.6.4a1.tar.gz
Normal file
3
PyOgg-0.6.4a1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0119cce6ef4531036342565f57b2ff20773fc960c0f63e6616dd5f5f040582c2
|
||||
size 35470
|
||||
4
python-PyOgg.changes
Normal file
4
python-PyOgg.changes
Normal file
@@ -0,0 +1,4 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 2 02:34:55 UTC 2018 - Todd R <toddrme2178@gmail.com>
|
||||
|
||||
- Initial version
|
||||
72
python-PyOgg.spec
Normal file
72
python-PyOgg.spec
Normal file
@@ -0,0 +1,72 @@
|
||||
#
|
||||
# spec file for package python-PyOgg
|
||||
#
|
||||
# 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 https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
Name: python-PyOgg
|
||||
Version: 0.6.4a1
|
||||
Release: 0
|
||||
Summary: Python bindings for Xiphorg's Ogg Vorbis, Opus and FLAC
|
||||
License: BSD-3-Clause
|
||||
Group: Development/Languages/Python
|
||||
Url: https://github.com/Zuzu-Typ/PyOgg
|
||||
Source: https://files.pythonhosted.org/packages/source/P/PyOgg/PyOgg-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: pkgconfig(libopusenc)
|
||||
BuildRequires: pkgconfig(ogg)
|
||||
BuildRequires: pkgconfig(opus)
|
||||
BuildRequires: pkgconfig(opusfile)
|
||||
BuildRequires: pkgconfig(vorbisenc)
|
||||
BuildRequires: pkgconfig(vorbisfile)
|
||||
Recommends: libflac
|
||||
Recommends: libvorbis
|
||||
# Automatically get so numbers
|
||||
Recommends: %( ls /usr/lib64/libogg.so.*.*.* | sed -r 's/.*(libogg\.so\.[0-9]*)\..*/\1/g' )
|
||||
Recommends: %( ls /usr/lib64/libopus.so.*.*.* | sed -r 's/.*(libopus\.so\.[0-9]*)\..*/\1/g' )
|
||||
Recommends: %( ls /usr/lib64/libopusenc.so.*.*.* | sed -r 's/.*(libopusenc\.so\.[0-9]*)\..*/\1/g' )
|
||||
Recommends: %( ls /usr/lib64/libopusfile.so.*.*.* | sed -r 's/.*(libopusfile\.so\.[0-9]*)\..*/\1/g' )
|
||||
Recommends: %( ls /usr/lib64/libvorbisenc.so.*.*.* | sed -r 's/.*(libvorbisenc\.so\.[0-9]*)\..*/\1/g' )
|
||||
Recommends: %( ls /usr/lib64/libvorbisfile.so.*.*.* | sed -r 's/.*(libvorbisfile\.so\.[0-9]*)\..*/\1/g' )
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
PyOgg provides bindings for Xiph.org's OGG Vorbis, OGG Opus and FLAC
|
||||
audio file formats.
|
||||
|
||||
%prep
|
||||
%setup -q -n PyOgg-%{version}
|
||||
# wrong-file-end-of-line-encoding
|
||||
sed -i 's/\r$//' README.md README.rst
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.md README.rst
|
||||
%license COPYING LICENSE
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user