golang-github-prometheus-promu/golang-github-prometheus-promu.spec

75 lines
1.9 KiB
RPMSpec
Raw Normal View History

#
# spec file for package golang-github-prometheus-promu
#
# 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/
#
%if 0%{?rhel}
# Fix ERROR: No build ID note found in
%undefine _missing_build_ids_terminate_build
%endif
%{go_nostrip}
Name: golang-github-prometheus-promu
Version: 0.13.0
Release: 0
Summary: Prometheus Utility Tool
License: Apache-2.0
Group: System/Management
URL: https://github.com/prometheus/promu
Source: promu-%{version}.tar.gz
Source1: vendor.tar.gz
Patch1: 0001-Set-build-date-from-SOURCE_DATE_EPOCH.patch
BuildRequires: golang-packaging
%if 0%{?rhel}
BuildRequires: golang >= 1.15
%else
BuildRequires: golang(API) = 1.15
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
ExcludeArch: s390
%{go_provides}
%description
The Prometheus Utility Tool is used by the Prometheus project to build other components.
%prep
%autosetup -a1 -p1 -n promu-%{version}
%build
%goprep github.com/prometheus/promu
export VERSION=%{version}
export CGO_ENABLED=0
go build \
-mod=vendor \
-buildmode=pie \
-ldflags "-s -w -X main.version=$VERSION" \
-o promu ;
%install
install -D -m 0755 promu "%{buildroot}/%{_bindir}/promu"
%gosrc
%gofilelist
%files -f file.lst
%defattr(-,root,root,-)
%doc README.md
%license LICENSE
%{_bindir}/promu
%changelog