Accepting request 32137 from multimedia:libs
Copy from multimedia:libs/celt based on submit request 32137 from user prusnak OBS-URL: https://build.opensuse.org/request/show/32137 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/celt?expand=0&rev=3
This commit is contained in:
parent
c94817ffa4
commit
37ee15c18d
1
baselibs.conf
Normal file
1
baselibs.conf
Normal file
@ -0,0 +1 @@
|
||||
libcelt0-0
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7e2965210a70933a90379e0be82f7c9dd233d6335cdfcbf507e4c8edb34e20cf
|
||||
size 330109
|
3
celt-0.7.1.tar.bz2
Normal file
3
celt-0.7.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:765222233046cd4a38d93fdd28d9e7e2c2330da679bc1231d39d15d0b49a822f
|
||||
size 328880
|
24
celt.changes
24
celt.changes
@ -1,3 +1,27 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 10 16:22:53 UTC 2010 - lnussel@suse.de
|
||||
|
||||
- remove suffix patch. rename lib package instead
|
||||
- add baselibs.conf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 4 19:04:09 UTC 2010 - davejplater@gmail.com
|
||||
|
||||
- Update to version 0.7.1
|
||||
- Patch celt-0.7.1-libceltsuffix.patch removes the suffix from
|
||||
libcelt to keep the build service happy.
|
||||
* improves the quality of the packet loss concealment (PLC),
|
||||
but does not change the rest of the codec. For this reason it
|
||||
is the first release not to break bit-stream compatibility with
|
||||
the previous release (0.7.0).
|
||||
The default name of the library was changed to libcelt0.so to
|
||||
make it easier to do the transition when the final 1.0 release
|
||||
comes out (with frozen bit-stream and API).
|
||||
* CELT 0.7.0 again improves the stereo quality, reduces artefacts
|
||||
at low bitrates (birdies and speech roughness) and fixes many
|
||||
bugs. In addition to the usual bitstream incompatibilities,
|
||||
the API has also changed in this release.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 12 11:31:22 CEST 2009 - sbrabec@suse.cz
|
||||
|
||||
|
29
celt.spec
29
celt.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package celt (Version 0.6.1)
|
||||
# spec file for package celt (Version 0.7.1)
|
||||
#
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2010 SUSE LINUX Products 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,16 @@
|
||||
|
||||
|
||||
Name: celt
|
||||
Version: 0.6.1
|
||||
Version: 0.7.1
|
||||
Release: 1
|
||||
License: BSD
|
||||
Group: Productivity/Multimedia/Other
|
||||
Summary: Ultra-Low Delay Audio Codec
|
||||
Url: http://www.celt-codec.org/
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Source: http://downloads.xiph.org/releases/celt/%{name}-%{version}.tar.bz2
|
||||
Source1: baselibs.conf
|
||||
BuildRequires: libogg-devel
|
||||
# Patch configure.ac to remove the "0" suffix from libcelt
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@ -41,10 +43,10 @@ Authors:
|
||||
Timothy B. Terriberry
|
||||
|
||||
%package -n libcelt-devel
|
||||
License: BSD 3-clause (or similar)
|
||||
License: BSD3c(or similar)
|
||||
Summary: Ultra-Low Delay Audio Codec
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libcelt0 = %{version} glibc-devel
|
||||
Requires: libcelt0-0 = %{version} glibc-devel
|
||||
|
||||
%description -n libcelt-devel
|
||||
The CELT codec is an experimental audio codec for use in low-delay
|
||||
@ -57,12 +59,12 @@ Authors:
|
||||
Jean-Marc Valin
|
||||
Timothy B. Terriberry
|
||||
|
||||
%package -n libcelt0
|
||||
License: BSD 3-clause (or similar)
|
||||
%package -n libcelt0-0
|
||||
License: BSD3c(or similar)
|
||||
Summary: Ultra-Low Delay Audio Codec
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libcelt0
|
||||
%description -n libcelt0-0
|
||||
The CELT codec is an experimental audio codec for use in low-delay
|
||||
speech and audio communication.
|
||||
|
||||
@ -75,6 +77,7 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%{?suse_update_config:%{suse_update_config -f config}}
|
||||
|
||||
%build
|
||||
autoreconf -f -i
|
||||
@ -90,9 +93,9 @@ rm -f %{buildroot}%{_libdir}/*.la
|
||||
%clean
|
||||
rm -rf %buildroot
|
||||
|
||||
%post -n libcelt0 -p /sbin/ldconfig
|
||||
%post -n libcelt0-0 -p /sbin/ldconfig
|
||||
|
||||
%postun -n libcelt0 -p /sbin/ldconfig
|
||||
%postun -n libcelt0-0 -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
@ -106,8 +109,8 @@ rm -rf %buildroot
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/celt.pc
|
||||
|
||||
%files -n libcelt0
|
||||
%files -n libcelt0-0
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libcelt.so.0*
|
||||
%{_libdir}/libcelt0.so.0*
|
||||
|
||||
%changelog
|
||||
|
Loading…
x
Reference in New Issue
Block a user