Hello community,

here is the log from the commit of package libunwind for openSUSE:Factory 
checked in at 2016-05-26 23:52:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libunwind (Old)
 and      /work/SRC/openSUSE:Factory/.libunwind.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libunwind"

Changes:
--------
--- /work/SRC/openSUSE:Factory/libunwind/libunwind.changes      2016-05-12 
09:32:02.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.libunwind.new/libunwind.changes 2016-05-26 
23:52:12.000000000 +0200
@@ -1,0 +2,12 @@
+Tue May 17 11:10:54 UTC 2016 - tchva...@suse.com
+
+- Version update to 1.2-rc1, should include all our patches:
+  * 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
+  * libunwind-1.1-tests.diff
+
+-------------------------------------------------------------------

Old:
----
  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-1.1-tests.diff
  libunwind-1.1.tar.gz
  libunwind-1.1.tar.gz.sig
  libunwind-CVE-2015-3239.patch
  libunwind-aarch64.patch
  libunwind-ppc64le.patch

New:
----
  libunwind-1.2-rc1.tar.gz
  libunwind-1.2-rc1.tar.gz.sig

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libunwind.spec ++++++
--- /var/tmp/diff_new_pack.i3HgmC/_old  2016-05-26 23:52:13.000000000 +0200
+++ /var/tmp/diff_new_pack.i3HgmC/_new  2016-05-26 23:52:13.000000000 +0200
@@ -16,35 +16,20 @@
 #
 
 
+%define realver 1.2-rc1
 Name:           libunwind
-Version:        1.1
+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-%{version}.tar.gz
-Source1:        
http://download.savannah.gnu.org/releases/libunwind/libunwind-%{version}.tar.gz.sig
+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
-Patch0:         libunwind-1.1-tests.diff
-#PATCH-FIX-UPSTREAM: upstream commit ae3dd9417a3d178cf51ce744d85b695dbf025b44
-Patch1:         libunwind-1.1-expected-fails.patch
-# PATCH-FIX-UPSTREAM: upstream commit ac6c0a6
-Patch2:         libunwind-aarch64.patch
-# PATCH-FIX-UPSTREAM: uweig...@de.ibm.com -- submitted to libunwind-devel
-Patch3:         libunwind-ppc64le.patch
-# PATCH-FIX-UPSTREAM: bnc#936786 CVE-2015-3239
-Patch4:         libunwind-CVE-2015-3239.patch
-# PATCH-FIX-UPSTREAM: boo#976955
-Patch5:         0001-Mark-run-ptrace-mapper-and-run-ptrace-misc-as-XFAIL-.patch
-# PATCH-FIX-UPSTREAM: boo#976955
-Patch6:         0002-Mark-run-ptrace-mapper-and-run-ptrace-misc-as-XFAIL-.patch
-BuildRequires:  autoconf
-BuildRequires:  automake
 BuildRequires:  gcc-c++
 BuildRequires:  libatomic_ops-devel
-BuildRequires:  libtool
 BuildRequires:  pkg-config
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 ExclusiveArch:  %ix86 ia64 x86_64 %arm ppc ppc64 ppc64le aarch64
@@ -56,64 +41,41 @@
 %package devel
 Summary:        Unwind library
 Group:          Development/Libraries/C and C++
-Requires:       libunwind = %{version}-%{release}
-Provides:       libunwind:%{_libdir}/libunwind.so
+Requires:       %{name} = %{version}
 
 %description devel
 A portable and efficient C programming interface (API) to determine the
 call-chain of a program.
 
 %prep
-%setup -q
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
-%patch5 -p1
-%patch6 -p1
+%setup -q -n %{name}-%{realver}
 
 %build
-autoreconf -fvi
 %configure
 make %{?_smp_mflags}
 
 %check
 %if ! 0%{?qemu_user_space_build:1}
+# run-coredump-unwind fails
 make check %{?_smp_mflags} || :
 %endif
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 find %{buildroot} -type f -name "*.la" -delete -print
-mkdir -p %{buildroot}/%{_lib}
-mv %{buildroot}%{_libdir}/libunwind.so.8* %{buildroot}/%{_lib}
-ln -sf /%{_lib}/libunwind.so.8 %{buildroot}%{_libdir}/libunwind.so
-# Check that ln did not create a dangling link
-stat %{buildroot}/$(readlink -f "%{buildroot}/%{_libdir}/libunwind.so");
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %files
 %defattr(-, root, root)
-/%{_lib}/lib*
 %{_libdir}/lib*.so.*
-%{_libdir}/libunwind.so
 
 %files devel
 %defattr(-, root, root)
 %{_includedir}/*
-%{_libdir}/lib*.a
-%{_libdir}/libunwind-*.so
-%{_libdir}/pkgconfig/libunwind-generic.pc
-%{_libdir}/pkgconfig/libunwind-ptrace.pc
-%{_libdir}/pkgconfig/libunwind-setjmp.pc
-%{_libdir}/pkgconfig/libunwind.pc
-%ifarch %arm %ix86 x86_64 aarch64
-%{_libdir}/pkgconfig/libunwind-coredump.pc
-%endif
-%doc %{_mandir}/man?/*
+%{_libdir}/libunwind*.a
+%{_libdir}/libunwind*.so
+%{_libdir}/pkgconfig/libunwind*.pc
 
 %changelog



Reply via email to