Hello community,

here is the log from the commit of package bitcoin for openSUSE:Factory checked 
in at 2015-08-10 09:16:00
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bitcoin (Old)
 and      /work/SRC/openSUSE:Factory/.bitcoin.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bitcoin"

Changes:
--------
--- /work/SRC/openSUSE:Factory/bitcoin/bitcoin.changes  2015-07-20 
11:23:09.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.bitcoin.new/bitcoin.changes     2015-08-10 
09:16:02.000000000 +0200
@@ -1,0 +2,6 @@
+Fri Aug  7 10:17:04 UTC 2015 - [email protected]
+
+- new patch for ppc64le build and remove ExcludeArch ppc ppc64
+  bitcoin_missing_ppc64le_in_ax_boost_base.m4.patch
+
+-------------------------------------------------------------------

New:
----
  bitcoin_missing_ppc64le_in_ax_boost_base.m4.patch

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

Other differences:
------------------
++++++ bitcoin.spec ++++++
--- /var/tmp/diff_new_pack.C36zze/_old  2015-08-10 09:16:03.000000000 +0200
+++ /var/tmp/diff_new_pack.C36zze/_new  2015-08-10 09:16:03.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bitcoin
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2011-2014  P Rusnak <[email protected]>
 #
 # All modifications and additions to the file contributed by third parties
@@ -30,6 +30,7 @@
 Source3:        bitcoind.conf
 # PATCH-FIX-OPENSUSE bitcoin-fix-desktop-icon-name.patch [email protected] 
-- Rename icon in desktop file to remove size reference.
 Patch0:         bitcoin-fix-desktop-icon-name.patch
+Patch1:         bitcoin_missing_ppc64le_in_ax_boost_base.m4.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  boost-devel
@@ -53,7 +54,6 @@
 Requires(postun): update-desktop-files
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %{?systemd_requires}
-ExcludeArch:    ppc64 ppc
 
 %description
 Bitcoin is a free open source peer-to-peer electronic cash system that is 
completely decentralized, without the need for a central server or trusted 
parties. Users hold the crypto keys to their own money and transact directly 
with each other, with the help of a P2P network to check for double-spending.
@@ -129,6 +129,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 autoreconf -fiv

++++++ bitcoin_missing_ppc64le_in_ax_boost_base.m4.patch ++++++
From: Michel Normand <[email protected]>
Subject: bitcoin missing ppc64le in ax_boost_base.m4
Date: Fri, 07 Aug 2015 11:39:49 +0200

bitcoin missing ppc64le in ax_boost_base.m4
that is the cause of following error message:
===
[  138s] checking whether the Boost::System library is available... yes
[  138s] configure: error: Could not find a version of the boost_system library!
===

Signed-off-by: Michel Normand <[email protected]>
---
 build-aux/m4/ax_boost_base.m4 |    3 +++
 1 file changed, 3 insertions(+)

Index: bitcoin-0.11.0/build-aux/m4/ax_boost_base.m4
===================================================================
--- bitcoin-0.11.0.orig/build-aux/m4/ax_boost_base.m4
+++ bitcoin-0.11.0/build-aux/m4/ax_boost_base.m4
@@ -98,6 +98,9 @@ if test "x$want_boost" = "xyes"; then
       ppc64|s390x|sparc64|aarch64)
         libsubdirs="lib64 lib lib64"
         ;;
+      ppc64le)
+        libsubdirs="lib64"
+        ;;
     esac
 
     dnl allow for real multi-arch paths e.g. /usr/lib/x86_64-linux-gnu. Give

Reply via email to