Initial debugedit import.
Resolves: #1957744 New RHEL9 package: debugedit - Tools for debuginfo creation
This commit is contained in:
parent
3e4ab10dca
commit
94de76b499
3
.gitignore
vendored
3
.gitignore
vendored
@ -0,0 +1,3 @@
|
||||
/debugedit-0.2.tar.xz
|
||||
/debugedit-0.2.tar.xz.sig
|
||||
/gpgkey-5C1D1AA44BE649DE760A.gpg
|
91
debugedit.spec
Normal file
91
debugedit.spec
Normal file
@ -0,0 +1,91 @@
|
||||
Name: debugedit
|
||||
Version: 0.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Tools for debuginfo creation
|
||||
License: GPLv3+ and GPLv2+ and LGPLv2+
|
||||
URL: https://sourceware.org/debugedit/
|
||||
Source0: https://sourceware.org/pub/debugedit/%{version}/%{name}-%{version}.tar.xz
|
||||
Source1: https://sourceware.org/pub/debugedit/%{version}/%{name}-%{version}.tar.xz.sig
|
||||
Source2: gpgkey-5C1D1AA44BE649DE760A.gpg
|
||||
|
||||
BuildRequires: make gcc
|
||||
BuildRequires: pkgconfig(libelf)
|
||||
BuildRequires: pkgconfig(libdw)
|
||||
|
||||
BuildRequires: gnupg2
|
||||
|
||||
# The find-debuginfo.sh script has a couple of tools it needs at runtime.
|
||||
# For strip_to_debug, eu-strip
|
||||
Requires: elfutils
|
||||
# For add_minidebug, readelf, awk, nm, sort, comm, objcopy, xz
|
||||
Requires: binutils, gawk, coreutils, xz
|
||||
# For find and xargs
|
||||
Requires: findutils
|
||||
# For do_file, gdb_add_index
|
||||
# We only need gdb-add-index, so suggest gdb-minimal (full gdb is also ok)
|
||||
Requires: /usr/bin/gdb-add-index
|
||||
Suggests: gdb-minimal
|
||||
# For run_job, sed
|
||||
Requires: sed
|
||||
# For dwz
|
||||
Requires: dwz
|
||||
# For append_uniq, grep
|
||||
Requires: grep
|
||||
|
||||
%global _hardened_build 1
|
||||
|
||||
%description
|
||||
The debugedit project provides programs and scripts for creating
|
||||
debuginfo and source file distributions, collect build-ids and rewrite
|
||||
source paths in DWARF data for debugging, tracing and profiling.
|
||||
|
||||
It is based on code originally from the rpm project plus libiberty and
|
||||
binutils. It depends on the elfutils libelf and libdw libraries to
|
||||
read and write ELF files, DWARF data and build-ids.
|
||||
|
||||
%prep
|
||||
%{gpgverify} --keyring='%{SOURCE2}' --signature='%{SOURCE1}' --data='%{SOURCE0}'
|
||||
%autosetup
|
||||
|
||||
%build
|
||||
%configure
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
|
||||
%check
|
||||
# The testsuite should be zero fail.
|
||||
# It uses its own CFLAGS and LDFLAGS settings.
|
||||
sed -i 's/^\(C\|LD\)FLAGS=.*/\1FLAGS=""/' tests/atlocal
|
||||
make check %{?_smp_mflags}
|
||||
|
||||
%files
|
||||
%license COPYING COPYING3 COPYING.LIB
|
||||
%doc README
|
||||
%{_bindir}/debugedit
|
||||
%{_bindir}/sepdebugcrcfix
|
||||
%{_bindir}/find-debuginfo.sh
|
||||
%{_mandir}/man1/debugedit.1*
|
||||
%{_mandir}/man1/sepdebugcrcfix.1*
|
||||
%{_mandir}/man1/find-debuginfo.sh.1*
|
||||
|
||||
%changelog
|
||||
* Wed May 5 2021 Mark Wielaard <mjw@fedoraproject.org> - 0.2-1
|
||||
- Update to upstream 0.2 pre-release. Adds documentation.
|
||||
|
||||
* Wed Apr 28 2021 Mark Wielaard <mjw@fedoraproject.org> - 0.1-5
|
||||
- Add dist to Release. Use file dependency for /usr/bin/gdb-add-index.
|
||||
|
||||
* Tue Apr 27 2021 Mark Wielaard <mjw@fedoraproject.org> - 0.1-4
|
||||
- Use numbered Sources and https.
|
||||
|
||||
* Mon Apr 26 2021 Mark Wielaard <mjw@fedoraproject.org> - 0.1-3
|
||||
- Fix some rpmlint issues, add comments, add license and doc,
|
||||
gpg verification, use pkgconfig BuildRequires, enable _hardened_build
|
||||
|
||||
* Mon Mar 29 2021 Panu Matilainen <pmatilai@redhat.com>
|
||||
- Add pile of missing runtime utility dependencies
|
||||
|
||||
* Tue Mar 23 2021 Panu Matilainen <pmatilai@redhat.com>
|
||||
- Initial packaging
|
3
sources
Normal file
3
sources
Normal file
@ -0,0 +1,3 @@
|
||||
SHA512 (debugedit-0.2.tar.xz) = c277c23ab8fcf7925bb81f83f34c9f1cc93015f5aedcd28b4f5774de11a80d3c012a11efb728dc3d9dfd9eb01283408368914f6462c24fe8c9ada848d2e4ec3d
|
||||
SHA512 (debugedit-0.2.tar.xz.sig) = 13ea6758c8a64174da26c4abdb74bcdf6745e90bd3fa121f8175f63908e44697f9f36f950d059a8cb3a89d5369aee68a52782d0c4b76cf44f2616dfc7ac19e18
|
||||
SHA512 (gpgkey-5C1D1AA44BE649DE760A.gpg) = dc44ed3e38f54c3e57a4d83fa8b48ce2a8694802dd6bbf057cf432958f88ace9b585ee36a59ba98444e76c9aef0e998b9108a3807f97ebd6ba62303b41ab4690
|
Loading…
Reference in New Issue
Block a user