From b186e7e9a00de35044fd8771c1267d455a63e563 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Sat, 17 Dec 2016 09:44:15 +0100 Subject: [PATCH 01/14] First import --- .gitignore | 1 + daala.spec | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 87 insertions(+) create mode 100644 daala.spec diff --git a/.gitignore b/.gitignore index e69de29..256273d 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/daala-4eddbab.tar.gz diff --git a/daala.spec b/daala.spec new file mode 100644 index 0000000..f86f970 --- /dev/null +++ b/daala.spec @@ -0,0 +1,85 @@ +%global commit0 4eddbab067fa434e2d3d96eb5c872ec8a2064468 +%global date 20161117 +%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) + +Name: daala +Version: 0 +Release: 2%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Summary: Daala video compression +License: BSD +URL: http://xiph.org/daala/ + +Source0: https://git.xiph.org/?p=%{name}.git;a=snapshot;h=%{commit0};sf=tgz#/%{name}-%{shortcommit0}.tar.gz + +BuildRequires: autoconf +BuildRequires: automake +# Not yet enabled in the docs makefile: +# BuildRequires: doxygen +BuildRequires: gcc-c++ +BuildRequires: libjpeg-devel +BuildRequires: libtool +BuildRequires: pkgconfig(check) >= 0.9.8 +BuildRequires: pkgconfig(libpng) +BuildRequires: pkgconfig(ogg) >= 1.3 +BuildRequires: pkgconfig(sdl2) +# Required for examples: +# BuildRequires: wxGTK-devel + +%description +A new video compression technology. The goal of the project is to provide a +video format that's free to implement, use and distribute, and a reference +implementation with technical performance superior to H.265. + +%package libs +Summary: Daala video codec libraries + +%description libs +A new video compression technology. The goal of the project is to provide a +video format that's free to implement, use and distribute, and a reference +implementation with technical performance superior to H.265. + +%package devel +Summary: Development files for the Daala video codec libraries +Requires: %{name}-libs%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for developing +applications that use %{name}. + +%prep +%setup -q -n %{name}-%{shortcommit0} + +%build +autoreconf -vif +%configure --disable-static +%make_build + +%install +%make_install +find %{buildroot} -name "*.la" -delete + +# Let rpm pick up the docs in the files section +rm -fr %{buildroot}/%{_datadir} + +%post libs -p /sbin/ldconfig + +%postun libs -p /sbin/ldconfig + +%files libs +%license COPYING +%doc AUTHORS +%{_libdir}/*.so.* + +%files devel +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc +%{_includedir}/%{name}/ + +%changelog +* Fri Nov 25 2016 Simone Caronni - 0-2.20161117git4eddbab +- Update to latest snapshot. +- Use make_build macro, license macro. + +* Fri Nov 18 2016 Simone Caronni - 0-1.20161114git4403315 +- First build. + diff --git a/sources b/sources index e69de29..2b84aaf 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (daala-4eddbab.tar.gz) = aaa7dee11633285aebf517e1a79283800653a4528f5b82768a4295eb5bf4a04a68295ed5e3aa9fe0b174381989bf16f3beab57a81c7e3ba93914f520978cdde0 From 2a7bc076af789adaeb2f8219ff748427254eebbc Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Sat, 17 Dec 2016 11:13:00 +0100 Subject: [PATCH 02/14] Update to latest snapshot, add docs and enable building of tools --- daala.spec | 84 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 73 insertions(+), 11 deletions(-) diff --git a/daala.spec b/daala.spec index f86f970..9ec309f 100644 --- a/daala.spec +++ b/daala.spec @@ -1,10 +1,10 @@ -%global commit0 4eddbab067fa434e2d3d96eb5c872ec8a2064468 -%global date 20161117 +%global commit0 28de40bfcd84e7df3fbd64de7b89dd7fd889bb27 +%global date 20161216 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) Name: daala Version: 0 -Release: 2%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 3%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -13,8 +13,7 @@ Source0: https://git.xiph.org/?p=%{name}.git;a=snapshot;h=%{commit0};sf=tgz#/ BuildRequires: autoconf BuildRequires: automake -# Not yet enabled in the docs makefile: -# BuildRequires: doxygen +BuildRequires: doxygen BuildRequires: gcc-c++ BuildRequires: libjpeg-devel BuildRequires: libtool @@ -22,15 +21,14 @@ BuildRequires: pkgconfig(check) >= 0.9.8 BuildRequires: pkgconfig(libpng) BuildRequires: pkgconfig(ogg) >= 1.3 BuildRequires: pkgconfig(sdl2) -# Required for examples: -# BuildRequires: wxGTK-devel +BuildRequires: wxGTK-devel %description A new video compression technology. The goal of the project is to provide a video format that's free to implement, use and distribute, and a reference implementation with technical performance superior to H.265. -%package libs +%package libs Summary: Daala video codec libraries %description libs @@ -38,7 +36,7 @@ A new video compression technology. The goal of the project is to provide a video format that's free to implement, use and distribute, and a reference implementation with technical performance superior to H.265. -%package devel +%package devel Summary: Development files for the Daala video codec libraries Requires: %{name}-libs%{?_isa} = %{version}-%{release} @@ -46,20 +44,75 @@ Requires: %{name}-libs%{?_isa} = %{version}-%{release} The %{name}-devel package contains libraries and header files for developing applications that use %{name}. +%package tools +Summary: Daala video codec tools + +%description tools +A new video compression technology. The goal of the project is to provide a +video format that's free to implement, use and distribute, and a reference +implementation with technical performance superior to H.265. + +The %{name}-tools package contains a test player and encoder plus programs for +testing %{name} support in your applications. + %prep %setup -q -n %{name}-%{shortcommit0} %build autoreconf -vif -%configure --disable-static +%configure \ + --disable-static \ + --enable-analyzer \ + --enable-float-pvq + %make_build +%make_build tools %install %make_install find %{buildroot} -name "*.la" -delete +# Install tools (list from tools_TARGETS in Makefile.am) +mkdir -p %{buildroot}%{_bindir} +install -m 755 -p \ + tools/png2y4m \ + tools/y4m2png \ + tools/dump_psnrhvs \ + tools/block_size_analysis \ + tools/to_monochrome \ + tools/downsample \ + tools/upsample \ + tools/divu_const \ + tools/trans \ + tools/trans2d \ + tools/trans_gain \ + tools/gen_cdf \ + tools/gen_sqrt_tbl \ + tools/compute_basis \ + tools/compute_haar_basis \ + tools/cos_search \ + tools/gen_laplace_tables \ + tools/daalainfo \ + tools/dump_ssim \ + tools/dump_fastssim \ + tools/bjontegaard \ + tools/yuvjpeg \ + tools/jpegyuv \ + tools/yuv2yuv4mpeg \ + tools/dump_psnr \ + tools/vq_train \ + tools/draw_zigzags \ + tools/dump_msssim \ + tools/y4m2yuv \ + %{buildroot}%{_bindir}/ + # Let rpm pick up the docs in the files section -rm -fr %{buildroot}/%{_datadir} +rm -fr %{buildroot}/%{_docdir} + +# Install man pages +mkdir -p %{buildroot}/%{_mandir} +cp -fr doc/man/man3/ %{buildroot}/%{_mandir} +rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %post libs -p /sbin/ldconfig @@ -71,11 +124,20 @@ rm -fr %{buildroot}/%{_datadir} %{_libdir}/*.so.* %files devel +%doc doc/html %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc %{_includedir}/%{name}/ +%{_mandir}/man3/* + +%files tools +%{_bindir}/* %changelog +* Sat Dec 17 2016 Simone Caronni - 0-3.20161216git28de40b +- Update to latest snapshot. +- Add docs and enable building of tools. + * Fri Nov 25 2016 Simone Caronni - 0-2.20161117git4eddbab - Update to latest snapshot. - Use make_build macro, license macro. From 3bb45b13681a1f0f3d0853bd2d2536fc40f5e6d6 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Sat, 17 Dec 2016 11:15:27 +0100 Subject: [PATCH 03/14] Add updated sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 256273d..319998f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /daala-4eddbab.tar.gz +/daala-28de40b.tar.gz diff --git a/sources b/sources index 2b84aaf..9971560 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (daala-4eddbab.tar.gz) = aaa7dee11633285aebf517e1a79283800653a4528f5b82768a4295eb5bf4a04a68295ed5e3aa9fe0b174381989bf16f3beab57a81c7e3ba93914f520978cdde0 +SHA512 (daala-28de40b.tar.gz) = 575366f37d12e4146a1bac649aee4f70a19d375a84fe1a7343ec367fb553e2a34746a3c208a87201f9cb5da995b7ea6afeb256df5efd568af0be88160fdfe1c7 From bdfcfc13c2850ce5d94266c2bdad077b1850bd7d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 08:08:24 +0000 Subject: [PATCH 04/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- daala.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daala.spec b/daala.spec index 9ec309f..cd73ff6 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 3%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 4%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -134,6 +134,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0-4.20161216git28de40b +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Sat Dec 17 2016 Simone Caronni - 0-3.20161216git28de40b - Update to latest snapshot. - Add docs and enable building of tools. From ff5399ccf03c138f9c9e19fdf08fdc63b9ab8d65 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Tue, 11 Apr 2017 09:00:05 +0200 Subject: [PATCH 05/14] Update to latest snapshots --- .gitignore | 1 + daala.spec | 62 ++++++++++++++++++++++++++++++++---------------------- sources | 2 +- 3 files changed, 39 insertions(+), 26 deletions(-) diff --git a/.gitignore b/.gitignore index 319998f..6e177d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /daala-4eddbab.tar.gz /daala-28de40b.tar.gz +/daala-ee07b32.tar.gz diff --git a/daala.spec b/daala.spec index cd73ff6..a53b23b 100644 --- a/daala.spec +++ b/daala.spec @@ -1,10 +1,10 @@ -%global commit0 28de40bfcd84e7df3fbd64de7b89dd7fd889bb27 -%global date 20161216 +%global commit0 ee07b323a4d44cee6a068c93e49b75d7bcd28785 +%global date 20170324 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) Name: daala Version: 0 -Release: 4%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 5%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -61,9 +61,11 @@ testing %{name} support in your applications. %build autoreconf -vif %configure \ + --disable-silent-rules \ --disable-static \ --enable-analyzer \ - --enable-float-pvq + --enable-float-pvq \ + --enable-tools %make_build %make_build tools @@ -75,35 +77,35 @@ find %{buildroot} -name "*.la" -delete # Install tools (list from tools_TARGETS in Makefile.am) mkdir -p %{buildroot}%{_bindir} install -m 755 -p \ - tools/png2y4m \ - tools/y4m2png \ - tools/dump_psnrhvs \ + tools/bjontegaard \ tools/block_size_analysis \ - tools/to_monochrome \ - tools/downsample \ - tools/upsample \ - tools/divu_const \ - tools/trans \ - tools/trans2d \ - tools/trans_gain \ - tools/gen_cdf \ - tools/gen_sqrt_tbl \ tools/compute_basis \ tools/compute_haar_basis \ tools/cos_search \ - tools/gen_laplace_tables \ - tools/daalainfo \ - tools/dump_ssim \ + tools/divu_const \ + tools/downsample \ + tools/draw_zigzags \ tools/dump_fastssim \ - tools/bjontegaard \ - tools/yuvjpeg \ - tools/jpegyuv \ - tools/yuv2yuv4mpeg \ + tools/dump_msssim \ tools/dump_psnr \ + tools/dump_psnrhvs \ + tools/dump_ssim \ + tools/gen_cdf \ + tools/gen_laplace_tables \ + tools/gen_sqrt_tbl \ + tools/jpegyuv \ + tools/.libs/daalainfo \ + tools/png2y4m \ + tools/to_monochrome \ + tools/trans \ + tools/trans2d \ + tools/trans_gain \ + tools/upsample \ tools/vq_train \ - tools/draw_zigzags \ - tools/dump_msssim \ + tools/y4m2png \ tools/y4m2yuv \ + tools/yuv2yuv4mpeg \ + tools/yuvjpeg \ %{buildroot}%{_bindir}/ # Let rpm pick up the docs in the files section @@ -114,6 +116,10 @@ mkdir -p %{buildroot}/%{_mandir} cp -fr doc/man/man3/ %{buildroot}/%{_mandir} rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 +%check +# Tests are incredibly long, disable for now +#make V=0 check + %post libs -p /sbin/ldconfig %postun libs -p /sbin/ldconfig @@ -134,6 +140,12 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Thu Mar 30 2017 Simone Caronni - 0-5.20170324gitee07b32 +- Update to latest snapshot. +- Make build verbose. +- Add tests, disable them for now as they are incredibly long (30 minutes). +- Fix daalainfo. + * Fri Feb 10 2017 Fedora Release Engineering - 0-4.20161216git28de40b - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 9971560..a72a5bc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (daala-28de40b.tar.gz) = 575366f37d12e4146a1bac649aee4f70a19d375a84fe1a7343ec367fb553e2a34746a3c208a87201f9cb5da995b7ea6afeb256df5efd568af0be88160fdfe1c7 +SHA512 (daala-ee07b32.tar.gz) = 51ef20e17c9fb24199489815fa440ebcce6d7724815f9c38cc8001301e81c42b95f5b0b697f831a0877a5d3198a4fdaaf0756510f0d04ed527ebac791f86bb0f From d3a484a75be4003a739215b218c5b77047bacdbf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 05:54:12 +0000 Subject: [PATCH 06/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- daala.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daala.spec b/daala.spec index a53b23b..bdc2fc0 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 5%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 6%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -140,6 +140,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0-6.20170324gitee07b32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Thu Mar 30 2017 Simone Caronni - 0-5.20170324gitee07b32 - Update to latest snapshot. - Make build verbose. From f5436937dc50e47dcceff9595d251fbfb34cc511 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 19:25:22 +0000 Subject: [PATCH 07/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- daala.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daala.spec b/daala.spec index bdc2fc0..ec76fd9 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 6%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 7%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -140,6 +140,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 0-7.20170324gitee07b32 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0-6.20170324gitee07b32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From b2199862bb5ce451587bcc7666d5b99c9c23bcd7 Mon Sep 17 00:00:00 2001 From: Simone Caronni Date: Mon, 11 Sep 2017 15:13:34 +0200 Subject: [PATCH 08/14] Update to latest snapshot --- .gitignore | 1 + daala.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 6e177d4..618612e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /daala-4eddbab.tar.gz /daala-28de40b.tar.gz /daala-ee07b32.tar.gz +/daala-7278368.tar.gz diff --git a/daala.spec b/daala.spec index ec76fd9..e6b5ccc 100644 --- a/daala.spec +++ b/daala.spec @@ -1,10 +1,10 @@ -%global commit0 ee07b323a4d44cee6a068c93e49b75d7bcd28785 -%global date 20170324 +%global commit0 72783687ce4963478b8ab4d97809510f40c7c855 +%global date 20170616 %global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) Name: daala Version: 0 -Release: 7%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 8%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -140,6 +140,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Mon Sep 11 2017 Simone Caronni - 0-8.20170616git7278368 +- Update to latest snapshot. + * Wed Aug 02 2017 Fedora Release Engineering - 0-7.20170324gitee07b32 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index a72a5bc..efc96d4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (daala-ee07b32.tar.gz) = 51ef20e17c9fb24199489815fa440ebcce6d7724815f9c38cc8001301e81c42b95f5b0b697f831a0877a5d3198a4fdaaf0756510f0d04ed527ebac791f86bb0f +SHA512 (daala-7278368.tar.gz) = 454d8dc9d09eb9e59e89faf5ef802797d399c448a00d33424a357ed20edad7b3dbe8c91c001d185a0a2406e442d78456e9fad363653aec9f9f0303eac2aec49a From c19d106e63b1c0b4d443552b0ad1855026f80c24 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 06:16:30 +0000 Subject: [PATCH 09/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- daala.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daala.spec b/daala.spec index e6b5ccc..135f85f 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 8%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 9%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -140,6 +140,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0-9.20170616git7278368 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Mon Sep 11 2017 Simone Caronni - 0-8.20170616git7278368 - Update to latest snapshot. From 3148594c2a89557217d3b5259c2d9dfc8ef5e32e Mon Sep 17 00:00:00 2001 From: Scott Talbert Date: Tue, 3 Jul 2018 23:11:09 -0400 Subject: [PATCH 10/14] Rebuild with wxWidgets 3.0 --- daala.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/daala.spec b/daala.spec index 135f85f..9848ce6 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 9%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 10%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -21,7 +21,7 @@ BuildRequires: pkgconfig(check) >= 0.9.8 BuildRequires: pkgconfig(libpng) BuildRequires: pkgconfig(ogg) >= 1.3 BuildRequires: pkgconfig(sdl2) -BuildRequires: wxGTK-devel +BuildRequires: wxGTK3-devel %description A new video compression technology. The goal of the project is to provide a @@ -140,6 +140,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Wed Jul 04 2018 Scott Talbert - 0-10.20170616git7278368 +- Rebuild with wxWidgets 3.0 + * Wed Feb 07 2018 Fedora Release Engineering - 0-9.20170616git7278368 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 845ef09f8d150833c24f63a6811d0813a8dcdaa1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 22:32:31 +0000 Subject: [PATCH 11/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- daala.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daala.spec b/daala.spec index 9848ce6..96eb394 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 10%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 11%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -140,6 +140,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 0-11.20170616git7278368 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Jul 04 2018 Scott Talbert - 0-10.20170616git7278368 - Rebuild with wxWidgets 3.0 From a5d5083877475b72e9f0f9afd6e836b7a80fe5fb Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:38:46 +0100 Subject: [PATCH 12/14] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- daala.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/daala.spec b/daala.spec index 96eb394..d76b4d8 100644 --- a/daala.spec +++ b/daala.spec @@ -120,9 +120,7 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 # Tests are incredibly long, disable for now #make V=0 check -%post libs -p /sbin/ldconfig - -%postun libs -p /sbin/ldconfig +%ldconfig_scriptlets libs %files libs %license COPYING From 099b0d22bc6c5f4252708732033a061ba0085c46 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 16:43:55 +0000 Subject: [PATCH 13/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- daala.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daala.spec b/daala.spec index d76b4d8..d089bab 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 11%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 12%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -138,6 +138,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0-12.20170616git7278368 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Jul 12 2018 Fedora Release Engineering - 0-11.20170616git7278368 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 5ea2b3f4f5ea781428187f00386c9b38ab9d43c8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 21:28:20 +0000 Subject: [PATCH 14/14] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- daala.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/daala.spec b/daala.spec index d089bab..374a7eb 100644 --- a/daala.spec +++ b/daala.spec @@ -4,7 +4,7 @@ Name: daala Version: 0 -Release: 12%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} +Release: 13%{?shortcommit0:.%{date}git%{shortcommit0}}%{?dist} Summary: Daala video compression License: BSD URL: http://xiph.org/daala/ @@ -138,6 +138,9 @@ rm -f %{buildroot}/%{_mandir}/man3/_*_include_daala_.3 %{_bindir}/* %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 0-13.20170616git7278368 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jan 31 2019 Fedora Release Engineering - 0-12.20170616git7278368 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild