From a3cb5708b5aa4b0bb03429a1192b5059e99cf5cf Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Sat, 11 Nov 2023 19:27:28 -0800 Subject: [PATCH] main/spice-protocol: fix license expression Most of the files are BSD-3-Clause, but there is at least one file that is licensed under the LGPL-2.1-or-later license, so we need an AND clause here. Without this patch, the license string is not a valid SPDX expression. --- main/spice-protocol/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/spice-protocol/APKBUILD b/main/spice-protocol/APKBUILD index c336fd131cb..a920128ecaf 100644 --- a/main/spice-protocol/APKBUILD +++ b/main/spice-protocol/APKBUILD @@ -2,11 +2,11 @@ # Maintainer: Natanael Copa pkgname=spice-protocol pkgver=0.14.4 -pkgrel=0 +pkgrel=1 pkgdesc="Spice protocol header files" url="http://www.spice-space.org/" arch="noarch" -license="BSD-3-Clause LGPL-2.1-or-later" +license="BSD-3-Clause AND LGPL-2.1-or-later" options="!check" # No test suite makedepends="meson" source="https://www.spice-space.org/download/releases/spice-protocol-$pkgver.tar.xz"