Hello community,

here is the log from the commit of package boost for openSUSE:Factory checked 
in at 2016-02-03 10:18:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/boost (Old)
 and      /work/SRC/openSUSE:Factory/.boost.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "boost"

Changes:
--------
--- /work/SRC/openSUSE:Factory/boost/boost.changes      2016-01-07 
00:19:34.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.boost.new/boost.changes 2016-02-03 
10:18:35.000000000 +0100
@@ -1,0 +2,6 @@
+Mon Jan 18 13:50:06 UTC 2016 - idon...@suse.com
+
+- Add boost-deprecated-type_traits.patch to fix deprecated
+  type_traits usage in boost/graph/adjacency_matrix.hpp header.
+
+-------------------------------------------------------------------

New:
----
  boost-deprecated-type_traits.patch

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

Other differences:
------------------
++++++ boost.spec ++++++
--- /var/tmp/diff_new_pack.TwGSTO/_old  2016-02-03 10:18:38.000000000 +0100
+++ /var/tmp/diff_new_pack.TwGSTO/_new  2016-02-03 10:18:38.000000000 +0100
@@ -88,7 +88,7 @@
 Patch14:        boost-1.57.0-python-libpython_dep.patch
 Patch15:        boost-1.57.0-python-abi_letters.patch
 Patch16:        boost-1.55.0-python-test-PyImport_AppendInittab.patch
-
+Patch17:        boost-deprecated-type_traits.patch
 BuildRequires:  chrpath
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
@@ -442,6 +442,7 @@
 %patch14 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17 -p1
 
 #stupid build machinery copies .orig files
 find . -name \*.orig -exec rm {} +


++++++ boost-deprecated-type_traits.patch ++++++
Index: boost_1_60_0/boost/graph/adjacency_matrix.hpp
===================================================================
--- boost_1_60_0.orig/boost/graph/adjacency_matrix.hpp
+++ boost_1_60_0/boost/graph/adjacency_matrix.hpp
@@ -443,7 +443,7 @@ namespace boost {
     // graph type. Instead, use directedS, which also provides the
     // functionality required for a Bidirectional Graph (in_edges,
     // in_degree, etc.).
-    BOOST_STATIC_ASSERT(type_traits::ice_not<(is_same<Directed, 
bidirectionalS>::value)>::value);
+    BOOST_STATIC_ASSERT(!(is_same<Directed, bidirectionalS>::value));
 
     typedef typename mpl::if_<is_directed,
                                     bidirectional_tag, undirected_tag>::type

Reply via email to