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 <afaria@redhat.com>
This commit is contained in:
Alberto Faria 2023-10-02 14:00:30 +01:00
parent 1b341cf10b
commit 5458c4fca8

View File

@ -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 <afaria@redhat.com> - 1.3.0-3
- Update overall license
* Mon Aug 14 2023 Richard W.M. Jones <rjones@redhat.com> - 1.3.0-2
- Remove const-cstr dependency (RHBZ#2214208)