File rclone.spec of Package rclone
#
# spec file for package rclone
#
# Copyright (c) 2022 SUSE LLC
#
# 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/
#
# nodebuginfo
Name: rclone
Version: 1.58.1
Release: 0
Summary: Rsync for cloud storage
License: MIT
Group: Productivity/Networking/Web/Utilities
URL: https://rclone.org/
Source: %{name}-%{version}.tar.xz
Source1: vendor.tar.xz
BuildRequires: fdupes
BuildRequires: go >= 1.16
BuildRequires: golang-packaging
%{go_nostrip}
%description
rsync for cloud storage. rclone is a command line program to sync files and
directories to and from a wide variety of cloud storage providers, providing
various additional features.
%package bash-completion
Summary: Bash Completion for %{name}
Group: Productivity/Networking/Web/Utilities
Requires: %{name} = %{version}
%if 0%{?sle_version} < 150000
Supplements: packageand(%{name}:bash-completion)
%else
Supplements: (%{name} and bash-completion)
%endif
BuildArch: noarch
%description bash-completion
Bash command line completion support for %{name}.
%package zsh-completion
Summary: Zsh Completion for %{name}
Group: Productivity/Networking/Web/Utilities
Requires: %{name} = %{version}
%if 0%{?sle_version} < 150000
Supplements: packageand(%{name}:zsh)
%else
Supplements: (%{name} and zsh)
%endif
BuildArch: noarch
%description zsh-completion
Zsh command line completion support for %{name}.
%prep
%setup -q
%setup -q -D -T -a 1
%build
%ifarch ppc64
# pie not supported
go build -o %{name} -mod=vendor
%else
go build -o %{name} -mod=vendor -buildmode=pie
%endif
./%{name} genautocomplete bash completion.bash
./%{name} genautocomplete zsh completion.zsh
%install
install -m0755 -D %{name} %{buildroot}%{_bindir}/%{name}
install -m0644 -D %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
install -m0644 -D completion.bash %{buildroot}%{_datadir}/bash/%{name}
install -m0644 -D completion.zsh %{buildroot}%{_datadir}/zsh/_%{name}
%fdupes %{buildroot}
%files
%doc MANUAL.md README.md RELEASE.md
%license COPYING
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1%{?ext_man}
%files bash-completion
%{_datadir}/bash/
%files zsh-completion
%{_datadir}/zsh/
%changelog