SHA256
1
0
forked from pool/pprof

Accepting request 879978 from home:jfkw:branches:devel:languages:go

New package required by gperftools

OBS-URL: https://build.opensuse.org/request/show/879978
OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/pprof?expand=0&rev=1
This commit is contained in:
2021-03-18 20:45:42 +00:00
committed by Git OBS Bridge
commit e40e2b0486
8 changed files with 114 additions and 0 deletions

57
pprof.spec Normal file
View File

@@ -0,0 +1,57 @@
#
# spec file for package pprof
#
# Copyright (c) 2021 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/
#
Name: pprof
Version: 0.0.0+git20210226.cbba55b
Release: 0
Summary: CLI tool for visualization and analysis of profiling data
License: Apache-2.0
Group: Development/Languages/Other
Url: https://github.com/google/pprof
Source0: %{name}-%{version}.tar.gz
Source1: vendor.tar.gz
BuildRequires: golang(API) >= 1.14
%description
pprof reads a collection of profiling samples in profile.proto format and generates reports to visualize and help analyze the data.
It can generate both text and graphical reports (through the use of the dot visualization package).
%prep
%setup -q
%setup -q -T -D -a 1
%build
go build
%install
install -D -m 0755 %{name} "%{buildroot}/%{_bindir}/%{name}"
%check
go test github.com/google/pprof/
%files
%defattr(-,root,root)
%doc README.md
%doc CONTRIBUTORS
%if 0%{?suse_version} < 1500
%doc LICENSE
%else
%license LICENSE
%endif
%{_bindir}/%{name}
%changelog