4b4b8e4093
* 0001-Mark-run-ptrace-mapper-and-run-ptrace-misc-as-XFAIL-.patch * 0002-Mark-run-ptrace-mapper-and-run-ptrace-misc-as-XFAIL-.patch * libunwind-1.1-expected-fails.patch * libunwind-CVE-2015-3239.patch * libunwind-aarch64.patch * libunwind-ppc64le.patch OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libunwind?expand=0&rev=28
82 lines
2.3 KiB
RPMSpec
82 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package libunwind
|
|
#
|
|
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define realver 1.2-rc1
|
|
Name: libunwind
|
|
Version: 1.2~rc1
|
|
Release: 0
|
|
Summary: Unwind Library
|
|
License: MIT
|
|
Group: System/Base
|
|
Url: http://savannah.nongnu.org/projects/libunwind/
|
|
Source0: http://download.savannah.gnu.org/releases/libunwind/libunwind-%{realver}.tar.gz
|
|
Source1: http://download.savannah.gnu.org/releases/libunwind/libunwind-%{realver}.tar.gz.sig
|
|
Source2: %{name}.keyring
|
|
Source3: baselibs.conf
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: libatomic_ops-devel
|
|
BuildRequires: pkg-config
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
ExclusiveArch: %ix86 ia64 x86_64 %arm ppc ppc64 ppc64le aarch64
|
|
|
|
%description
|
|
A portable and efficient C programming interface (API) to determine the
|
|
call chain of a program.
|
|
|
|
%package devel
|
|
Summary: Unwind library
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{libname} = %{version}
|
|
|
|
%description devel
|
|
A portable and efficient C programming interface (API) to determine the
|
|
call-chain of a program.
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{realver}
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
%if ! 0%{?qemu_user_space_build:1}
|
|
# run-coredump-unwind fails
|
|
make check %{?_smp_mflags} || :
|
|
%endif
|
|
|
|
%install
|
|
make %{?_smp_mflags} DESTDIR=%{buildroot} install
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%{_libdir}/lib*.so.*
|
|
|
|
%files devel
|
|
%defattr(-, root, root)
|
|
%{_includedir}/*
|
|
%{_libdir}/libunwind*.a
|
|
%{_libdir}/libunwind*.so
|
|
%{_libdir}/pkgconfig/libunwind*.pc
|
|
|
|
%changelog
|