Compare commits

..

6 commits

Author SHA1 Message Date
Robert-André Mauchin
1774bd45e8 Fix spec 2021-11-22 20:01:22 +01:00
Robert-André Mauchin
8787477146 Merge branch 'rawhide' into f34 2021-11-22 19:51:42 +01:00
Björn Esser
24232ad46e
Rebuild (jpegxl) 2021-11-21 23:24:52 +01:00
Robert-André Mauchin
9b2a3361e3 Unbootstrap 2021-06-13 16:49:14 +02:00
Robert-André Mauchin
8a0bda1e20 Adjust bootstrap 2021-06-13 15:21:40 +02:00
Robert-André Mauchin
fcfdada6b0 Bootstrap 2021-06-13 14:55:11 +02:00
5 changed files with 21 additions and 117 deletions

15
.gitignore vendored
View file

@ -8,18 +8,3 @@
/aom-7fadc0e.tar.gz
/aom-ae2be80.tar.gz
/aom-287164d.tar.gz
/aom-f9babb6.tar.gz
/aom-87460ce.tar.gz
/aom-fc430c5.tar.gz
/aom-3.5.0.tar.gz
/aom-3.6.0.tar.gz
/aom-3.6.1.tar.gz
/aom-3.7.0.tar.gz
/aom-3.7.1.tar.gz
/aom-3.8.0.tar.gz
/aom-3.8.2.tar.gz
/aom-3.9.0.tar.gz
/aom-3.11.0.tar.gz
/aom-3.12.0.tar.gz
/aom-3.13.0.tar.gz
/aom-3.13.1.tar.gz

View file

@ -1,41 +0,0 @@
From 6d2b7f71b98bfa28e372b1f2d85f137280bdb3de Mon Sep 17 00:00:00 2001
From: James Zern <jzern@google.com>
Date: Tue, 7 Oct 2025 14:08:44 -0700
Subject: [PATCH] cmake: fix nasm detection w/3.0
nasm 3.0 separated Oflags (-Ox) output to `-hO` which is used to
validate the nasm binary. This change is compatible with older versions
(tested with NASM version 2.16.03 & 2.13.02).
Bug: aomedia:448994065
Fixed: aomedia:448994065
Change-Id: I704dcfe39ac6e68bc4d5b9e409fb59a0d277170e
---
build/cmake/aom_optimization.cmake | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/build/cmake/aom_optimization.cmake b/build/cmake/aom_optimization.cmake
index 9cc34de362..2750a0be41 100644
--- a/build/cmake/aom_optimization.cmake
+++ b/build/cmake/aom_optimization.cmake
@@ -212,7 +212,7 @@ endfunction()
# Currently checks only for presence of required object formats and support for
# the -Ox argument (multipass optimization).
function(test_nasm)
- execute_process(COMMAND ${CMAKE_ASM_NASM_COMPILER} -hf
+ execute_process(COMMAND ${CMAKE_ASM_NASM_COMPILER} -hO
OUTPUT_VARIABLE nasm_helptext)
if(NOT "${nasm_helptext}" MATCHES "-Ox")
@@ -220,6 +220,8 @@ function(test_nasm)
FATAL_ERROR "Unsupported nasm: multipass optimization not supported.")
endif()
+ execute_process(COMMAND ${CMAKE_ASM_NASM_COMPILER} -hf
+ OUTPUT_VARIABLE nasm_helptext)
if("${AOM_TARGET_CPU}" STREQUAL "x86")
if("${AOM_TARGET_SYSTEM}" STREQUAL "Darwin")
if(NOT "${nasm_helptext}" MATCHES "macho32")
--
2.51.0

View file

@ -1,29 +0,0 @@
diff -up aom-3.13.1/build/cmake/aom_install.cmake.orig aom-3.13.1/build/cmake/aom_install.cmake
--- aom-3.13.1/build/cmake/aom_install.cmake.orig 2025-09-07 16:11:27.789000000 +0200
+++ aom-3.13.1/build/cmake/aom_install.cmake 2025-12-30 21:08:54.594005985 +0100
@@ -79,7 +79,7 @@ macro(setup_aom_install_targets)
endif()
if(BUILD_SHARED_LIBS)
- set(AOM_INSTALL_LIBS aom aom_static)
+ set(AOM_INSTALL_LIBS aom)
else()
set(AOM_INSTALL_LIBS aom)
endif()
diff -up aom-3.13.1/build/cmake/config.cmake.in.orig aom-3.13.1/build/cmake/config.cmake.in
--- aom-3.13.1/build/cmake/config.cmake.in.orig 2025-09-07 16:11:27.791000000 +0200
+++ aom-3.13.1/build/cmake/config.cmake.in 2026-01-05 15:35:24.588489147 +0100
@@ -10,13 +10,6 @@ include("${CMAKE_CURRENT_LIST_DIR}/@AOM_
set_and_check(@PROJECT_NAME@_INCLUDE_DIRS "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
-# @PROJECT_NAME@::aom_static is defined only if BUILD_SHARED_LIBS=1 when libaom
-# was configured. When it is false, @PROJECT_NAME@::aom is a static library.
-if(TARGET @PROJECT_NAME@::aom_static)
- set(@PROJECT_NAME@_STATIC_LIBRARIES "@PROJECT_NAME@::aom_static")
-else()
- set(@PROJECT_NAME@_STATIC_LIBRARIES "@PROJECT_NAME@::aom")
-endif()
set(@PROJECT_NAME@_LIBRARIES "@PROJECT_NAME@::aom")
check_required_components(@PROJECT_NAME@)

View file

@ -1,29 +1,27 @@
%global sover 3
%global aom_version v3.13.1
# git describe
%global aom_version v3.2.0
%if 0%{?fedora} || 0%{?rhel} >= 9
# Use commit with updated changelog for correct versioning
%global commit 287164de79516c25c8c84fd544f67752c170082a
%global shortcommit %(c=%{commit}; echo ${c:0:7})
%global snapshotdate 20211013
%if 0%{?fedora}
%ifarch x86_64
%bcond_without vmaf
%endif
%if 0%{?fedora} > 40 || 0%{?rhel} > 9
%bcond_with jpegxl
%else
%bcond_without jpegxl
%endif
%endif
Name: aom
Version: 3.13.1
Version: 3.2.0
Release: %autorelease
Summary: Royalty-free next-generation video format
License: BSD-3-Clause
License: BSD
URL: http://aomedia.org/
Source: https://aomedia.googlesource.com/%{name}/+archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
# https://aomedia.issues.chromium.org/issues/448994065
Patch: 0001-cmake-fix-nasm-detection-w-3.0.patch
# Building static library breaks .cmake files if we don't ship it, so drop it
Patch: aom-nostatic.patch
Source0: https://aomedia.googlesource.com/%{name}/+archive/%{commit}.tar.gz#/%{name}-%{shortcommit}.tar.gz
BuildRequires: gcc-c++
BuildRequires: gcc
@ -34,7 +32,7 @@ BuildRequires: git-core
BuildRequires: perl-interpreter
BuildRequires: perl(Getopt::Long)
BuildRequires: python3-devel
BuildRequires: nasm
BuildRequires: yasm
%if %{with jpegxl}
BuildRequires: pkgconfig(libjxl)
BuildRequires: pkgconfig(libhwy)
@ -69,30 +67,22 @@ video format.
%package -n libaom-devel
Summary: Development files for aom
# cmake files assume /usr/bin/aomdec is present
Requires: aom%{?_isa} = %{version}-%{release}
Requires: libaom%{?_isa} = %{version}-%{release}
%description -n libaom-devel
Development files for aom, the royalty-free next-generation
video format.
%package -n libaom-devel-docs
Summary: Documentation for libaom
Requires: libaom-devel%{?_isa} = %{version}-%{release}
%description -n libaom-devel-docs
Documentation for libaom, the royalty-free next-generation
video format.
%prep
%autosetup -p1 -c %{name}-%{version}
%autosetup -p1 -c %{name}-%{commit}
# Set GIT revision in version
sed -i 's@set(aom_version "")@set(aom_version "%{aom_version}")@' build/cmake/version.cmake
# Disable PDF generation which is buggy
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 \
-DCMAKE_SKIP_RPATH=1 \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
@ -112,6 +102,7 @@ sed -i "s@GENERATE_LATEX = YES@GENERATE_LATEX = NO@" libs.doxy_t
%install
%cmake3_install
rm -rvf %{buildroot}%{_libdir}/libaom.a
%files
%doc AUTHORS CHANGELOG README.md
@ -124,13 +115,10 @@ sed -i "s@GENERATE_LATEX = YES@GENERATE_LATEX = NO@" libs.doxy_t
%{_libdir}/libaom.so.%{sover}*
%files -n libaom-devel
%doc %{_vpath_builddir}/docs/html/
%{_includedir}/%{name}
%{_libdir}/libaom.so
%{_libdir}/cmake/AOM/
%{_libdir}/pkgconfig/%{name}.pc
%files -n libaom-devel-docs
%doc %{_vpath_builddir}/docs/html/
%changelog
%autochangelog

View file

@ -1 +1,2 @@
SHA512 (aom-3.13.1.tar.gz) = 20cdde0fc4304ba0056e4dac55838587a3671112ec74274f8dcb1588549a524ed9a8e702d1f068c46833dfb93f565eb5a03ab610b0222a6f137d3cd8a8866de7
SHA512 (aom-287164d.tar.gz) = f4681f2ec0292baa8862992c9dd875e17189de3880275745fdd2a6bc8ec3130701beb60036c3f7f23d0241cb89dec04af791b220c032a2d23a397e0854e47d39
SHA512 (aom-ae2be80.tar.gz) = f8bebe9e23bee99c2c76093bd6ee2c0eb2d99420aa768bb87820051fa6990ee392a29e36c837252bfa2811c21d6e97a72245820bc182ca9398e23a2316d9d682