forked from pool/dwarves
Accepting request 1180220 from devel:tools
- Update to release 1.27 OBS-URL: https://build.opensuse.org/request/show/1180220 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dwarves?expand=0&rev=42
This commit is contained in:
commit
dc004630e2
@ -1,4 +1,5 @@
|
|||||||
libdwarves1
|
libdwarves1
|
||||||
libdwarves-devel
|
dwarves-devel
|
||||||
requires -libdwarves-<targettype>
|
obsoletes "libdwarves-devel < <version>-<release>"
|
||||||
|
provides "libdwarves-devel = <version>-<release>"
|
||||||
requires "libdwarves1-<targettype> = <version>"
|
requires "libdwarves1-<targettype> = <version>"
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iHUEABYKAB0WIQR2GiIUctdOfX2qHhGyPKLppCJ+JwUCZd9xqgAKCRCyPKLppCJ+
|
|
||||||
JwJ6AP0cXuvlUXuYOskMhwz8+aC3KJAvslqNNcT69uoJzl5rCQD9GPvTGBp8uHrH
|
|
||||||
Br8kAI5PTamaTojCTi4zSMcJDHrZ9w0=
|
|
||||||
=YBW9
|
|
||||||
-----END PGP SIGNATURE-----
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ad4c08339850e404609e2808012580b7e98366d2b91054bb93fe6dca94651fb4
|
|
||||||
size 2250036
|
|
7
dwarves-1.27.tar.sign
Normal file
7
dwarves-1.27.tar.sign
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iHUEABYKAB0WIQR2GiIUctdOfX2qHhGyPKLppCJ+JwUCZmio+QAKCRCyPKLppCJ+
|
||||||
|
JyE1AQD5BWhUPOeQEwVh/rBTXsc6uWZ34DBSsv0fV0eOXCVGTwD9FP/16dH1btvC
|
||||||
|
C1PAX7DVCD2+G5Dama5ilsYG8oLnWA0=
|
||||||
|
=NexU
|
||||||
|
-----END PGP SIGNATURE-----
|
BIN
dwarves-1.27.tar.xz
(Stored with Git LFS)
Normal file
BIN
dwarves-1.27.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 12 09:09:41 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Update to release 1.27
|
||||||
|
* Inject kfunc decl tags into BTF from the BTF IDs ELF section
|
||||||
|
in the Linux kernel vmlinux file.
|
||||||
|
* Support parallel reproducible builds, where it doesn't matter
|
||||||
|
how many threads are used, the end BTF encoding result is the
|
||||||
|
same.
|
||||||
|
* Initial support for BTF_KIND_DECL_TAG
|
||||||
|
* Fix pretty-printing of hole discovery with inheritance in C++.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 28 20:35:36 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
Wed Feb 28 20:35:36 UTC 2024 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
13
dwarves.spec
13
dwarves.spec
@ -25,7 +25,7 @@
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
Name: dwarves
|
Name: dwarves
|
||||||
Version: 1.26
|
Version: 1.27
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: DWARF utilities
|
Summary: DWARF utilities
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
@ -87,12 +87,14 @@ dwarves is a set of tools that use the DWARF debugging information
|
|||||||
inserted in ELF binaries by compilers such as GCC, used by well known
|
inserted in ELF binaries by compilers such as GCC, used by well known
|
||||||
debuggers such as GDB, and more recent ones such as systemtap.
|
debuggers such as GDB, and more recent ones such as systemtap.
|
||||||
|
|
||||||
%package -n libdwarves-devel
|
%package devel
|
||||||
Summary: DWARF processing library development files
|
Summary: DWARF processing library development files
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Requires: libdwarves1 = %version-%release
|
Requires: libdwarves1 = %version-%release
|
||||||
|
Obsoletes: libdwarves-devel < %version-%release
|
||||||
|
Provides: libdwarves-devel = %version-%release
|
||||||
|
|
||||||
%description -n libdwarves-devel
|
%description devel
|
||||||
This package contains the development files for libdwarves, a library
|
This package contains the development files for libdwarves, a library
|
||||||
for processing DWARF, a debugging data format for ELF files.
|
for processing DWARF, a debugging data format for ELF files.
|
||||||
|
|
||||||
@ -113,8 +115,7 @@ echo "DWARVES_$ver{ global: *; };" >"$sv"
|
|||||||
%install
|
%install
|
||||||
%cmake_install
|
%cmake_install
|
||||||
|
|
||||||
%post -n libdwarves1 -p /sbin/ldconfig
|
%ldconfig_scriptlets -n libdwarves1
|
||||||
%postun -n libdwarves1 -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc README NEWS
|
%doc README NEWS
|
||||||
@ -124,7 +125,7 @@ echo "DWARVES_$ver{ global: *; };" >"$sv"
|
|||||||
%files -n libdwarves1
|
%files -n libdwarves1
|
||||||
%_libdir/*.so.1*
|
%_libdir/*.so.1*
|
||||||
|
|
||||||
%files -n libdwarves-devel
|
%files devel
|
||||||
%_libdir/*.so
|
%_libdir/*.so
|
||||||
%_includedir/*
|
%_includedir/*
|
||||||
%_datadir/%name
|
%_datadir/%name
|
||||||
|
Loading…
Reference in New Issue
Block a user