Hello community,

here is the log from the commit of package ffado for openSUSE:Factory checked 
in at 2015-03-16 06:58:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ffado (Old)
 and      /work/SRC/openSUSE:Factory/.ffado.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ffado"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ffado/ffado-mixer.changes        2014-09-23 
10:42:28.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.ffado.new/ffado-mixer.changes   2015-03-16 
06:58:33.000000000 +0100
@@ -1,0 +2,6 @@
+Wed Mar 11 13:58:21 UTC 2015 - norm...@linux.vnet.ibm.com
+
+- SConstruct is_powerpc and is_64bit to support ppc64le
+  with new ffado_SConstruct_powerpc_update.patch
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/ffado/ffado.changes      2015-03-09 
10:03:49.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ffado.new/ffado.changes 2015-03-16 
06:58:33.000000000 +0100
@@ -1,0 +2,6 @@
+Wed Mar 11 13:57:03 UTC 2015 - norm...@linux.vnet.ibm.com
+
+- SConstruct is_powerpc and is_64bit to support ppc64le
+  with new ffado_SConstruct_powerpc_update.patch
+
+-------------------------------------------------------------------

New:
----
  ffado_SConstruct_powerpc_update.patch

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

Other differences:
------------------
++++++ ffado-mixer.spec ++++++
--- /var/tmp/diff_new_pack.plUHtE/_old  2015-03-16 06:58:34.000000000 +0100
+++ /var/tmp/diff_new_pack.plUHtE/_new  2015-03-16 06:58:34.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ffado-mixer
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -25,6 +25,7 @@
 Group:          Productivity/Multimedia/Other
 Url:            http://www.ffado.org/
 Source0:        %{tname}-%{version}.tar.bz2
+Patch1:         ffado_SConstruct_powerpc_update.patch
 BuildRequires:  alsa-devel
 BuildRequires:  dbus-1-python-devel
 BuildRequires:  doxygen
@@ -74,6 +75,7 @@
 
 %prep
 %setup -n %{tname}-%{version} -q
+%patch1 -p1
 
 %build
 scons %{?jobs:--jobs=%jobs} \

++++++ ffado.spec ++++++
--- /var/tmp/diff_new_pack.plUHtE/_old  2015-03-16 06:58:34.000000000 +0100
+++ /var/tmp/diff_new_pack.plUHtE/_new  2015-03-16 06:58:34.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ffado
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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
@@ -38,6 +38,7 @@
 #Source2:        ChangeLog
 # No current date and time allowed.
 Patch0:         libffado-date_time.patch
+Patch1:         ffado_SConstruct_powerpc_update.patch
 BuildRequires:  alsa-devel
 BuildRequires:  dbus-1-python-devel
 BuildRequires:  fdupes
@@ -105,6 +106,7 @@
 %prep
 %setup -n %{tname}-%{version} -q
 %patch0
+%patch1 -p1
 # The svn repo is actually unavailable
 #cp %%{SOURCE2} .
 

++++++ ffado_SConstruct_powerpc_update.patch ++++++
From: Michel Normand <norm...@linux.vnet.ibm.com>
Subject: ffado SConstruct powerpc update
Date: Fri, 06 Mar 2015 18:50:20 +0100

ffado SConstruct powerpc update
modify the is_powerpc and is_64bit to support PowerPC LE
(to be checked with Debian/Ubuntu env)

Signed-off-by: Michel Normand <norm...@linux.vnet.ibm.com>
---
 SConstruct |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Index: libffado-2.2.1/SConstruct
===================================================================
--- libffado-2.2.1.orig/SConstruct
+++ libffado-2.2.1/SConstruct
@@ -527,7 +527,7 @@ class CpuInfo (object):
         # general CPU architecture
         self.is_x86 = self.machine in ('i686', 'x86_64') or \
                       re.match("i[3-5]86", self.machine) or False
-        self.is_powerpc = self.machine in ('ppc64', 'ppc', 'powerpc', 
'powerpc64')
+        self.is_powerpc = self.machine in ('ppc64', 'ppc', 'powerpc', 
'powerpc64', 'ppc64le')
         #!!! probably not comprehensive
         self.is_mips = self.machine == 'mips'
         #!!! not a comprehensive list. uname -m on one android phone reports 
'armv71'
@@ -545,7 +545,8 @@ class CpuInfo (object):
         # 64-bit (x86_64/AMD64/Intel64)
         # Long Mode (x86-64: amd64, also known as Intel 64, i.e. 64-bit 
capable)
         self.is_64bit = (self.is_x86 and 'lm' in self.x86_flags) or \
-                        (self.is_powerpc and '970' in self.ppc_type)
+                        (self.is_powerpc and '970' in self.ppc_type) or \
+                        (self.machine in ('ppc64', 'powerpc64', 'ppc64le')) or 
False
 
         # Hardware virtualization capable: vmx (Intel), svm (AMD)
         self.has_hwvirt = self.is_x86 and (
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to