3 Commits

Author SHA256 Message Date
c051ea86f1 Accepting request 1318287 from devel:tools
- update to 1.31:
  * btf_encoder: Move ambiguous_addr flag to elf_function
  * btf_encoder: Group all function ELF syms by function name
  * btf_encoder: Fix elf_functions cleanup on error
  * gitignore: Ignore all the test kmod build-related files
  * tests: Add some tests validating skipped
    functions due to uncertain arg location
  * btf_encoder: Skip functions consuming packed
    structs passed by value on stack
  * pahole: Do not return an error when printing only a specific
    class
  * pahole: Don't fail when encoding BTF on an object with no
    DWARF info
  * github CI: Add comparison of generated BTF functions between
    baseline, change
  * github CI: Do not build pahole as part of dwarves-ci setup
  * btf_loader: Fix smallest offset in case of bitfields
  * btf_loader: Infer alignment for zero-length arrays
  * CMakeLists.txt: Remove custom `LIB_INSTALL_DIR` handling
  * Fix pahole segfault with --show_reorg_steps option
  * pahole: Sync with libbpf mainline

OBS-URL: https://build.opensuse.org/request/show/1318287
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dwarves?expand=0&rev=47
2025-11-19 13:50:02 +00:00
3eb34e7ad5 * btf_encoder: Move ambiguous_addr flag to elf_function
* btf_encoder: Group all function ELF syms by function name
  * btf_encoder: Fix elf_functions cleanup on error
  * gitignore: Ignore all the test kmod build-related files
  * pahole: Do not return an error when printing only a specific
    class
  * pahole: Don't fail when encoding BTF on an object with no
    DWARF info
  * github CI: Add comparison of generated BTF functions between
    baseline, change
  * github CI: Do not build pahole as part of dwarves-ci setup
  * btf_loader: Fix smallest offset in case of bitfields
  * btf_loader: Infer alignment for zero-length arrays
  * CMakeLists.txt: Remove custom `LIB_INSTALL_DIR` handling
  * Fix pahole segfault with --show_reorg_steps option

OBS-URL: https://build.opensuse.org/package/show/devel:tools/dwarves?expand=0&rev=107
2025-11-17 16:47:50 +00:00
1ec835ac65 - update to 1.31:
* btf_encoder: Move ambiguous_addr flag to
    elf_function
  * btf_encoder: Group all function ELF syms by
    function name
  * btf_encoder: Fix elf_functions cleanup on
    error
  * gitignore: Ignore all the test kmod build-
    related files
  * tests: Add some tests validating skipped
    functions due to uncertain arg location
  * btf_encoder: Skip functions consuming packed
    structs passed by value on stack
  * pahole: Do not return an error when printing
    only a specific class
  * pahole: Don't fail when encoding BTF on an
    object with no DWARF info
  * github CI: Add comparison of generated BTF
    functions between baseline, change
  * github CI: Do not build pahole as part of
    dwarves-ci setup
  * btf_loader: Fix smallest offset in case of
    bitfields
  * btf_loader: Infer alignment for zero-length
    arrays
  * CMakeLists.txt: Remove custom
    `LIB_INSTALL_DIR` handling
  * Fix pahole segfault with --show_reorg_steps
    option
  * pahole: Sync with libbpf mainline

OBS-URL: https://build.opensuse.org/package/show/devel:tools/dwarves?expand=0&rev=106
2025-11-17 16:46:55 +00:00
6 changed files with 36 additions and 11 deletions

View File

@@ -1,7 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iHUEABYKAB0WIQR2GiIUctdOfX2qHhGyPKLppCJ+JwUCaAF9IQAKCRCyPKLppCJ+
J+O2AP9Rt9syHoYBvvULlbCaxyfkGc5NLkKTNemXrPH79y+ZqgEAxutyHVpUKgm5
P6r6uh27G/tmTSecPQ+NvmUQuHQBmgQ=
=TBEs
-----END PGP SIGNATURE-----

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c89f47dc4f127c4b9d3fb46c8386a40be45c36ef82e8df472418de9423fc5bb
size 2345336

7
dwarves-1.31.tar.sign Normal file
View File

@@ -0,0 +1,7 @@
-----BEGIN PGP SIGNATURE-----
iHUEABYKAB0WIQR2GiIUctdOfX2qHhGyPKLppCJ+JwUCaRJgCwAKCRCyPKLppCJ+
J4oaAP4o6FXXmUQXmuiEnaRXhRBIXQDBa0YBnzORgYxJ/cLTNwD+KI1EK7AbiwXs
ecTIGTt4oWz4RXZWgUX/1UF3qp6nHw0=
=jMdC
-----END PGP SIGNATURE-----

3
dwarves-1.31.tar.xz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a7f255ccacf8cc7f8cd119099eb327179b4b3c67cb015af646af6d0cb03054d
size 2350084

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Mon Nov 17 16:46:34 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 1.31:
* btf_encoder: Move ambiguous_addr flag to elf_function
* btf_encoder: Group all function ELF syms by function name
* btf_encoder: Fix elf_functions cleanup on error
* gitignore: Ignore all the test kmod build-related files
* tests: Add some tests validating skipped
functions due to uncertain arg location
* btf_encoder: Skip functions consuming packed
structs passed by value on stack
* pahole: Do not return an error when printing only a specific
class
* pahole: Don't fail when encoding BTF on an object with no
DWARF info
* github CI: Add comparison of generated BTF functions between
baseline, change
* github CI: Do not build pahole as part of dwarves-ci setup
* btf_loader: Fix smallest offset in case of bitfields
* btf_loader: Infer alignment for zero-length arrays
* CMakeLists.txt: Remove custom `LIB_INSTALL_DIR` handling
* Fix pahole segfault with --show_reorg_steps option
* pahole: Sync with libbpf mainline
-------------------------------------------------------------------
Thu Jun 5 19:42:00 UTC 2025 - Jan Engelhardt <jengelh@inai.de>

View File

@@ -25,7 +25,7 @@
%endif
Name: dwarves
Version: 1.30
Version: 1.31
Release: 0
Summary: DWARF utilities
License: GPL-2.0-only