Hello community,

here is the log from the commit of package tbb for openSUSE:Factory checked in 
at 2017-12-29 00:01:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/tbb (Old)
 and      /work/SRC/openSUSE:Factory/.tbb.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "tbb"

Fri Dec 29 00:01:50 2017 rev:12 rq:559074 version:2018_20171205

Changes:
--------
--- /work/SRC/openSUSE:Factory/tbb/tbb.changes  2017-12-19 10:43:43.545572866 
+0100
+++ /work/SRC/openSUSE:Factory/.tbb.new/tbb.changes     2017-12-29 
00:01:58.297052469 +0100
@@ -1,0 +2,6 @@
+Thu Dec 21 12:20:59 UTC 2017 - idon...@suse.com
+
+- Add disable-irml.patch to disable linking to libirml
+- Actually update to tarball to 2018_U2 release
+
+-------------------------------------------------------------------

Old:
----
  2018.tar.gz

New:
----
  2018_U2.tar.gz
  disable-irml.patch

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

Other differences:
------------------
++++++ tbb.spec ++++++
--- /var/tmp/diff_new_pack.v2sA4V/_old  2017-12-29 00:01:58.916874808 +0100
+++ /var/tmp/diff_new_pack.v2sA4V/_new  2017-12-29 00:01:58.916874808 +0100
@@ -16,20 +16,22 @@
 #
 
 
-%define rel_ver 2018
+%define rel_ver 2018_U2
 %define so_ver 2
 Name:           tbb
-Version:        2018_U2
+Version:        2018_20171205
 Release:        0
 Summary:        Threading Building Blocks (TBB)
 License:        Apache-2.0
 Group:          Development/Libraries/C and C++
 Url:            https://www.threadingbuildingblocks.org/
-Source0:        https://github.com/01org/tbb/archive/%{rel_ver}.tar.gz
+Source0:        https://github.com/01org/tbb/archive/2018_U2.tar.gz
 # PATCH-FIX-OPENSUSE optflags.patch -- Use rpm optflags
 Patch1:         optflags.patch
 # PATCH-FIX-OPENSUSE reproducible.patch -- Do not compile build 
hostname+kernel into binary
 Patch2:         reproducible.patch
+# PATCH-FIX-OPENSUSE disable-irml.patch -- Don't try to link to irml
+Patch3:         disable-irml.patch
 BuildRequires:  gcc-c++
 BuildRequires:  python2-devel
 BuildRequires:  python3-devel
@@ -107,6 +109,7 @@
 %setup -q -n %{name}-%{rel_ver}
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 make OPTFLAGS="%{optflags}" %{?_smp_mflags} tbb_build_prefix=obj

++++++ disable-irml.patch ++++++
Index: tbb-2018_U2/python/setup.py
===================================================================
--- tbb-2018_U2.orig/python/setup.py
+++ tbb-2018_U2/python/setup.py
@@ -71,7 +71,7 @@ _tbb = Extension("tbb._api", ["tbb/api.i
         extra_compile_args=compile_flags + tbb_flag,
         extra_link_args=tbb_flag,
         libraries   =(['tbb'] if not use_compiler_tbb else []) +
-                     (['irml'] if platform.system() == "Linux" else []),   # 
TODO: why do we need this?
+                     (['irml'] if platform.system() == "xLinux" else []),   # 
TODO: why do we need this?
         library_dirs=[ rundir,                                              # 
for custom-builds
                        os.path.join(tbb_root, 'lib', 'intel64', 'gcc4.4'),  # 
for Linux
                        os.path.join(tbb_root, 'lib'),                       # 
for MacOS

Reply via email to