From bde52c511977251d6f7585ade05d0ca891ffc48f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Nov 2012 16:19:17 +0000 Subject: [PATCH 01/37] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From e2a46f49633c1cd605aca639ee665fb43f067e3d Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 16 Nov 2012 16:46:02 +0000 Subject: [PATCH 02/37] import --- .gitignore | 1 + opusfile.spec | 69 +++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 71 insertions(+) create mode 100644 opusfile.spec diff --git a/.gitignore b/.gitignore index e69de29..6c3b304 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/opusfile-0.2.tar.gz diff --git a/opusfile.spec b/opusfile.spec new file mode 100644 index 0000000..99b6ddb --- /dev/null +++ b/opusfile.spec @@ -0,0 +1,69 @@ +Name: opusfile +Version: 0.2 +Release: 1%{?dist} +Summary: A high-level API for decoding and seeking within .opus files + +Group: System Environment/Libraries +License: BSD +URL: http://www.opus-codec.org/ +Source0: http://downloads.xiph.org/releases/opus/%{name}-%{version}.tar.gz + +BuildRequires: libogg-devel +BuildRequires: openssl-devel +BuildRequires: opus-devel + +%description +libopusfile provides a high-level API for decoding and seeking +within .opus files. It includes: +* Support for all files with at least one Opus stream (including +multichannel files or Ogg files where Opus is muxed with something else). +* Full support, including seeking, for chained files. +* A simple stereo downmixing API (allowing chained files to be +decoded with a single output format, even if the channel count changes). +* Support for reading from a file, memory buffer, or over HTTP(S) +(including seeking). +* Support for both random access and streaming data sources. + +%package devel +Summary: Development package for %{name} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: pkgconfig + +%description devel +Files for development with %{name}. + +%prep +%setup -q + +%build +%configure --disable-static + +make %{?_smp_mflags} V=1 + +%install +make install DESTDIR=%{buildroot} INSTALL='install -p' + +#Remove libtool archives. +find %{buildroot} -name '*.la' -exec rm -f {} ';' + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%doc COPYING AUTHORS +%{_libdir}/libopusfile.so.* + +%files devel +%doc %{_docdir}/%{name} +%{_includedir}/opus/opusfile* +%{_libdir}/pkgconfig/opusfile.pc +%{_libdir}/libopusfile.so + +%changelog +* Wed Nov 14 2012 Peter Robinson 0.2-1 +- Update to 0.2 + +* Sun Nov 4 2012 Peter Robinson 0.1-1 +- Initial package diff --git a/sources b/sources index e69de29..2c01940 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +454375f51fb2f84bef9bf2fbf9535bb1 opusfile-0.2.tar.gz From 27f0c14c274d877aa205c71165812614650b7128 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 03:35:21 -0600 Subject: [PATCH 03/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 99b6ddb..05ae49a 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -62,6 +62,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %{_libdir}/libopusfile.so %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Wed Nov 14 2012 Peter Robinson 0.2-1 - Update to 0.2 From cc12c04f4fc4bee67079bed2054fca59059888d1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 11:02:04 -0500 Subject: [PATCH 04/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 05ae49a..0943a63 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -62,6 +62,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %{_libdir}/libopusfile.so %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Thu Feb 14 2013 Fedora Release Engineering - 0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From fdc27d373e4f887f89b00e390e01585006016d3f Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Tue, 20 Aug 2013 23:32:49 +0100 Subject: [PATCH 05/37] v0.4 --- opusfile.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index 0943a63..5e0afc5 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile -Version: 0.2 -Release: 3%{?dist} +Version: 0.4 +Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -62,6 +62,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %{_libdir}/libopusfile.so %changelog +* Tue Aug 20 2013 Peter Robinson 0.4-1 +- Update to 0.4 + * Sat Aug 03 2013 Fedora Release Engineering - 0.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From b9452bb5516c2af7274473b931486f0f3d016afb Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Tue, 20 Aug 2013 23:35:06 +0100 Subject: [PATCH 06/37] upload source --- .gitignore | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6c3b304..da55a60 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/opusfile-0.2.tar.gz +/opusfile-0.*.tar.gz diff --git a/sources b/sources index 2c01940..096208c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -454375f51fb2f84bef9bf2fbf9535bb1 opusfile-0.2.tar.gz +80f3d4106106905255ff84def1b5d9ae opusfile-0.4.tar.gz From 16a6bace79c66a0b3d9a8c4dafad02259bd40820 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Tue, 20 Aug 2013 23:48:38 +0100 Subject: [PATCH 07/37] update file list --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 5e0afc5..c66457f 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -54,12 +54,15 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %files %doc COPYING AUTHORS %{_libdir}/libopusfile.so.* +%{_libdir}/libopusurl.so.* %files devel %doc %{_docdir}/%{name} -%{_includedir}/opus/opusfile* +%{_includedir}/opus/opus* %{_libdir}/pkgconfig/opusfile.pc +%{_libdir}/pkgconfig/opusurl.pc %{_libdir}/libopusfile.so +%{_libdir}/libopusurl.so %changelog * Tue Aug 20 2013 Peter Robinson 0.4-1 From 2e4aa8a0d2f7dee0c915d50a56ee1ccc137787d8 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 12 Jan 2014 12:59:39 +0000 Subject: [PATCH 08/37] 0.5 --- opusfile.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index c66457f..1e04a18 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,5 +1,5 @@ Name: opusfile -Version: 0.4 +Version: 0.5 Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files @@ -65,6 +65,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %{_libdir}/libopusurl.so %changelog +* Sun Jan 12 2014 Peter Robinson 0.5-1 +- Update to 0.5 + * Tue Aug 20 2013 Peter Robinson 0.4-1 - Update to 0.4 diff --git a/sources b/sources index 096208c..0606eab 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -80f3d4106106905255ff84def1b5d9ae opusfile-0.4.tar.gz +6c96ae240ada27fafff423f96a8814cb opusfile-0.5.tar.gz From 116e70d8aa9b491aa544508c2b8a6bd606a35d2e Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 7 May 2014 12:04:52 +0100 Subject: [PATCH 09/37] minor cleanup --- opusfile.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 1e04a18..2c9f018 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -45,7 +45,7 @@ make %{?_smp_mflags} V=1 make install DESTDIR=%{buildroot} INSTALL='install -p' #Remove libtool archives. -find %{buildroot} -name '*.la' -exec rm -f {} ';' +find %{buildroot} -type f -name "*.la" -delete %post -p /sbin/ldconfig From 9382f76df0cc355c0c01842ae5b1895c3b3f3131 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 12:22:45 -0500 Subject: [PATCH 10/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 2c9f018..a34a1fd 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Jan 12 2014 Peter Robinson 0.5-1 - Update to 0.5 From 2382a3310d28cfaff3c039a21af4840773ea6c60 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 13 Jun 2014 19:27:00 +0100 Subject: [PATCH 11/37] 0.6 --- opusfile.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index a34a1fd..7d35833 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile -Version: 0.5 -Release: 2%{?dist} +Version: 0.6 +Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Fri Jun 13 2014 Peter Robinson 0.6-1 +- Update to 0.6 + * Sat Jun 07 2014 Fedora Release Engineering - 0.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild diff --git a/sources b/sources index 0606eab..ead2281 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6c96ae240ada27fafff423f96a8814cb opusfile-0.5.tar.gz +3d6705e66375f6205dffdd63b2ad3538 opusfile-0.6.tar.gz From 976b94bec410eeb504bdaf82956225c60d7434f3 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 14:17:04 +0000 Subject: [PATCH 12/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 7d35833..c1b83f2 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Fri Jun 13 2014 Peter Robinson 0.6-1 - Update to 0.6 From deb558da2b197dc932fb1f210d684be9d46c9a86 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 18 Jun 2015 00:24:31 +0000 Subject: [PATCH 13/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index c1b83f2..1eb0126 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Jun 18 2015 Fedora Release Engineering - 0.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Aug 17 2014 Fedora Release Engineering - 0.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From a97d04cd419900d843d11999511a36af300919b5 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 6 Jan 2016 02:04:17 +0000 Subject: [PATCH 14/37] 0.7 --- opusfile.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index 1eb0126..2dc96d7 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile -Version: 0.6 -Release: 3%{?dist} +Version: 0.7 +Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Wed Jan 6 2016 Peter Robinson 0.7-1 +- Update to 0.7 + * Thu Jun 18 2015 Fedora Release Engineering - 0.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index ead2281..58ff5a7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -3d6705e66375f6205dffdd63b2ad3538 opusfile-0.6.tar.gz +fb7d408a8b26508e93c37538d44cd574 opusfile-0.7.tar.gz From ed3cadfb3a52a7e303b983f57e4ce9a4773b6ede Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 11:41:00 +0000 Subject: [PATCH 15/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 2dc96d7..cf3ceae 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jan 6 2016 Peter Robinson 0.7-1 - Update to 0.7 From 6d3f52d40b004d8a4c155a637e88c83ee41c6c73 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 5 Oct 2016 11:45:12 +0100 Subject: [PATCH 16/37] 0.8 --- opusfile.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index cf3ceae..d9f2d85 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile -Version: 0.7 -Release: 2%{?dist} +Version: 0.8 +Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Wed Oct 5 2016 Peter Robinson 0.8-1 +- Update to 0.8 + * Thu Feb 04 2016 Fedora Release Engineering - 0.7-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index 58ff5a7..321105e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fb7d408a8b26508e93c37538d44cd574 opusfile-0.7.tar.gz +78ad26f75900dc8428d75e6e4256196d opusfile-0.8.tar.gz From 2564855e5f954c3b296f162f6bfbdc809a872001 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 01:01:50 +0000 Subject: [PATCH 17/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index d9f2d85..09509a5 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Oct 5 2016 Peter Robinson 0.8-1 - Update to 0.8 From fdae77b1fc1471c9f3763be38c8de3e6691819bb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 01:56:47 +0000 Subject: [PATCH 18/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 09509a5..32e8fc5 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 0.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 5d76df8d9d11aa2152fe1b2dc7031a9b71fb7b41 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 04:39:30 +0000 Subject: [PATCH 19/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 32e8fc5..746ff4f 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.8-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From f15c12b11f389ec7bccacbd507868aa6a5f59f72 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 3 Aug 2017 10:00:33 +0100 Subject: [PATCH 20/37] 0.9 --- opusfile.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index 746ff4f..164d9e0 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile -Version: 0.8 -Release: 4%{?dist} +Version: 0.9 +Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Aug 3 2017 Peter Robinson 0.9-1 +- Update to 0.9 + * Thu Aug 03 2017 Fedora Release Engineering - 0.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index 321105e..96d09c5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -78ad26f75900dc8428d75e6e4256196d opusfile-0.8.tar.gz +SHA512 (opusfile-0.9.tar.gz) = 9167b100ad4ea79af8bbe60ce710409b0cfd41b09d640a203a83a751c30eed0bd91b28cbf4d5fe3fcf41269881eb579300c5568fdd6f30208c6b84b429ad6632 From d3787aeaf2814769ab72d85a22a3a7585716911c Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Thu, 23 Nov 2017 16:26:58 +0000 Subject: [PATCH 21/37] 0.10 --- opusfile.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index 164d9e0..880c32f 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,5 +1,5 @@ Name: opusfile -Version: 0.9 +Version: 0.10 Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Nov 23 2017 Peter Robinson 0.10-1 +- Update to 0.10 + * Thu Aug 3 2017 Peter Robinson 0.9-1 - Update to 0.9 diff --git a/sources b/sources index 96d09c5..b36500c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (opusfile-0.9.tar.gz) = 9167b100ad4ea79af8bbe60ce710409b0cfd41b09d640a203a83a751c30eed0bd91b28cbf4d5fe3fcf41269881eb579300c5568fdd6f30208c6b84b429ad6632 +SHA512 (opusfile-0.10.tar.gz) = 302601c31ca28bff175cefa99ac16177122a786d043be229616e2c98b7ffaf4a96b8bb17ca16e31240325a92763f417315b54d8f1b2f4f63f445cb7ad43c4a37 From e8f7e98c83f0aae6afe09f48cad667838081223b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 8 Feb 2018 17:55:30 +0000 Subject: [PATCH 22/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 880c32f..8ad38ba 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files Group: System Environment/Libraries @@ -65,6 +65,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Feb 08 2018 Fedora Release Engineering - 0.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Nov 23 2017 Peter Robinson 0.10-1 - Update to 0.10 From 499de07bb37db7d32a157785d0325f545573fff7 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 9 Mar 2018 16:14:40 +0000 Subject: [PATCH 23/37] Add gcc BR, spec cleanups --- opusfile.spec | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index 8ad38ba..e83d66c 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,13 +1,12 @@ Name: opusfile Version: 0.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level API for decoding and seeking within .opus files - -Group: System Environment/Libraries License: BSD URL: http://www.opus-codec.org/ Source0: http://downloads.xiph.org/releases/opus/%{name}-%{version}.tar.gz +BuildRequires: gcc BuildRequires: libogg-devel BuildRequires: openssl-devel BuildRequires: opus-devel @@ -26,7 +25,6 @@ decoded with a single output format, even if the channel count changes). %package devel Summary: Development package for %{name} -Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig @@ -52,7 +50,8 @@ find %{buildroot} -type f -name "*.la" -delete %postun -p /sbin/ldconfig %files -%doc COPYING AUTHORS +%license COPYING +%doc AUTHORS %{_libdir}/libopusfile.so.* %{_libdir}/libopusurl.so.* @@ -65,6 +64,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Fri Mar 9 2018 Peter Robinson 0.10-3 +- Add gcc BR, spec cleanups + * Thu Feb 08 2018 Fedora Release Engineering - 0.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 44f9d126ae269e05866c8f9dfba319661bebb94a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 15:15:42 +0000 Subject: [PATCH 24/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index e83d66c..43d5468 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: http://www.opus-codec.org/ @@ -64,6 +64,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Mar 9 2018 Peter Robinson 0.10-3 - Add gcc BR, spec cleanups From ee9c510256f709749a3689869f23ae514e6f76db Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 19 Sep 2018 20:03:48 +0100 Subject: [PATCH 25/37] 0.11, use new rpm macros --- opusfile.spec | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index 43d5468..f5104f0 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile -Version: 0.10 -Release: 4%{?dist} +Version: 0.11 +Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: http://www.opus-codec.org/ @@ -37,17 +37,15 @@ Files for development with %{name}. %build %configure --disable-static -make %{?_smp_mflags} V=1 +%make_build %install -make install DESTDIR=%{buildroot} INSTALL='install -p' +%make_install #Remove libtool archives. find %{buildroot} -type f -name "*.la" -delete -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files %license COPYING @@ -64,6 +62,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Wed Sep 19 2018 Peter Robinson 0.11 +- Update to 0.11 + * Fri Jul 13 2018 Fedora Release Engineering - 0.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 0f02dbbf6dec4ccace00c3d6b07a9ba210873b37 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Wed, 19 Sep 2018 20:08:24 +0100 Subject: [PATCH 26/37] upload 0.11 --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index b36500c..c912325 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (opusfile-0.10.tar.gz) = 302601c31ca28bff175cefa99ac16177122a786d043be229616e2c98b7ffaf4a96b8bb17ca16e31240325a92763f417315b54d8f1b2f4f63f445cb7ad43c4a37 +SHA512 (opusfile-0.11.tar.gz) = ec3e282310cc4f25475c27b7bc8d1652dcb25d3ac6badf87bd1b4e5397fbe106a0dab81c60d88d198003a23d8a2c9bae8b661edc9b31433effeca438ce56a349 From 9d5291ca8ca004b7e4103673322fc68571ea534b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 17:37:46 +0000 Subject: [PATCH 27/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index f5104f0..c330f42 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.11 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: http://www.opus-codec.org/ @@ -62,6 +62,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Wed Sep 19 2018 Peter Robinson 0.11 - Update to 0.11 From b5969d8fcaca7876b9c3e985abec72c04dba429c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 23:41:39 +0000 Subject: [PATCH 28/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index c330f42..ea28a80 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.11 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: http://www.opus-codec.org/ @@ -62,6 +62,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.11-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 0.11-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From a12206f255047be89156f10b8e8570aca075a72b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 20:30:26 +0000 Subject: [PATCH 29/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index ea28a80..944405d 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.11 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: http://www.opus-codec.org/ @@ -62,6 +62,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 0.11-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 0.11-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From f76cc010a3c1d2cc740fd8db92ed5693a8f3c672 Mon Sep 17 00:00:00 2001 From: David King Date: Sun, 28 Jun 2020 07:34:36 +0100 Subject: [PATCH 30/37] Update to 0.12 --- opusfile.spec | 11 +++++++---- sources | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/opusfile.spec b/opusfile.spec index 944405d..6cd5dda 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,10 +1,10 @@ Name: opusfile -Version: 0.11 -Release: 4%{?dist} +Version: 0.12 +Release: 1%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD -URL: http://www.opus-codec.org/ -Source0: http://downloads.xiph.org/releases/opus/%{name}-%{version}.tar.gz +URL: https://www.opus-codec.org/ +Source0: https://downloads.xiph.org/releases/opus/%{name}-%{version}.tar.gz BuildRequires: gcc BuildRequires: libogg-devel @@ -62,6 +62,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Sun Jun 28 2020 David King - 0.12-1 +- Update to 0.12 + * Wed Jan 29 2020 Fedora Release Engineering - 0.11-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index c912325..bc2db33 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (opusfile-0.11.tar.gz) = ec3e282310cc4f25475c27b7bc8d1652dcb25d3ac6badf87bd1b4e5397fbe106a0dab81c60d88d198003a23d8a2c9bae8b661edc9b31433effeca438ce56a349 +SHA512 (opusfile-0.12.tar.gz) = e25e6968a3183ac0628ce1000840fd6f9f636e92ba984d6a72b76fb2a98ec632d2de4c66a8e4c05ef30655c2a4a13ab35f89606fa7d79a54cfa8506543ca57af From f749e162bde484ec43d6460c6042e4f5113ee768 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 12:53:03 +0000 Subject: [PATCH 31/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 6cd5dda..e8a90b3 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: https://www.opus-codec.org/ @@ -62,6 +62,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 0.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sun Jun 28 2020 David King - 0.12-1 - Update to 0.12 From 08ec79317282d36b02cd3e43adc774d9fd8bd2b3 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Thu, 7 Jan 2021 06:44:34 +0000 Subject: [PATCH 32/37] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- opusfile.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/opusfile.spec b/opusfile.spec index e8a90b3..89eec20 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -6,6 +6,7 @@ License: BSD URL: https://www.opus-codec.org/ Source0: https://downloads.xiph.org/releases/opus/%{name}-%{version}.tar.gz +BuildRequires: make BuildRequires: gcc BuildRequires: libogg-devel BuildRequires: openssl-devel From 1f2c1b16efd4632a1e9c579c83f4198479cc9a96 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 22:40:22 +0000 Subject: [PATCH 33/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 89eec20..8ea8f9c 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: https://www.opus-codec.org/ @@ -63,6 +63,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 0.12-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From b598b8bf86dbafd3d398580ba539cfe8384c00e9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 17:25:01 +0000 Subject: [PATCH 34/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 8ea8f9c..4bce38b 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: https://www.opus-codec.org/ @@ -63,6 +63,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.12-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From e56390fab57232028146999be90c28e95b21416f Mon Sep 17 00:00:00 2001 From: Sahana Prasad Date: Tue, 14 Sep 2021 19:10:19 +0200 Subject: [PATCH 35/37] Rebuilt with OpenSSL 3.0.0 --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 4bce38b..6dcff1d 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.12 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: https://www.opus-codec.org/ @@ -63,6 +63,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Tue Sep 14 2021 Sahana Prasad - 0.12-5 +- Rebuilt with OpenSSL 3.0.0 + * Thu Jul 22 2021 Fedora Release Engineering - 0.12-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From e064f5ac5f025bedec4841c3da296f1dbf26e9ed Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 22:33:54 +0000 Subject: [PATCH 36/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- opusfile.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opusfile.spec b/opusfile.spec index 6dcff1d..5c03e83 100644 --- a/opusfile.spec +++ b/opusfile.spec @@ -1,6 +1,6 @@ Name: opusfile Version: 0.12 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A high-level API for decoding and seeking within .opus files License: BSD URL: https://www.opus-codec.org/ @@ -63,6 +63,9 @@ find %{buildroot} -type f -name "*.la" -delete %{_libdir}/libopusurl.so %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.12-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Sep 14 2021 Sahana Prasad - 0.12-5 - Rebuilt with OpenSSL 3.0.0 From 421c463499c81a49bc0f7e1c67fd7659ad5e7fa6 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:37:42 +0300 Subject: [PATCH 37/37] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index bc2db33..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (opusfile-0.12.tar.gz) = e25e6968a3183ac0628ce1000840fd6f9f636e92ba984d6a72b76fb2a98ec632d2de4c66a8e4c05ef30655c2a4a13ab35f89606fa7d79a54cfa8506543ca57af