Accepting request 1105127 from home:VaiTon:branches:devel:languages:go
- Update to version 0.0.0+git20230820.407c9e7: * Bump actions/setup-go from 4.0.1 to 4.1.0 (#795) * Introduce first test for browser-side behavior. (#798) * Remove GOPATH based workflows since Go is reducing support. (#799) * Fix flamegraph name matching. (#796) * Expanded documentation of pprof web interface. (#793) * Prefix sample type menu entry ids with "sampletype-". (#792) * Fix flamegraph display in the presence of --diff_base. (#790) * Hash-pin workflow Actions (#787) * Fix away a few tab characters in *.js files added recently by accident. (#785) * Start using the new demangle.NoEnclosingParams demangling option. (#784) * Make comment to locations field a bit clearer. (#770) * Made non-D3 flamegraph view the default. (#777) (#781) * Remove special coloring for self region in new flame graph view. (#782) * Add more clear err message upon disasm addr/regex (#776) * Fix code coverage. (#778) * fix some comments (#779) * Update macOs matrix since macos-10.15 is deprecated and unavailable. (#780) * internal/driver: fixes for fetch.go (#711) * Remove the heuristic of recognizing build ID command line arg. (#775) * Increase linter timeout since it times out sometimes. (#774) * Get rid of strings.ReplaceAll to save an alloc (#772) * typo: 'browswer' -> 'browser' (#762) * Update Ubuntu versions as 18.04 is not supported now. (#764) * chore(ci): Upgrade to non-deprecated runtimes (#759) * fix typo: ocurrences -> occurrences (#758) * Bump golang.org/x/sys from 0.0.0-20220310020820-b874c991c1a5 to 0.1.0 (#756) * go.mod: update dependencies (#745) * Extend search for debug symbols (#741) * Update Go version reqs as 1.20 is released now. (#751) * NumLabel helper functions for Profile. (#749) * Add a bit more docs on label value handling. (#750) * Clarify that the comment field should only be used for human-readable content. (#746) * Modify the name shortening heuristic to handle non-Go names (#743) * Do not overwrite main binary build ID when it's present. (#742) * Update codecov action version. (#737) * Fix use of captured loop variable in go routine. (#740) * Apply -noinlines flag to the proto output. (#739) * Compatibilize profiles before merging (#734) * Disable golangci-lint on tip (#735) * Start using golangci-lint instead of the deprecated x/lint. (#731) * Speed-up profile management. (#729) * Increase chunk size for concurrent fetch to 128 (#727) * Add new symbol directory layout by build-id `/xx/xxxxxxxx.debug`. (#724) * Add visual indication of inlined frames. (#723) * Go 1.19 released, so update supported Go versions. (#721) * Update pprof documentation on tags. (#722) * Added alternative flamegraph implementation that can show callers. (#716) * Improve handling of Go symbols with type parameters (#717) * chore: run integration tests against main branch (#682) OBS-URL: https://build.opensuse.org/request/show/1105127 OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/pprof?expand=0&rev=6
This commit is contained in:
parent
01d95883db
commit
44622b1b57
16
_service
16
_service
@ -1,19 +1,15 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="manual">
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="url">https://github.com/google/pprof.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="versionformat">0.0.0+git%cd.%h</param>
|
||||
<param name="filename">pprof</param>
|
||||
<param name="revision">d04f2422c8a17569c14e84da0fae252d9529826b</param>
|
||||
<param name="revision">407c9e7a662f39c592c77f0db959db282b687a32</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="recompress" mode="manual">
|
||||
<param name="file">*.tar</param>
|
||||
<param name="compression">gz</param>
|
||||
</service>
|
||||
<service name="set_version" mode="manual">
|
||||
</service>
|
||||
<service name="go_modules" mode="manual">
|
||||
</service>
|
||||
<service name="set_version" mode="manual" />
|
||||
<service name="go_modules" mode="manual" />
|
||||
|
||||
<service name="tar" mode="buildtime" />
|
||||
</services>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/google/pprof.git</param>
|
||||
<param name="changesrevision">d04f2422c8a17569c14e84da0fae252d9529826b</param></service></servicedata>
|
||||
<param name="changesrevision">407c9e7a662f39c592c77f0db959db282b687a32</param></service></servicedata>
|
BIN
pprof-0.0.0+git20220520.d04f242.tar.gz
(Stored with Git LFS)
BIN
pprof-0.0.0+git20220520.d04f242.tar.gz
(Stored with Git LFS)
Binary file not shown.
3
pprof-0.0.0+git20230820.407c9e7.obscpio
Normal file
3
pprof-0.0.0+git20230820.407c9e7.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:cc9f2bc83e46b2757c62761d0e04dd10811479fc313871913d0115135959e2ea
|
||||
size 7729677
|
@ -1,3 +1,57 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 21 17:20:43 UTC 2023 - Eyad Issa <eyadlorenzo@gmail.com>
|
||||
|
||||
- Update to version 0.0.0+git20230820.407c9e7:
|
||||
* Bump actions/setup-go from 4.0.1 to 4.1.0 (#795)
|
||||
* Introduce first test for browser-side behavior. (#798)
|
||||
* Remove GOPATH based workflows since Go is reducing support. (#799)
|
||||
* Fix flamegraph name matching. (#796)
|
||||
* Expanded documentation of pprof web interface. (#793)
|
||||
* Prefix sample type menu entry ids with "sampletype-". (#792)
|
||||
* Fix flamegraph display in the presence of --diff_base. (#790)
|
||||
* Hash-pin workflow Actions (#787)
|
||||
* Fix away a few tab characters in *.js files added recently by accident. (#785)
|
||||
* Start using the new demangle.NoEnclosingParams demangling option. (#784)
|
||||
* Make comment to locations field a bit clearer. (#770)
|
||||
* Made non-D3 flamegraph view the default. (#777) (#781)
|
||||
* Remove special coloring for self region in new flame graph view. (#782)
|
||||
* Add more clear err message upon disasm addr/regex (#776)
|
||||
* Fix code coverage. (#778)
|
||||
* fix some comments (#779)
|
||||
* Update macOs matrix since macos-10.15 is deprecated and unavailable. (#780)
|
||||
* internal/driver: fixes for fetch.go (#711)
|
||||
* Remove the heuristic of recognizing build ID command line arg. (#775)
|
||||
* Increase linter timeout since it times out sometimes. (#774)
|
||||
* Get rid of strings.ReplaceAll to save an alloc (#772)
|
||||
* typo: 'browswer' -> 'browser' (#762)
|
||||
* Update Ubuntu versions as 18.04 is not supported now. (#764)
|
||||
* chore(ci): Upgrade to non-deprecated runtimes (#759)
|
||||
* fix typo: ocurrences -> occurrences (#758)
|
||||
* Bump golang.org/x/sys from 0.0.0-20220310020820-b874c991c1a5 to 0.1.0 (#756)
|
||||
* go.mod: update dependencies (#745)
|
||||
* Extend search for debug symbols (#741)
|
||||
* Update Go version reqs as 1.20 is released now. (#751)
|
||||
* NumLabel helper functions for Profile. (#749)
|
||||
* Add a bit more docs on label value handling. (#750)
|
||||
* Clarify that the comment field should only be used for human-readable content. (#746)
|
||||
* Modify the name shortening heuristic to handle non-Go names (#743)
|
||||
* Do not overwrite main binary build ID when it's present. (#742)
|
||||
* Update codecov action version. (#737)
|
||||
* Fix use of captured loop variable in go routine. (#740)
|
||||
* Apply -noinlines flag to the proto output. (#739)
|
||||
* Compatibilize profiles before merging (#734)
|
||||
* Disable golangci-lint on tip (#735)
|
||||
* Start using golangci-lint instead of the deprecated x/lint. (#731)
|
||||
* Speed-up profile management. (#729)
|
||||
* Increase chunk size for concurrent fetch to 128 (#727)
|
||||
* Add new symbol directory layout by build-id `/xx/xxxxxxxx.debug`. (#724)
|
||||
* Add visual indication of inlined frames. (#723)
|
||||
* Go 1.19 released, so update supported Go versions. (#721)
|
||||
* Update pprof documentation on tags. (#722)
|
||||
* Added alternative flamegraph implementation that can show callers. (#716)
|
||||
* Improve handling of Go symbols with type parameters (#717)
|
||||
* chore: run integration tests against main branch (#682)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 10 12:00:20 UTC 2022 - gmbr3@opensuse.org
|
||||
|
||||
|
4
pprof.obsinfo
Normal file
4
pprof.obsinfo
Normal file
@ -0,0 +1,4 @@
|
||||
name: pprof
|
||||
version: 0.0.0+git20230820.407c9e7
|
||||
mtime: 1692598881
|
||||
commit: 407c9e7a662f39c592c77f0db959db282b687a32
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package pprof
|
||||
#
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,13 +17,13 @@
|
||||
|
||||
|
||||
Name: pprof
|
||||
Version: 0.0.0+git20220520.d04f242
|
||||
Version: 0.0.0+git20230820.407c9e7
|
||||
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
|
||||
Source0: %{name}-%{version}.tar
|
||||
Source1: vendor.tar.gz
|
||||
BuildRequires: golang(API) >= 1.14
|
||||
|
||||
|
BIN
vendor.tar.gz
(Stored with Git LFS)
BIN
vendor.tar.gz
(Stored with Git LFS)
Binary file not shown.
Loading…
Reference in New Issue
Block a user