Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[f40] add: libbacktrace (#1872) #1892

Merged
merged 1 commit into from
Aug 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions anda/lib/backtrace/anda.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
project pkg {
rpm {
spec = "libbacktrace-nightly.spec"
}
labels {
nightly = 1
}
}
69 changes: 69 additions & 0 deletions anda/lib/backtrace/libbacktrace-nightly.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
%global debug_package %nil

%global commit 86885d14049fab06ef8a33aac51664230ca09200
%global shortcommit %(c=%commit; echo ${c:0:7})
%global commit_date 20240806

%global _desc %{expand:
A C library that may be linked into a C/C++ program to produce symbolic backtraces.
}

Name: libbacktrace-nightly
Version: 1.0^%commit_date.%shortcommit
Release: 1%?dist
Summary: Library to produce symbolic backtraces
License: BSD-3-Clause
URL: https://github.com/ianlancetaylor/libbacktrace
Source0: %url/archive/%commit.tar.gz
Packager: madonuko <[email protected]>
BuildRequires: gcc make
BuildRequires: automake
BuildRequires: libtool
BuildRequires: pkgconfig(liblzma)
BuildRequires: pkgconfig(libunwind)
BuildRequires: pkgconfig(libzstd)
BuildRequires: pkgconfig(zlib)

%description %_desc

%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}

%description devel %_desc
This package contains the development files for the %name package.

%prep
%autosetup -n libbacktrace-%commit

%build
autoreconf -fiv
%configure \
--disable-static \
--enable-shared \
--with-system-libunwind \
--enable-silent-rules
%make_build

%check
# btest_dwz fails
%make_build check ||:

%install
%make_install

find %{buildroot} -type f -name "*.la" -delete -print

%files
%doc README.md
%license LICENSE
%_includedir/backtrace-supported.h
%_includedir/backtrace.h
%_libdir/libbacktrace.so

%files devel
%_libdir/libbacktrace.so.*

%changelog
* Sat Aug 10 2024 madonuko <[email protected]>
- Initial package
5 changes: 5 additions & 0 deletions anda/lib/backtrace/update.rhai
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
rpm.global("commit", gh_commit("ianlancetaylor/libbacktrace"));
if rpm.changed() {
rpm.global("commit_date", date());
rpm.release();
}
Loading