From a87cedeca729856499ba5d38bbe187d6e16a7c0b Mon Sep 17 00:00:00 2001 From: duyiwei Date: Tue, 23 Aug 2022 10:14:54 +0800 Subject: [PATCH] Remove the python installation dependency of fwupd --- fwupd.spec | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/fwupd.spec b/fwupd.spec index 8dedc03..3d6c18a 100644 --- a/fwupd.spec +++ b/fwupd.spec @@ -3,13 +3,17 @@ %bcond_without libsmbios %endif +# although we ship a few tiny python files these are utilities that 99.99% +# of users do not need -- use this to avoid dragging python onto NestOS +%global __requires_exclude ^/usr/bin/python3 + %ifarch x86_64 aarch64 %bcond_without uefi %endif Name: fwupd Version: 1.2.9 -Release: 4 +Release: 5 Summary: Make updating firmware on Linux automatic, safe and reliable License: LGPLv2+ URL: https://github.com/fwupd/fwupd/releases @@ -45,7 +49,6 @@ Requires(post):systemd Requires(preun):systemd Requires(postun):systemd -Recommends: python3 %description %{name} aims to make updating firmware on Linux automatic, safe and reliable. @@ -177,6 +180,9 @@ mkdir -pm 0700 %{buildroot}%{_localstatedir}/lib/%{name}/gnupg %{_datadir}/man/man1/* %changelog +* Tue Aug 23 2022 duyiwei - 1.2.9-5 +- Remove the python installation dependency of fwupd + * Thu Jul 14 2022 yangweidong - 1.2.9-4 - Solve 0002-Compilation-failure-due-to-assertion-error - Fix CVE-2020-10759.patch -- Gitee