From 515f6c544746c6f2aaa2ca3d66a5ec14a9ca70fd Mon Sep 17 00:00:00 2001 From: Javier Martinez Canillas Date: Mon, 13 Jul 2020 11:14:15 +0200 Subject: [PATCH] Change License field to LGPL-2.1 to prevent rpminspect test to fail The dist.rpminspect.analysis.license test fails with the following error: "LGPLv2.1 is not an approved license" This is because the license short string is not listed in the rpminspect license database. For LGPLv2.1, the LGPL-2.1 short string should be used. Signed-off-by: Javier Martinez Canillas --- efivar.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/efivar.spec b/efivar.spec index 9dd2105..dd2a95f 100644 --- a/efivar.spec +++ b/efivar.spec @@ -1,8 +1,8 @@ Name: efivar Version: 37 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Tools to manage UEFI variables -License: LGPLv2.1 +License: LGPL-2.1 URL: https://github.com/rhboot/efivar Requires: %{name}-libs = %{version}-%{release} ExclusiveArch: %{efi} @@ -79,6 +79,9 @@ make abicheck %{_libdir}/*.so.* %changelog +* Mon Jul 13 2020 Javier Martinez Canillas - 37-9 +- Change License field to LGPL-2.1 to prevent rpminspect test to fail + * Wed Apr 22 2020 Hans de Goede - 37-8 - Add a patch to fix eMMC sysfs path parsing Resolves: rhbz#1826864