Accepting request 92758 from home:RedDwarf:branches:multimedia:libs
- updated to version 1.3.0 * Add ogg_stream_flush_fill() call This produces longer packets on flush, similar to what ogg_stream_pageout_fill() does for single pages. - run spec-cleaner on it - remove "SLES10 -> SLES11 upgrade path" parts since the upgrade already happened and anyway the entry in bugzilla is not public OBS-URL: https://build.opensuse.org/request/show/92758 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/libogg?expand=0&rev=18
This commit is contained in:
parent
d8fc004be4
commit
9edc182506
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab000574bc26d5f01284f5b0f50e12dc761d035c429f2e9c70cb2a9487d8cfba
|
||||
size 411540
|
3
libogg-1.3.0.tar.gz
Normal file
3
libogg-1.3.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a8de807631014615549d2356fd36641833b8288221cea214f8a72750efe93780
|
||||
size 425144
|
@ -1,3 +1,14 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 20 19:18:37 UTC 2011 - reddwarf@opensuse.org
|
||||
|
||||
- updated to version 1.3.0
|
||||
* Add ogg_stream_flush_fill() call
|
||||
This produces longer packets on flush, similar to
|
||||
what ogg_stream_pageout_fill() does for single pages.
|
||||
- run spec-cleaner on it
|
||||
- remove "SLES10 -> SLES11 upgrade path" parts since the upgrade
|
||||
already happened and anyway the entry in bugzilla is not public
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 9 15:01:23 UTC 2011 - coolo@suse.com
|
||||
|
||||
|
41
libogg.spec
41
libogg.spec
@ -19,23 +19,17 @@
|
||||
%define _SO_nr 0
|
||||
|
||||
Name: libogg
|
||||
Version: 1.2.2
|
||||
Version: 1.3.0
|
||||
Release: 0
|
||||
Summary: Ogg Bitstream Library
|
||||
License: BSD3c(or similar)
|
||||
Summary: Ogg Bitstream Library
|
||||
Url: http://www.vorbis.com/
|
||||
#
|
||||
Group: System/Libraries
|
||||
Source: http://downloads.xiph.org/releases/ogg/%{name}-%{version}.tar.gz
|
||||
Source2: baselibs.conf
|
||||
Patch1: lib64.dif
|
||||
Patch2: m4.diff
|
||||
BuildRequires: pkgconfig
|
||||
# bug437293 (SLES10 -> SLES11 upgrade path)
|
||||
%ifarch ppc64
|
||||
Obsoletes: libogg-64bit
|
||||
%endif
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: pkg-config
|
||||
|
||||
%description
|
||||
Libogg is a library for manipulating ogg bitstreams. It handles both
|
||||
@ -45,17 +39,7 @@ Ogg is the native bitstream format of the libvorbis (Ogg Vorbis audio
|
||||
codec ) and the libtheora (Theora video codec)
|
||||
|
||||
%package -n libogg%{_SO_nr}
|
||||
|
||||
Summary: Ogg Bitstream Library
|
||||
Group: System/Libraries
|
||||
# bug437293 (SLES10 -> SLES11 upgrade path)
|
||||
%ifarch ppc64
|
||||
Obsoletes: libogg-64bit
|
||||
%endif
|
||||
#
|
||||
Provides: %{name} = %{version}
|
||||
#openSUSE 10.2
|
||||
Obsoletes: %{name} <= 1.1.3
|
||||
|
||||
%description -n libogg%{_SO_nr}
|
||||
Libogg is a library for manipulating ogg bitstreams. It handles both
|
||||
@ -65,16 +49,10 @@ Ogg is the native bitstream format of the libvorbis (Ogg Vorbis audio
|
||||
codec ) and the libtheora (Theora video codec)
|
||||
|
||||
%package devel
|
||||
License: BSD3c(or similar)
|
||||
Summary: Include Files and Libraries mandatory for Ogg Development
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: glibc-devel
|
||||
Requires: libogg%{_SO_nr} = %{version}
|
||||
# bug437293 (SLES10 -> SLES11 upgrade path)
|
||||
%ifarch ppc64
|
||||
Obsoletes: libogg-devel-64bit
|
||||
%endif
|
||||
#
|
||||
|
||||
%description devel
|
||||
This package contains all necessary include files and libraries needed
|
||||
@ -89,30 +67,27 @@ fi
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
%{__make} %{?_smp_mflags}
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
%{__make} DESTDIR=%{buildroot} docdir=%{_docdir}/%{name}-devel install
|
||||
make DESTDIR=%{buildroot} docdir=%{_docdir}/%{name}-devel install
|
||||
# remove unneeded files
|
||||
%{__rm} -f %{buildroot}%{_libdir}/*.la
|
||||
rm -f %{buildroot}%{_libdir}/*.la
|
||||
|
||||
%check
|
||||
%{__make} check
|
||||
make check
|
||||
|
||||
%post -n libogg%{_SO_nr} -p /sbin/ldconfig
|
||||
|
||||
%postun -n libogg%{_SO_nr} -p /sbin/ldconfig
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files -n libogg%{_SO_nr}
|
||||
%defattr(0644,root,root,0755)
|
||||
%doc AUTHORS CHANGES COPYING README
|
||||
%{_libdir}/libogg.so.%{_SO_nr}*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%defattr(0644,root,root,0755)
|
||||
%{_docdir}/%{name}-devel
|
||||
%{_includedir}/ogg
|
||||
%{_libdir}/libogg.so
|
||||
|
Loading…
x
Reference in New Issue
Block a user