forked from pool/boost
Accepting request 527532 from home:adamm:branches:devel:libraries:c_c++
- New upstream version 1.65.1
+ config, fiber - Return a continuation from functions executed
by resume_with.
+ stacktrace - Change preprocessor file extensions to work with
the installation system.
- Changes in version 1.65.0
+ stacktrace - new library providing call sequence in human
readable format.
+ polycollection - new library providing fast containers of
polymorphic objects, from Joaquín M López Muñoz.
+ For full list of changes, see
http://www.boost.org/users/history/version_1_65_1.html
- 1d862615.patch: upstreamed and removed
- gcc_path.patch: obsolete, tr1 module is removed
- mpi_upstream.patch: upstreamed and removed
- boost-1.57.0-python-abi_letters.patch: refreshed
- python_library_name.patch: refreshed and reverted upstream
changes to mpi/build/Jamfile as we are building python2 and
python3 versions of MPI separately.
- baselibs.conf
+ add libboost_stracktrace
+ update to version 1.65.1
OBS-URL: https://build.opensuse.org/request/show/527532
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/boost?expand=0&rev=199
This commit is contained in:
@@ -27,10 +27,10 @@ MPI module needs to reference correct python
|
||||
~ <library>boost_mpi_python
|
||||
~ <library>boost_mpi
|
||||
~ <library>/mpi//mpi [ mpi.extra-requirements ]
|
||||
Index: boost_1_64_0/libs/python/build/Jamfile
|
||||
Index: boost_1_65_0/libs/python/build/Jamfile
|
||||
===================================================================
|
||||
--- boost_1_64_0.orig/libs/python/build/Jamfile
|
||||
+++ boost_1_64_0/libs/python/build/Jamfile
|
||||
--- boost_1_65_0.orig/libs/python/build/Jamfile
|
||||
+++ boost_1_65_0/libs/python/build/Jamfile
|
||||
@@ -42,15 +42,15 @@ rule cond ( test ? : yes * : no * ) { if
|
||||
rule unless ( test ? : yes * : no * ) { if ! $(test) { return $(yes) ; } else { return $(no) ; } }
|
||||
local rule eq ( a : b ) { if $(a) = $(b) { return 1 ; } }
|
||||
@@ -50,9 +50,9 @@ Index: boost_1_64_0/libs/python/build/Jamfile
|
||||
- lib $(lib_boost_python($(version)))
|
||||
+ lib boost_python #$(lib_boost_python($(version)))
|
||||
: # sources
|
||||
numeric.cpp
|
||||
list.cpp
|
||||
@@ -122,16 +122,16 @@ rule lib_boost_python ( version )
|
||||
long.cpp
|
||||
@@ -121,16 +121,16 @@ rule lib_boost_python ( version )
|
||||
;
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ Index: boost_1_64_0/libs/python/build/Jamfile
|
||||
: # sources
|
||||
numpy/dtype.cpp
|
||||
numpy/matrix.cpp
|
||||
@@ -173,7 +173,7 @@ for local N in 2 3
|
||||
@@ -172,7 +172,7 @@ for local N in 2 3
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -83,7 +83,7 @@ Index: boost_1_64_0/libs/python/build/Jamfile
|
||||
}
|
||||
if $(py$(N)-version) && [ python.numpy ]
|
||||
{
|
||||
@@ -182,7 +182,7 @@ for local N in 2 3
|
||||
@@ -181,7 +181,7 @@ for local N in 2 3
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -92,3 +92,85 @@ Index: boost_1_64_0/libs/python/build/Jamfile
|
||||
}
|
||||
}
|
||||
|
||||
Index: boost_1_65_0/libs/mpi/build/Jamfile.v2
|
||||
===================================================================
|
||||
--- boost_1_65_0.orig/libs/mpi/build/Jamfile.v2
|
||||
+++ boost_1_65_0/libs/mpi/build/Jamfile.v2
|
||||
@@ -58,33 +58,13 @@ libraries += boost_mpi ;
|
||||
|
||||
if [ python.configured ]
|
||||
{
|
||||
- py2-version = [ py-version 2 ] ;
|
||||
- py3-version = [ py-version 3 ] ;
|
||||
-
|
||||
- # These library names are synchronized with those defined by Boost.Python, see libs/python/build/Jamfile.
|
||||
- lib_boost_python(2) = boost_python ;
|
||||
- lib_boost_python(3) = boost_python3 ;
|
||||
-
|
||||
- lib_boost_python($(py2-version)) = $(lib_boost_python(2)) ;
|
||||
- lib_boost_python($(py3-version)) = $(lib_boost_python(3)) ;
|
||||
-
|
||||
- lib_boost_mpi_python(2) = boost_mpi_python ;
|
||||
- lib_boost_mpi_python(3) = boost_mpi_python3 ;
|
||||
-
|
||||
- lib_boost_mpi_python($(py2-version)) = $(lib_boost_mpi_python(2)) ;
|
||||
- lib_boost_mpi_python($(py3-version)) = $(lib_boost_mpi_python(3)) ;
|
||||
-
|
||||
- for local N in 2 3
|
||||
- {
|
||||
- if $(py$(N)-version)
|
||||
- {
|
||||
- lib $(lib_boost_mpi_python($(py$(N)-version)))
|
||||
+ lib boost_mpi_python
|
||||
: # Sources
|
||||
python/serialize.cpp
|
||||
: # Requirements
|
||||
<library>boost_mpi
|
||||
<library>/mpi//mpi [ mpi.extra-requirements ]
|
||||
- <library>/boost/python//$(lib_boost_python($(py$(N)-version)))
|
||||
+ <library>/boost/python//boost_python
|
||||
<link>shared:<define>BOOST_MPI_DYN_LINK=1
|
||||
<link>shared:<define>BOOST_MPI_PYTHON_DYN_LINK=1
|
||||
<link>shared:<define>BOOST_PYTHON_DYN_LINK=1
|
||||
@@ -92,12 +72,12 @@ libraries += boost_mpi ;
|
||||
-<tag>@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).tag
|
||||
<tag>@$(BOOST_JAMROOT_MODULE)%$(BOOST_JAMROOT_MODULE).python-tag
|
||||
<python-debugging>on:<define>BOOST_DEBUG_PYTHON
|
||||
- <python>$(py$(N)-version)
|
||||
: # Default build
|
||||
<link>shared
|
||||
: # Usage requirements
|
||||
<library>/mpi//mpi [ mpi.extra-requirements ]
|
||||
;
|
||||
+ libraries += boost_mpi_python ;
|
||||
|
||||
python-extension mpi
|
||||
: # Sources
|
||||
@@ -114,8 +94,8 @@ libraries += boost_mpi ;
|
||||
python/status.cpp
|
||||
python/py_timer.cpp
|
||||
: # Requirements
|
||||
- <library>/boost/python//$(lib_boost_python($(py$(N)-version)))
|
||||
- <library>$(lib_boost_mpi_python($(py$(N)-version)))
|
||||
+ <library>/boost/python//boost_python
|
||||
+ <library>boost_mpi_python
|
||||
<library>boost_mpi
|
||||
<library>/mpi//mpi [ mpi.extra-requirements ]
|
||||
<link>shared:<define>BOOST_MPI_DYN_LINK=1
|
||||
@@ -123,16 +103,7 @@ libraries += boost_mpi ;
|
||||
<link>shared:<define>BOOST_PYTHON_DYN_LINK=1
|
||||
<link>shared <runtime-link>shared
|
||||
<python-debugging>on:<define>BOOST_DEBUG_PYTHON
|
||||
- <python>$(py$(N)-version)
|
||||
;
|
||||
-
|
||||
- libraries += $(lib_boost_mpi_python($(py$(N)-version))) ;
|
||||
- }
|
||||
- else
|
||||
- {
|
||||
- alias $(lib_boost_mpi_python($(N))) ;
|
||||
- }
|
||||
- }
|
||||
}
|
||||
}
|
||||
else if ! ( --without-mpi in [ modules.peek : ARGV ] )
|
||||
|
||||
Reference in New Issue
Block a user