Hello community,
here is the log from the commit of package qore-sqlite3-module for
openSUSE:Factory checked in at 2015-08-31 22:59:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qore-sqlite3-module (Old)
and /work/SRC/openSUSE:Factory/.qore-sqlite3-module.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qore-sqlite3-module"
Changes:
--------
--- /work/SRC/openSUSE:Factory/qore-sqlite3-module/qore-sqlite3-module.changes
2014-08-25 11:04:13.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.qore-sqlite3-module.new/qore-sqlite3-module.changes
2015-08-31 22:59:45.000000000 +0200
@@ -1,0 +2,6 @@
+Mon Aug 31 03:54:29 UTC 2015 - [email protected]
+
+- new patch for ppc64le
+ qore_sqlite3_module_add_ppc64le_to_config_guess.patch
+
+-------------------------------------------------------------------
New:
----
qore_sqlite3_module_add_ppc64le_to_config_guess.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ qore-sqlite3-module.spec ++++++
--- /var/tmp/diff_new_pack.bfZFno/_old 2015-08-31 22:59:45.000000000 +0200
+++ /var/tmp/diff_new_pack.bfZFno/_new 2015-08-31 22:59:45.000000000 +0200
@@ -1,7 +1,7 @@
#
# spec file for package qore-sqlite3-module
#
-# Copyright (c) 2014 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
@@ -26,6 +26,7 @@
Group: Development/Languages/Other
Url: http://www.qore.org
Source:
http://prdownloads.sourceforge.net/qore/%{name}-%{version}.tar.gz
+Patch1: qore_sqlite3_module_add_ppc64le_to_config_guess.patch
BuildRequires: gcc-c++
BuildRequires: openssl-devel
BuildRequires: qore
@@ -53,7 +54,8 @@
%prep
%setup -q
-%ifarch x86_64 ppc64 x390x
+%patch1 -p1
+%ifarch x86_64 ppc64 ppc64le x390x
c64=--enable-64bit
%endif
CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" ./configure
RPM_OPT_FLAGS="%{optflags}" --prefix=/usr --disable-debug $c64
@@ -61,7 +63,6 @@
find test -type f|xargs chmod 644
find docs -type f|xargs chmod 644
-
%build
make %{?_smp_mflags}
++++++ qore_sqlite3_module_add_ppc64le_to_config_guess.patch ++++++
From: Michel Normand <[email protected]>
Subject: qore sqlite3 module add ppc64le to config guess
Date: Mon, 31 Aug 2015 05:50:04 +0200
qore sqlite3 module add ppc64le to config guess
Signed-off-by: Michel Normand <[email protected]>
---
config.guess | 3 +++
1 file changed, 3 insertions(+)
Index: qore-sqlite3-module-1.0.1/config.guess
===================================================================
--- qore-sqlite3-module-1.0.1.orig/config.guess
+++ qore-sqlite3-module-1.0.1/config.guess
@@ -952,6 +952,9 @@ EOF
ppc64:Linux:*:*)
echo powerpc64-unknown-linux-gnu
exit ;;
+ ppc64le:Linux:*:*)
+ echo powerpc64le-unknown-linux-gnu
+ exit ;;
ppc:Linux:*:*)
echo powerpc-unknown-linux-gnu
exit ;;