From cb08c989d2935367ce1d3f739a22d2de096fcd73 Mon Sep 17 00:00:00 2001 From: gordonwwang Date: Wed, 24 Jun 2026 09:09:13 +0800 Subject: [PATCH 1/2] Upgrade to version 3.14.1 --- aom.spec | 8 ++++++-- sources | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/aom.spec b/aom.spec index 657f859..c213eaa 100644 --- a/aom.spec +++ b/aom.spec @@ -7,8 +7,8 @@ Summary: Royalty-free next-generation video format Name: aom -Version: 3.9.0 -Release: 3%{?dist} +Version: 3.14.1 +Release: 1%{?dist} License: BSD-3-Clause URL: http://aomedia.org/ Source0: https://aomedia.googlesource.com/%{name}/+archive/v%{version}.tar.gz #/%{name}-v%{version}.tar.gz @@ -108,6 +108,10 @@ rm -rvf %{buildroot}%{_libdir}/libaom.a %changelog +* Wed Jun 24 2026 Upgrade Robot - 3.14.1-1 +- Upgrade to version 3.14.1 +- fix CVE-2026-56208, CVE-2026-56209 + * Tue Jun 03 2025 bbrucezhang - 3.9.0-3 - Rebuilt for loongarch64 diff --git a/sources b/sources index 6904c0c..a681c8e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (aom-v3.9.0.tar.gz) = 6588ad3e229586346fbf1d2da7bcf62597651e94b7b861351223851c23e871dc89a403ce75dfd85dde55e766e348c431941d641027e540192fb41fe087ad11ff +SHA512 (aom-v3.14.1.tar.gz) = d4da1ea64dddbf0253c32c828a3828b75c7ec3873126a6d1aab46cdee0154f506eafdb6845958af1032f9e16cac7491d336f3a6934b5847c0302bf0e3e275277 -- Gitee From 1ad5f2d0f94b44224515cee1f51962f680254b3c Mon Sep 17 00:00:00 2001 From: gordonwwang Date: Wed, 24 Jun 2026 09:40:42 +0800 Subject: [PATCH 2/2] Upgrade to version 3.14.1, fix CVE-2026-56208, CVE-2026-56209 --- aom.spec | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/aom.spec b/aom.spec index c213eaa..89c81e7 100644 --- a/aom.spec +++ b/aom.spec @@ -11,10 +11,10 @@ Version: 3.14.1 Release: 1%{?dist} License: BSD-3-Clause URL: http://aomedia.org/ -Source0: https://aomedia.googlesource.com/%{name}/+archive/v%{version}.tar.gz #/%{name}-v%{version}.tar.gz +Source0: https://aomedia.googlesource.com/%{name}/+archive/v%{version}.tar.gz#/%{name}-v%{version}.tar.gz -BuildRequires: gcc gcc-c++ cmake3 git doxygen yasm +BuildRequires: gcc gcc-c++ cmake git-core doxygen nasm BuildRequires: perl-interpreter perl(Getopt::Long) python3-devel %if %{with vmaf} BuildRequires: pkgconfig(libvmaf) @@ -56,16 +56,13 @@ Development files for aom, the royalty-free next-generation video format. %prep %autosetup -p1 -c %{name}-%{version} -sed -i 's|set(aom_version "")|set(aom_version "v%{version}")|' build/cmake/version.cmake +sed -i 's|set(aom_version "")|set(aom_version "v%{version}")|' cmake/version.cmake sed -i "s|GENERATE_LATEX = YES|GENERATE_LATEX = NO|" libs.doxy_template %build -%ifarch %{arm} -%global optflags %{__global_compiler_flags} -march=armv7-a -mfpu=neon -mtune=cortex-a8 -mabi=aapcs-linux -mfloat-abi=hard -%endif -%cmake3 -DENABLE_CCACHE=1 \ +%cmake -DENABLE_CCACHE=1 \ -DCMAKE_SKIP_RPATH=1 \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCONFIG_WEBM_IO=1 \ @@ -80,11 +77,11 @@ sed -i "s|GENERATE_LATEX = YES|GENERATE_LATEX = NO|" libs.doxy_t -DCONFIG_TUNE_BUTTERAUGLI=1 \ %endif %{nil} -%cmake3_build +%cmake_build %install -%cmake3_install +%cmake_install rm -rvf %{buildroot}%{_libdir}/libaom.a @@ -103,14 +100,15 @@ rm -rvf %{buildroot}%{_libdir}/libaom.a %files -n libaom-devel %doc %{_vpath_builddir}/docs/html/ %{_libdir}/libaom.so +%{_libdir}/cmake/AOM/ %{_libdir}/pkgconfig/%{name}.pc %{_includedir}/%{name} %changelog * Wed Jun 24 2026 Upgrade Robot - 3.14.1-1 -- Upgrade to version 3.14.1 -- fix CVE-2026-56208, CVE-2026-56209 +- [Type] security +- [DESC] Upgrade to version 3.14.1, fix CVE-2026-56208, CVE-2026-56209 * Tue Jun 03 2025 bbrucezhang - 3.9.0-3 - Rebuilt for loongarch64 -- Gitee