]> git.pld-linux.org Git - packages/strace.git/blobdiff - strace.spec
- updated to 5.3
[packages/strace.git] / strace.spec
index c16145a467a0f24b33bcc79e07b7290f493da670..faa77c719d6070f02d52527e4c3eaca62c943d5c 100644 (file)
@@ -1,3 +1,11 @@
+#
+# Conditional build:
+%bcond_without libunwind       # strack tracing using libunwind
+%bcond_without libiberty       # symbol demangling in stack backtraces
+#
+%ifnarch %{ix86} %{x8664} x32 %{arm} hppa ia64 mips ppc ppc64 sh
+%undefine      with_libunwind
+%endif
 Summary:       prints system call strace of a running process
 Summary(de.UTF-8):     druckt ein Protokoll der Systemaufrufe eines laufenden Prozesses
 Summary(es.UTF-8):     Enseña las llamadas de sistema de un proceso en ejecución
@@ -8,17 +16,19 @@ Summary(ru.UTF-8):   Отслеживает и показывает системн
 Summary(tr.UTF-8):     Çalışan bir sürecin yaptığı sistem çağrılarını listeler
 Summary(uk.UTF-8):     Відслідковує та показує системні виклики, пов'язані із запущеним процесом
 Name:          strace
-Version:       4.9
+Version:       5.3
 Release:       1
-License:       BSD-like
+License:       LGPL v2.1+
 Group:         Development/Debuggers
-Source0:       http://downloads.sourceforge.net/strace/%{name}-%{version}.tar.xz
-# Source0-md5: 885eafadb10f6c60464a266d3929a2a4
+Source0:       https://github.com/strace/strace/releases/download/v%{version}/%{name}-%{version}.tar.xz
+# Source0-md5: 84f5e72de813c9b1bb6057ee8ab428d8
 Source1:       %{name}.1.pl
-URL:           http://sourceforge.net/projects/strace/
+URL:           https://strace.io/
 # acl and libaio for headers only
 BuildRequires: acl-devel
+%{?with_libiberty:BuildRequires:       binutils-devel >= 4:2.30-1}
 BuildRequires: libaio-devel
+%{?with_libunwind:BuildRequires:       libunwind-devel}
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -96,7 +106,16 @@ Doda wtedy upływający czas dla każdego procesu.
 %setup -q
 
 %build
-%configure
+%if %{with libunwind}
+# workaround for:
+# /usr/bin/ld: copy reloc against protected `_UPT_accessors' is invalid
+# /usr/bin/ld: failed to set dynamic section sizes: Bad value
+# (should be fixed in gcc >(=?) 5.1)
+CFLAGS="%{rpmcflags} -fPIE"
+%endif
+%configure \
+       %{!?with_libiberty:--without-libiberty} \
+       %{!?with_libunwind:--without-libunwind}
 %{__make}
 
 %install
@@ -112,10 +131,11 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc COPYING CREDITS ChangeLog NEWS README-linux
+%doc COPYING CREDITS ChangeLog NEWS README-linux-ptrace
 %attr(755,root,root) %{_bindir}/strace
 %attr(755,root,root) %{_bindir}/strace-log-merge
 %{_mandir}/man1/strace.1*
+%{_mandir}/man1/strace-log-merge.1*
 %lang(pl) %{_mandir}/pl/man1/strace.1*
 
 %files graph
This page took 0.063675 seconds and 4 git commands to generate.