public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/libavif] epel9-next: Update to 1.1.1
Date: Mon, 20 Jul 2026 16:38:02 GMT	[thread overview]
Message-ID: <178456548279.1.7968102200854639270.rpms-libavif-96d998e7bf26@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : rpms/libavif
            Branch : epel9-next
            Commit : 96d998e7bf26d30ac7beaae75ff3307d486d25e7
            Author : Robert-André Mauchin <zebob.m@gmail.com>
            Date   : 2025-02-08T11:03:37+01:00
            Stats  : +20/-24 in 2 file(s)
            URL    : https://src.fedoraproject.org/rpms/libavif/c/96d998e7bf26d30ac7beaae75ff3307d486d25e7?branch=epel9-next

            Log:
            Update to 1.1.1

Close: rhbz#2297932

---
diff --git a/libavif.spec b/libavif.spec
index 34a73d1..a6c0b9b 100644
--- a/libavif.spec
+++ b/libavif.spec
@@ -1,54 +1,50 @@
 # Break dependency cycles by disabling certain optional dependencies.
-%bcond_with bootstrap
+%bcond bootstrap 0
 
 # Break aom dependency cycle:
 #   vmaf → aom → avif
 %if %{with bootstrap}
 # Build without aom
-%bcond_with aom
+%bcond aom 0
 # Build without SVT-AV1
-%bcond_with svt
+%bcond svt 0
 %else
 # Build with aom
-%bcond_without aom
+%bcond aom 1
 # Build SVT-AV1
-%bcond_without svt
+%bcond svt 1
 %endif
 
 %if (0%{?rhel} && 0%{?rhel} < 9) || 0%{?rhel} >= 10
-%bcond_with rav1e
+%bcond rav1e 0
 %else
-%bcond_without rav1e
+%bcond rav1e 1
 %endif
 %if 0%{?rhel} >= 10
-%bcond_with gtest
+%bcond gtest 0
 %else
-%bcond_without gtest
+%bcond gtest 1
 %endif
-%bcond_without check
+%bcond check 1
 
 Name:           libavif
-Version:        1.0.4
+Version:        1.1.1
 Release:        %autorelease
 Summary:        Library for encoding and decoding .avif files
 
 License:        BSD-2-Clause
 URL:            https://github.com/AOMediaCodec/libavif
-Source0:        %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
-
-# Encode alpha as 4:2:0 with SVT. Fix build with SVT-AV1 2.0.0
-Patch0:         https://github.com/AOMediaCodec/libavif/commit/b10d2697e9ed2fb09cb722335ff4342c353612b8.patch
+Source:         %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
 
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 %{?with_check:%{?with_gtest:BuildRequires:  gtest-devel}}
 BuildRequires:  nasm
-%if %{with aom}
-BuildRequires:  pkgconfig(aom)
-%endif
+%{?with_aom:BuildRequires:  pkgconfig(aom)}
 BuildRequires:  pkgconfig(dav1d)
 BuildRequires:  pkgconfig(libjpeg)
 BuildRequires:  pkgconfig(libpng)
+BuildRequires:  pkgconfig(libyuv)
 %{?with_rav1e:BuildRequires:  pkgconfig(rav1e)}
 %{?with_svt:BuildRequires:  pkgconfig(SvtAv1Enc)}
 BuildRequires:  pkgconfig(zlib)
@@ -91,13 +87,13 @@ Avif-pixbuf-loader contains a plugin to load AVIF images in GTK+ applications.
 %build
 %cmake \
     -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-    %{?with_aom:-DAVIF_CODEC_AOM=1} \
-    -DAVIF_CODEC_DAV1D=1 \
-    %{?with_rav1e:-DAVIF_CODEC_RAV1E=1} \
-    %{?with_svt:-DAVIF_CODEC_SVT=1} \
+    %{?with_aom:-DAVIF_CODEC_AOM=SYSTEM} \
+    -DAVIF_CODEC_DAV1D=SYSTEM \
+    %{?with_rav1e:-DAVIF_CODEC_RAV1E=SYSTEM} \
+    %{?with_svt:-DAVIF_CODEC_SVT=SYSTEM} \
     -DAVIF_BUILD_APPS=1 \
     -DAVIF_BUILD_GDK_PIXBUF=1 \
-    %{?with_check:-DAVIF_BUILD_TESTS=1 -DAVIF_ENABLE_GTEST=%{with gtest}}
+    %{?with_check:-DAVIF_BUILD_TESTS=1 %{?with_gtest:-DAVIF_GTEST=SYSTEM}}
 %cmake_build
 
 %install

diff --git a/sources b/sources
index 6d11799..233e401 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (libavif-1.0.4.tar.gz) = 37f0de757180c6414778e688006940395960b316c25192d6beb97a07942aff4bd3b712dec2eff52cd26f5d72c352731442175dfeb90e2e1381133539760142b0
+SHA512 (libavif-1.1.1.tar.gz) = ba72b8d02b098f361643a073361fccafd22eaac14e46dd06378d5e7acd9853538c5d166473e1de0b020de62dac25be83e42bd57ba51f675d11e2ddf155fbfa21

                 reply	other threads:[~2026-07-20 16:38 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178456548279.1.7968102200854639270.rpms-libavif-96d998e7bf26@fedoraproject.org \
    --to=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox