Fix (pbcli): Missing ( in licenses (#3756)

Signed-off-by: Gilver <rockgrub@disroot.org>
This commit is contained in:
Gilver
2025-03-04 23:11:27 -06:00
committed by GitHub
parent 4f3dab23f9
commit e423741b1c
+9 -9
View File
@@ -3,28 +3,28 @@ pbcli is a command line client which allows to upload and download pastes from p
Name: pbcli
Version: 2.8.0
Release: 1%?dist
Release: 2%?dist
Summary: A PrivateBin commandline upload and download utility
SourceLicense: Unlicense OR MIT
License: (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND (Apache-2.0 OR MIT) AND BSD-3-Clause) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND ISC AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT)
URL: https://github.com/Mydayyy/pbcli
License: (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (BSD-2-Clause OR Apache-2.0 OR MIT) AND BSD-3-Clause AND ISC AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Apache-2.0 OR Zlib) AND (MIT OR Zlib OR Apache-2.0) AND MPL-2.0 AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT)
URL: https://github.com/Mydayyy/%{name}
Source0: %{url}/archive/refs/tags/v%{version}.tar.gz
BuildRequires: anda-srpm-macros
BuildRequires: cargo-rpm-macros >= 24
BuildRequires: mold
BuildRequires: openssl-libs
BuildRequires: perl-ExtUtils-MM-Utils
BuildRequires: perl-FindBin
BuildRequires: perl-File-Compare
BuildRequires: perl-File-Copy
BuildRequires: perl-IPC-Cmd
BuildRequires: perl-lib
BuildRequires: openssl-libs
Packager: Gilver E. <rockgrub@disroot.org>
%description %_description
%prep
%autosetup -n pbcli-%version
%autosetup -n %{name}-%{version}
%cargo_prep_online
%build
@@ -32,16 +32,16 @@ Packager: Gilver E. <rockgrub@disroot.org>
%{cargo_license_online} > LICENSE.dependencies
%install
install -Dm755 target/rpm/pbcli %{buildroot}%{_bindir}/pbcli
install -Dm755 target/rpm/libpbcli.so %{buildroot}%{_libdir}/libpbcli.so
install -Dm755 target/rpm/%{name} %{buildroot}%{_bindir}/%{name}
install -Dm755 target/rpm/lib%{name}.so %{buildroot}%{_libdir}/lib%{name}.so
%files
%doc README.md
%license LICENSE-MIT
%license LICENSE-UNLICENSE
%license LICENSE.dependencies
%{_bindir}/pbcli
%{_libdir}/libpbcli.so
%{_bindir}/%{name}
%{_libdir}/lib%{name}.so
%changelog
* Sat Dec 21 2024 Gilver E. <rockgrub@disroot.org>