61 lines
1.9 KiB
RPMSpec
61 lines
1.9 KiB
RPMSpec
#
|
|
# spec file for package cf-cli
|
|
#
|
|
# Copyright (c) 2016 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/
|
|
#
|
|
|
|
%define import_path code.cloudfoundry.org/cli
|
|
|
|
Name: cf-cli
|
|
Version: 6.25.0
|
|
Release: 0
|
|
License: Apache-2.0
|
|
Summary: Cloud Foundry command line client
|
|
Url: https://github.com/cloudfoundry/cli
|
|
Group: System/Management
|
|
Source: https://github.com/cloudfoundry/cli/archive/v%{version}.tar.gz
|
|
Source1: README
|
|
BuildRequires: go >= 1.7.0
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: xz
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
%{go_provides}
|
|
|
|
%description
|
|
This is the official command line client for Cloud Foundry.
|
|
|
|
%prep
|
|
%setup -q -n cli-%{version}
|
|
|
|
%build
|
|
cp %{SOURCE1} ./
|
|
# show correct version instead of 0.0.0
|
|
grep -rl "0.0.0-unknown-version" ./ | xargs sed -i 's/0.0.0-unknown-version/%{version}/g'
|
|
%goprep %{import_path}
|
|
%gobuild
|
|
|
|
%install
|
|
%goinstall
|
|
install -m 755 -d %{buildroot}/%{_sysconfdir}/bash_completion.d
|
|
cp ci/installers/completion/cf %{buildroot}/%{_sysconfdir}/bash_completion.d/cf
|
|
mv %{buildroot}/%{_bindir}/cli %{buildroot}/%{_bindir}/cf
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%{_bindir}/cf
|
|
%config %{_sysconfdir}/bash_completion.d/cf
|
|
%doc CHANGELOG.md LICENSE NOTICE README
|
|
|
|
%changelog
|