- Upgrading to 1.3.2
- Cleaning the spec - Fixing bogus dates in the changelog
This commit is contained in:
parent
39df0ded42
commit
47ef99c67e
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
libogg-1.2.0.tar.gz
|
libogg-1.2.0.tar.gz
|
||||||
/libogg-1.2.2.tar.gz
|
/libogg-1.2.2.tar.gz
|
||||||
/libogg-1.3.0.tar.xz
|
/libogg-1.3.0.tar.xz
|
||||||
|
/libogg-1.3.2.tar.xz
|
||||||
|
38
libogg.spec
38
libogg.spec
@ -1,16 +1,14 @@
|
|||||||
Summary: The Ogg bitstream file format library
|
Summary: The Ogg bitstream file format library
|
||||||
Name: libogg
|
Name: libogg
|
||||||
Epoch: 2
|
Epoch: 2
|
||||||
Version: 1.3.0
|
Version: 1.3.2
|
||||||
Release: 7%{?dist}
|
Release: 1%{?dist}
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://www.xiph.org/
|
URL: http://www.xiph.org/
|
||||||
|
|
||||||
Source: http://downloads.xiph.org/releases/ogg/%{name}-%{version}.tar.xz
|
Source: http://downloads.xiph.org/releases/ogg/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
Patch0: libogg-aarch64.patch
|
|
||||||
Patch1: libogg-multilib.patch
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Libogg is a library for manipulating Ogg bitstream file formats.
|
Libogg is a library for manipulating Ogg bitstream file formats.
|
||||||
@ -25,6 +23,7 @@ Requires: libogg = %{epoch}:%{version}-%{release}
|
|||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
Requires: automake
|
Requires: automake
|
||||||
|
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
Libogg is a library used for manipulating Ogg bitstreams. The
|
Libogg is a library used for manipulating Ogg bitstreams. The
|
||||||
libogg-devel package contains the header files and documentation
|
libogg-devel package contains the header files and documentation
|
||||||
@ -32,9 +31,10 @@ needed for development using libogg.
|
|||||||
|
|
||||||
|
|
||||||
%package devel-docs
|
%package devel-docs
|
||||||
Summary: Documentation for developing Ogg applications
|
Summary: Documentation for developing Ogg applications
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
|
|
||||||
%description devel-docs
|
%description devel-docs
|
||||||
Documentation for developing applications with libogg
|
Documentation for developing applications with libogg
|
||||||
@ -43,8 +43,6 @@ Documentation for developing applications with libogg
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%patch0 -p1
|
|
||||||
%patch1 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
sed -i "s/-O20/$RPM_OPT_FLAGS/" configure
|
sed -i "s/-O20/$RPM_OPT_FLAGS/" configure
|
||||||
@ -54,20 +52,16 @@ make %{?_smp_mflags}
|
|||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
|
||||||
make DESTDIR=$RPM_BUILD_ROOT install
|
make DESTDIR=$RPM_BUILD_ROOT install
|
||||||
|
|
||||||
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||||
|
|
||||||
rm -rf __installed_docs
|
mv $RPM_BUILD_ROOT%{_docdir}/%{name} __installed_docs
|
||||||
mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version} __installed_docs
|
|
||||||
|
|
||||||
# rename directory to match index.html
|
|
||||||
mv __installed_docs/ogg __installed_docs/libogg
|
|
||||||
|
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
|
|
||||||
@ -75,6 +69,7 @@ mv __installed_docs/ogg __installed_docs/libogg
|
|||||||
%doc AUTHORS CHANGES COPYING README
|
%doc AUTHORS CHANGES COPYING README
|
||||||
%{_libdir}/libogg.so.*
|
%{_libdir}/libogg.so.*
|
||||||
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%dir %{_includedir}/ogg
|
%dir %{_includedir}/ogg
|
||||||
%{_includedir}/ogg/ogg.h
|
%{_includedir}/ogg/ogg.h
|
||||||
@ -84,10 +79,17 @@ mv __installed_docs/ogg __installed_docs/libogg
|
|||||||
%{_libdir}/pkgconfig/ogg.pc
|
%{_libdir}/pkgconfig/ogg.pc
|
||||||
%{_datadir}/aclocal/ogg.m4
|
%{_datadir}/aclocal/ogg.m4
|
||||||
|
|
||||||
|
|
||||||
%files devel-docs
|
%files devel-docs
|
||||||
%doc __installed_docs/*
|
%doc __installed_docs/*
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Aug 05 2014 Jaromir Capik <jcapik@redhat.com> - 2:1.3.2-1
|
||||||
|
- Upgrading to 1.3.2
|
||||||
|
- Cleaning the spec
|
||||||
|
- Fixing bogus dates in the changelog
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.3.0-7
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:1.3.0-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
@ -227,7 +229,7 @@ mv __installed_docs/ogg __installed_docs/libogg
|
|||||||
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 2:1.0-2
|
* Fri Nov 29 2002 Tim Powers <timp@redhat.com> 2:1.0-2
|
||||||
- remove unpackaged files from the buildroot
|
- remove unpackaged files from the buildroot
|
||||||
|
|
||||||
* Fri Jul 18 2002 Bill Nottingham <notting@redhat.com> 1.0-1
|
* Thu Jul 18 2002 Bill Nottingham <notting@redhat.com> 1.0-1
|
||||||
- one-dot-oh
|
- one-dot-oh
|
||||||
|
|
||||||
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
||||||
@ -260,10 +262,10 @@ mv __installed_docs/ogg __installed_docs/libogg
|
|||||||
* Tue Feb 6 2001 Bill Nottingham <notting@redhat.com>
|
* Tue Feb 6 2001 Bill Nottingham <notting@redhat.com>
|
||||||
- update CVS in prep for beta4
|
- update CVS in prep for beta4
|
||||||
|
|
||||||
* Thu Dec 27 2000 Bill Nottingham <notting@redhat.com>
|
* Wed Dec 27 2000 Bill Nottingham <notting@redhat.com>
|
||||||
- update CVS
|
- update CVS
|
||||||
|
|
||||||
* Tue Dec 11 2000 Bill Nottingham <notting@redhat.com>
|
* Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
|
||||||
- fix bogus group
|
- fix bogus group
|
||||||
|
|
||||||
* Fri Dec 01 2000 Bill Nottingham <notting@redhat.com>
|
* Fri Dec 01 2000 Bill Nottingham <notting@redhat.com>
|
||||||
|
Loading…
Reference in New Issue
Block a user