%global debug_package %{nil} Name: pueue Version: 3.4.1 Release: 1%{?dist} Summary: Manage your shell commands. License: MIT URL: https://github.com/Nukesor/%{name} Source: https://github.com/Nukesor/%{name}/archive/refs/tags/v%{version}.tar.gz BuildRequires: cargo BuildRequires: rust BuildRequires: systemd-rpm-macros %description Pueue is a command-line task management tool for sequential and parallel execution of long-running tasks. Simply put, it's a tool that processes a queue of shell commands. On top of that, there are a lot of convenient features and abstractions. Since Pueue is not bound to any terminal, you can control your tasks from any terminal on the same machine. The queue will be continuously processed even if you no longer have any active ssh sessions. %prep %autosetup -n %{name}-%{version} %build cargo build --release --locked mkdir generated_completions ./target/release/%{name} completions bash generated_completions/ ./target/release/%{name} completions fish generated_completions/ ./target/release/%{name} completions zsh generated_completions/ %install install -Dpm 0755 target/release/%{name} -t %{buildroot}%{_bindir}/ install -Dpm 0755 target/release/pueued -t %{buildroot}%{_bindir}/ install -Dpm 0644 utils/pueued.service -t %{buildroot}/%{_userunitdir}/ install -Dpm 0644 generated_completions/%{name}.bash -t %{buildroot}/%{bash_completions_dir}/ install -Dpm 0644 generated_completions/%{name}.fish -t %{buildroot}/%{fish_completions_dir}/ install -Dpm 0644 generated_completions/_%{name} -t %{buildroot}/%{zsh_completions_dir}/ %post %systemd_user_post pueued.service %preun %systemd_user_preun pueued.service %postun %systemd_user_postun_with_restart pueued.service %files %license LICENSE %doc CHANGELOG.md README.md %{_bindir}/%{name} %{_bindir}/pueued %{_userunitdir}/pueued.service %{bash_completions_dir}/%{name}.bash %{fish_completions_dir}/%{name}.fish %{zsh_completions_dir}/_%{name} %changelog * Tue Jun 18 2024 Andrey Brusnik - 3.4.1-1 - feat: Added pueue package