File await.spec of Package await
#
# spec file for package await
#
# Copyright (c) 2025 Thiago Masato Costa Sueto
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: await
Version: 1.0.8
Release: 0
Summary: Run list of commands in parallel and waits for their termination
License: MIT
URL: https://github.com/slavaGanzin/await
Source: %{name}-%{version}.tar.gz
Patch1: 0001-Add-CMakeLists.txt.patch
Patch2: 0002-Add-CMake-build-instructions.patch
BuildRequires: gcc
BuildRequires: gcc-c++
BuildRequires: cmake
%description
%summary
%package fish-completion
Summary: Fish Completion for %{name}
Group: System/Shells
Supplements: (%{name} and fish)
Requires: fish
BuildArch: noarch
%description fish-completion
Fish command-line completion support for %{name}.
%package zsh-completion
Summary: Zsh Completion for %{name}
Group: System/Shells
Supplements: (%{name} and zsh)
Requires: zsh
BuildArch: noarch
%description zsh-completion
Zsh command-line completion support for %{name}.
%package bash-completion
Summary: Bash Completion for %{name}
Group: System/Shells
Supplements: (%{name} and bash-completion)
Requires: bash-completion
BuildArch: noarch
%description bash-completion
Bash command-line completion support for %{name}.
%prep
%autosetup
%build
%cmake -DCMAKE_C_FLAGS='-Wparentheses -Wunused-variable -Wunused-result'
%cmake_build
%install
%cmake_install
%files
%license LICENSE
%doc README.md
%{_bindir}/await
%files fish-completion
%dir %{_datadir}/fish
%dir %{_datadir}/fish/vendor_completions.d
%{_datadir}/fish/vendor_completions.d/await.fish
%files zsh-completion
%dir %{_datadir}/zsh
%dir %{_datadir}/zsh/site-functions
%{_datadir}/zsh/site-functions/_await
%files bash-completion
%dir %{_datadir}/bash-completion
%dir %{_datadir}/bash-completion/completions
%{_datadir}/bash-completion/completions/await.bash
%changelog