public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Richard Hughes <richard@hughsie.com>
To: git-commits@fedoraproject.org
Subject: [rpms/fwupd] main: New upstream release
Date: Fri, 29 May 2026 15:49:41 +0000	[thread overview]
Message-ID: <rpms-fwupd-fa450268bd20@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/fwupd
Branch : main
Commit : fa450268bd207834dc4c3fb73453fa3da572c57d
Author : Richard Hughes <richard@hughsie.com>
Date   : 2026-05-29T16:49:09+01:00
Stats  : +6/-34 in 3 file(s)
URL    : https://src.fedoraproject.org/rpms/fwupd/c/fa450268bd207834dc4c3fb73453fa3da572c57d?branch=main

Log:
New upstream release

---
diff --git a/.gitignore b/.gitignore
index 9f30bd1..055a34b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -154,3 +154,4 @@
 /fwupd-2.1.1.tar.xz
 /fwupd-2.1.2.tar.xz
 /fwupd-2.1.3.tar.xz
+/fwupd-2.1.4.tar.xz

diff --git a/fwupd.spec b/fwupd.spec
index 002819f..0ab2647 100644
--- a/fwupd.spec
+++ b/fwupd.spec
@@ -2,7 +2,6 @@
 %global libxmlb_version 0.3.24
 %global libusb_version 1.0.9
 %global libcurl_version 7.62.0
-%global libjcat_version 0.1.0
 %global systemd_version 249
 
 # although we ship a few tiny python files these are utilities that 99.99%
@@ -21,11 +20,6 @@
 %global have_uefi 1
 %endif
 
-# flashrom is only available on these arches
-%ifarch i686 x86_64 armv7hl aarch64 ppc64le riscv64
-%global have_flashrom 1
-%endif
-
 %ifarch i686 x86_64
 %global have_msr 1
 %endif
@@ -41,7 +35,7 @@
 
 Summary:   Firmware update daemon
 Name:      fwupd
-Version:   2.1.3
+Version:   2.1.4
 Release:   %autorelease
 License:   LGPL-2.1-or-later
 URL:       https://github.com/fwupd/fwupd
@@ -53,7 +47,6 @@ BuildRequires: glib2-devel >= %{glib2_version}
 BuildRequires: libxmlb-devel >= %{libxmlb_version}
 BuildRequires: libusb1-devel >= %{libusb_version}
 BuildRequires: libcurl-devel >= %{libcurl_version}
-BuildRequires: libjcat-devel >= %{libjcat_version}
 BuildRequires: polkit-devel >= 0.103
 BuildRequires: python3-packaging
 BuildRequires: python3-jinja2
@@ -78,9 +71,6 @@ BuildRequires: meson
 BuildRequires: vala
 BuildRequires: pkgconfig(bash-completion)
 BuildRequires: git-core
-%if 0%{?have_flashrom}
-BuildRequires: flashrom-devel >= 1.2-2
-%endif
 BuildRequires: libdrm-devel
 # For fu-polkit-test
 BuildRequires: polkit
@@ -113,6 +103,8 @@ Requires: shared-mime-info
 Obsoletes: dbxtool < 9
 Provides: dbxtool
 
+Obsoletes: %{name}-plugin-flashrom < 2.1.4
+
 # optional, but a really good idea
 Recommends: udisks2
 Recommends: bluez
@@ -124,9 +116,6 @@ Recommends: passim
 %if 0%{?have_modem_manager}
 Recommends: %{name}-plugin-modem-manager
 %endif
-%if 0%{?have_flashrom}
-Recommends: %{name}-plugin-flashrom
-%endif
 %if 0%{?have_uefi}
 Recommends: %{name}-efi
 Recommends: %{name}-plugin-uefi-capsule-data
@@ -161,16 +150,6 @@ This provides the optional package which is only required on hardware that
 might have mobile broadband hardware. It is probably not required on servers.
 %endif
 
-%if 0%{?have_flashrom}
-%package plugin-flashrom
-Summary: fwupd plugin using flashrom
-Requires: %{name}%{?_isa} = %{version}-%{release}
-
-%description plugin-flashrom
-This provides the optional package which is only required on hardware that
-can be flashed using flashrom. It is probably not required on servers.
-%endif
-
 %if 0%{?have_uefi}
 %package plugin-uefi-capsule-data
 Summary: Localized data for the UEFI UX capsule
@@ -196,11 +175,6 @@ or server machines.
 %else
     -Dtests=false \
 %endif
-%if 0%{?have_flashrom}
-    -Dplugin_flashrom=enabled \
-%else
-    -Dplugin_flashrom=disabled \
-%endif
 %if 0%{?have_modem_manager}
     -Dplugin_modem_manager=enabled \
 %else
@@ -270,6 +244,7 @@ systemctl --no-reload preset fwupd-refresh.timer &>/dev/null || :
 %{_sysconfdir}/fwupd/bios-settings.d/README.md
 %dir %{_sysconfdir}/fwupd/remotes.d
 %config(noreplace)%{_sysconfdir}/fwupd/remotes.d/lvfs.conf
+%config(noreplace)%{_sysconfdir}/fwupd/remotes.d/lvfs-embargo.conf
 %config(noreplace)%{_sysconfdir}/fwupd/remotes.d/lvfs-testing.conf
 %config(noreplace)%{_sysconfdir}/fwupd/remotes.d/vendor-directory.conf
 %config(noreplace)%{_sysconfdir}/pki/fwupd
@@ -327,10 +302,6 @@ systemctl --no-reload preset fwupd-refresh.timer &>/dev/null || :
 %files plugin-modem-manager
 %{_libdir}/fwupd-%{version}/libfu_plugin_modem_manager.so
 %endif
-%if 0%{?have_flashrom}
-%files plugin-flashrom
-%{_libdir}/fwupd-%{version}/libfu_plugin_flashrom.so
-%endif
 %if 0%{?have_uefi}
 %files plugin-uefi-capsule-data
 %{_datadir}/fwupd/uefi-capsule-ux.zip

diff --git a/sources b/sources
index 92d8fb5..98c5f19 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (fwupd-2.1.3.tar.xz) = 5a8a3dfd24991099b43669147f21b21e170b678576bdb16b5bc96a3176e7eb34c30e795230e1efc0603b50e0f28ef676439cf9f639e187996eb884994259db37
+SHA512 (fwupd-2.1.4.tar.xz) = 8aceddedb6ea4a6e45d0e7485a23563b99d2737e313ed55cc7588c73fb53e83a83387a00ef6177fd1c25a74e63a2ad27140f7698f1f540ae9476ee970785f166

             reply	other threads:[~2026-05-29 15:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-29 15:49 Richard Hughes [this message]
2026-06-10 15:32 [rpms/fwupd] main: New upstream release Richard Hughes

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=rpms-fwupd-fa450268bd20@fedoraproject.org \
    --to=richard@hughsie.com \
    --cc=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