From 5458c4fca8a3407d1589c5555433173517e67e87 Mon Sep 17 00:00:00 2001 From: Alberto Faria Date: Mon, 2 Oct 2023 14:00:30 +0100 Subject: [PATCH] Update overall license The License field is outdated due to changes in libblkio's set of dependencies. Update it based on cargo-license's output: $ cargo license (MIT OR Apache-2.0) AND BSD-3-Clause (1): virtio-driver Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT (3): io-lifetimes, linux-raw-sys, rustix Apache-2.0 OR BSD-3-Clause (1): virtio-bindings Apache-2.0 OR MIT (23): autocfg, bitflags, blkio, cc, errno, hermit-abi, io-uring, lazy_static, libblkio, libc, memmap2, num-traits, paste, pci-driver, windows-sys, windows-targets, windows_aarch64_gnullvm, windows_aarch64_msvc, windows_i686_gnu, windows_i686_msvc, windows_x86_64_gnu, windows_x86_64_gnullvm, windows_x86_64_msvc MIT (1): errno-dragonfly Signed-off-by: Alberto Faria --- libblkio.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libblkio.spec b/libblkio.spec index 818ad8b..fdcf355 100644 --- a/libblkio.spec +++ b/libblkio.spec @@ -5,14 +5,14 @@ Version: 1.3.0 Summary: Block device I/O library Name: libblkio -Release: 2%{?dist} +Release: 3%{?dist} URL: %{forgeurl} Source0: %{forgesource} # To create the vendor tarball: # tar xf %%{name}-v%%{version}.tar.bz2 ; pushd %%{name}-v%%{version} ; \ # cargo vendor && tar Jcvf ../%%{name}-v%%{version}-vendor.tar.xz vendor/ ; popd Source1: %{name}-v%{version}-vendor.tar.xz -License: (Apache-2.0 OR MIT) AND (Apache-2.0 OR BSD-3-Clause) AND MIT AND BSD-3-Clause AND Unicode-DFS-2016 +License: (Apache-2.0 OR MIT) AND (Apache-2.0 OR BSD-3-Clause) AND (Apache-2.0 OR Apache-2.0 WITH LLVM-exception OR MIT) AND BSD-3-Clause # Basic build requirements. BuildRequires: gcc, gcc-c++ @@ -109,6 +109,9 @@ export RUSTFLAGS="%build_rustflags" %changelog +* Mon Oct 02 2023 Alberto Faria - 1.3.0-3 +- Update overall license + * Mon Aug 14 2023 Richard W.M. Jones - 1.3.0-2 - Remove const-cstr dependency (RHBZ#2214208)