File portusctl.spec of Package portusctl
#
# spec file for package portusctl
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
# nodebuginfo
# Handle all Go arches.
%{!?go_arches: %global go_arches %ix86 x86_64 aarch64 ppc64le}
# Remove stripping of Go binaries.
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
# Project name when using go tooling.
%define project github.com/openSUSE/portusctl
Name: portusctl
Version: 0.1.0+20190417.bad42e36420b
Release: 0
Summary: A client for your Portus instance
License: GPL-3.0
Group: System/Management
Url: https://github.com/openSUSE/portusctl
Source: master.tar.gz
%ifarch %{go_arches}
BuildRequires: go >= 1.6
BuildRequires: go-go-md2man
%else
BuildRequires: gcc6-go >= 6.1
%endif
BuildRequires: fdupes
BuildRoot: %{_tmppath}/%{name}-%{raw_version}-build
%if 0%{?is_opensuse}
ExcludeArch: s390x
%endif
%description
portusctl is a client for your Portus instance. It allows you to access the REST
API offered by Portus and present the results in a friendly manner.
Moreover, it also allows you to execute arbitrary commands on the Portus'
context if your instance is running locally.
%prep
%setup -q -n portusctl-master
%build
# We can't use symlinks here because go-list gets confused by symlinks, so we
# have to copy the source to $HOME/go and then use that as the GOPATH.
export GOPATH=$HOME/go
rm -rf $HOME/go/src/*
mkdir -pv $HOME/go/src/%{project}
cp -avr $PWD/vendor/* $HOME/go/src
rm -rf $PWD/vendor/*
cp -avr * $HOME/go/src/%{project}
export VERSION="$(cat ./VERSION)"
if [ "$VERSION" != "%{version}" ]; then
VERSION="%{version}_suse"
fi
# Build the binary.
make VERSION="$VERSION" portusctl
# Build the docs if we have go-md2man.
%ifarch %{go_arches}
make doc
%endif
%install
# Install the binary.
install -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}"
# Install all of the docs.
%ifarch %{go_arches}
for file in man/*.1; do
install -D -m 0644 $file "%{buildroot}/%{_mandir}/man1/$(basename $file)"
done
%endif
%fdupes %{buildroot}/%{_prefix}
%check
export GOPATH=$HOME/go
export SKIP_COVERAGE=true
make test-unit
%files
%defattr(-,root,root)
%doc COPYING README.md CHANGELOG.md CONTRIBUTING.md
%{_bindir}/%{name}
%ifarch %{go_arches}
%{_mandir}/man1/portusctl*
%endif
%changelog