From d86a96742d6e6b615578d065d8ec718a703bf272 Mon Sep 17 00:00:00 2001 From: Christoph Junghans Date: Mon, 6 Mar 2017 15:16:08 -0700 Subject: espresso: update patch again --- espresso/1056.patch | 104 ++++++++++++++++++++++++++++++++-------------------- 1 file changed, 64 insertions(+), 40 deletions(-) diff --git a/espresso/1056.patch b/espresso/1056.patch index 18a478e..f9343e1 100644 --- a/espresso/1056.patch +++ b/espresso/1056.patch @@ -1,4 +1,4 @@ -From d075cbaa80ce0b484c8422be27c5b5680f6abee4 Mon Sep 17 00:00:00 2001 +From 41ed46726836f1dd654d9c771127f9c14c2304a3 Mon Sep 17 00:00:00 2001 From: Christoph Junghans Date: Fri, 3 Mar 2017 16:05:45 -0700 Subject: [PATCH] cmake: install all shared libs in back in libdir @@ -7,25 +7,36 @@ some libraries weren't installed and the python module path isn't in the LD_LIBRARY_PATH and hence partly revert 80ad49e954f4a6590707fd86e4fd586682ad626d --- - CMakeLists.txt | 4 ++++ - src/core/CMakeLists.txt | 4 ++-- - src/core/actor/CMakeLists.txt | 4 ++-- - src/core/constraints/CMakeLists.txt | 1 + - src/core/correlators/CMakeLists.txt | 1 + - src/core/immersed_boundary/CMakeLists.txt | 4 ++-- - src/core/object-in-fluid/CMakeLists.txt | 2 +- - src/core/observables/CMakeLists.txt | 1 + + CMakeLists.txt | 8 ++++++++ + src/core/CMakeLists.txt | 6 ++++-- + src/core/actor/CMakeLists.txt | 6 ++++-- + src/core/constraints/CMakeLists.txt | 2 ++ + src/core/correlators/CMakeLists.txt | 2 ++ + src/core/immersed_boundary/CMakeLists.txt | 6 ++++-- + src/core/object-in-fluid/CMakeLists.txt | 3 ++- + src/core/observables/CMakeLists.txt | 2 ++ src/core/scafacos/CMakeLists.txt | 2 +- - src/core/shapes/CMakeLists.txt | 1 + - src/core/utils/CMakeLists.txt | 1 + - src/script_interface/CMakeLists.txt | 1 + - 12 files changed, 18 insertions(+), 8 deletions(-) + src/core/shapes/CMakeLists.txt | 2 ++ + src/core/utils/CMakeLists.txt | 2 ++ + src/script_interface/CMakeLists.txt | 2 ++ + 12 files changed, 35 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt -index cf49c40..7a8bc15 100644 +index cf49c40..8b20b57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -238,6 +238,10 @@ if (NOT DEFINED DATA) +@@ -25,6 +25,10 @@ project(ESPResSo) + enable_language(CXX) + + set(PROJECT_VERSION "4.0-dev") ++string(REGEX REPLACE "^([1-9]+)\\.[0-9]+.*$" "\\1" SOVERSION "${PROJECT_VERSION}") ++if (NOT ${SOVERSION} MATCHES "^[1-9]+$") ++ message(FATAL_ERROR "Could not determind SOVERSION from ${PROJECT_VERSION}") ++endif (NOT ${SOVERSION} MATCHES "^[1-9]+$") + + ###################################################################### + # CMake internal vars +@@ -238,6 +242,10 @@ if (NOT DEFINED DATA) set(DATA "share/espresso") endif(NOT DEFINED DATA) @@ -37,108 +48,118 @@ index cf49c40..7a8bc15 100644 set(BINDIR "bin") endif(NOT DEFINED BINDIR) diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt -index 9982a54..13bb052 100644 +index 9982a54..1ff96ed 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt -@@ -23,7 +23,7 @@ add_custom_target(EspressoConfig DEPENDS config-features.hpp config-features.cpp +@@ -23,7 +23,8 @@ add_custom_target(EspressoConfig DEPENDS config-features.hpp config-features.cpp add_dependencies(EspressoConfig myconfig) add_library(EspressoCore SHARED ${EspressoCore_SRC} config-features.cpp config-version.cpp) -install(TARGETS EspressoCore LIBRARY DESTINATION ${PYTHON_INSTDIR}) +install(TARGETS EspressoCore LIBRARY DESTINATION ${LIBDIR}) ++set_target_properties(EspressoCore PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(EspressoCore EspressoConfig) target_link_libraries(EspressoCore ${LIBRARIES} Actor ObjectInFluid ImmersedBoundary Shapes Constraints EspressoUtils Correlators Observables) -@@ -43,7 +43,7 @@ if(CUDA) +@@ -43,7 +44,8 @@ if(CUDA) cuda_include_directories(${CMAKE_CURRENT_BINARY_DIR}) cuda_add_library(EspressoCuda SHARED ${EspressoCuda_SRC}) - install(TARGETS EspressoCuda DESTINATION ${PYTHON_INSTDIR}) -+ install(TARGETS EspressoCuda DESTINATION ${PYTHON_INSTDIR}/espressomd) ++ install(TARGETS EspressoCuda DESTINATION ${LIBDIR}) ++ set_target_properties(EspressoCuda PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(EspressoCuda EspressoConfig) set_target_properties(EspressoCuda PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/core/actor/CMakeLists.txt b/src/core/actor/CMakeLists.txt -index 0421243..1b5eafe 100644 +index 0421243..274c412 100644 --- a/src/core/actor/CMakeLists.txt +++ b/src/core/actor/CMakeLists.txt -@@ -1,7 +1,7 @@ +@@ -1,7 +1,8 @@ file(GLOB Actor_SRC *.cpp) add_library(Actor SHARED ${Actor_SRC}) -install(TARGETS Actor LIBRARY DESTINATION ${PYTHON_INSTDIR} ARCHIVE DESTINATION ${PYTHON_INSTDIR}) +install(TARGETS Actor LIBRARY DESTINATION ${LIBDIR} ARCHIVE DESTINATION ${LIBDIR}) ++set_target_properties(Actor PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(Actor EspressoConfig) set_target_properties(Actor PROPERTIES MACOSX_RPATH TRUE) -@@ -9,7 +9,7 @@ set_target_properties(Actor PROPERTIES MACOSX_RPATH TRUE) +@@ -9,7 +10,8 @@ set_target_properties(Actor PROPERTIES MACOSX_RPATH TRUE) if(CUDA) file(GLOB ActorCuda_SRC *.cu) cuda_add_library(ActorCuda SHARED ${ActorCuda_SRC}) - install(TARGETS ActorCuda DESTINATION ${PYTHON_INSTDIR}) -+ install(TARGETS ActorCuda DESTINATION ${PYTHON_INSTDIR}/espressomd) ++ install(TARGETS ActorCuda DESTINATION ${LIBDIR}) ++ set_target_properties(ActorCuda PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(ActorCuda EspressoConfig) add_dependencies(Actor ActorCuda) diff --git a/src/core/constraints/CMakeLists.txt b/src/core/constraints/CMakeLists.txt -index 0f5c043..d07ad77 100644 +index 0f5c043..5bb414c 100644 --- a/src/core/constraints/CMakeLists.txt +++ b/src/core/constraints/CMakeLists.txt -@@ -1,4 +1,5 @@ +@@ -1,4 +1,6 @@ file(GLOB Constraints_SRC Constraint.cpp) add_library(Constraints SHARED ${Constraints_SRC}) +install(TARGETS Constraints LIBRARY DESTINATION ${LIBDIR}) ++set_target_properties(Constraints PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(Constraints EspressoConfig) set_target_properties(Constraints PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/core/correlators/CMakeLists.txt b/src/core/correlators/CMakeLists.txt -index c5ff02f..fcc3611 100644 +index c5ff02f..3eaf37f 100644 --- a/src/core/correlators/CMakeLists.txt +++ b/src/core/correlators/CMakeLists.txt -@@ -1,4 +1,5 @@ +@@ -1,4 +1,6 @@ file(GLOB Correlators_SRC *.?pp) add_library(Correlators SHARED ${Correlators_SRC}) +install(TARGETS Correlators LIBRARY DESTINATION ${LIBDIR}) ++set_target_properties(Correlators PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(Correlators EspressoConfig) set_target_properties(Correlators PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/core/immersed_boundary/CMakeLists.txt b/src/core/immersed_boundary/CMakeLists.txt -index ec7fb85..8e7285f 100644 +index ec7fb85..d41473e 100644 --- a/src/core/immersed_boundary/CMakeLists.txt +++ b/src/core/immersed_boundary/CMakeLists.txt -@@ -1,13 +1,13 @@ +@@ -1,13 +1,15 @@ file(GLOB ImmersedBoundary_SRC *.cpp) add_library(ImmersedBoundary SHARED ${ImmersedBoundary_SRC}) set_target_properties(ImmersedBoundary PROPERTIES MACOSX_RPATH TRUE) -install(TARGETS ImmersedBoundary LIBRARY DESTINATION ${PYTHON_INSTDIR} ARCHIVE DESTINATION ${PYTHON_INSTDIR}) +install(TARGETS ImmersedBoundary LIBRARY DESTINATION ${LIBDIR} ARCHIVE DESTINATION ${LIBDIR}) ++set_target_properties(ImmersedBoundary PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(ImmersedBoundary EspressoConfig) if(CUDA) file(GLOB ImmersedBoundaryCuda_SRC *.cu) cuda_add_library(ImmersedBoundaryCuda SHARED ${ImmersedBoundaryCuda_SRC}) - install(TARGETS ImmersedBoundaryCuda DESTINATION ${PYTHON_INSTDIR}) -+ install(TARGETS ImmersedBoundaryCuda DESTINATION ${PYTHON_INSTDIR}/espressomd) ++ install(TARGETS ImmersedBoundaryCuda DESTINATION ${LIBDIR}) ++ set_target_properties(ImmersedBoundaryCuda PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(ImmersedBoundaryCuda EspressoConfig) set_target_properties(ImmersedBoundaryCuda PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/core/object-in-fluid/CMakeLists.txt b/src/core/object-in-fluid/CMakeLists.txt -index 7154486..c25228a 100644 +index 7154486..cb64b91 100644 --- a/src/core/object-in-fluid/CMakeLists.txt +++ b/src/core/object-in-fluid/CMakeLists.txt -@@ -1,5 +1,5 @@ +@@ -1,5 +1,6 @@ file(GLOB ObjectInFluid_SRC *.cpp) add_library(ObjectInFluid SHARED ${ObjectInFluid_SRC}) -install(TARGETS ObjectInFluid LIBRARY DESTINATION ${PYTHON_INSTDIR} ARCHIVE DESTINATION ${PYTHON_INSTDIR}) +install(TARGETS ObjectInFluid LIBRARY DESTINATION ${LIBDIR} ARCHIVE DESTINATION ${LIBDIR}) ++set_target_properties(ObjectInFluid PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(ObjectInFluid EspressoConfig) set_target_properties(ObjectInFluid PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/core/observables/CMakeLists.txt b/src/core/observables/CMakeLists.txt -index 9813d86..51ab79d 100644 +index 9813d86..573a362 100644 --- a/src/core/observables/CMakeLists.txt +++ b/src/core/observables/CMakeLists.txt -@@ -1,4 +1,5 @@ +@@ -1,4 +1,6 @@ file(GLOB Observables_SRC *.?pp) add_library(Observables SHARED ${Observables_SRC}) +install(TARGETS Observables LIBRARY DESTINATION ${LIBDIR}) ++set_target_properties(Observables PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(Observables EspressoConfig) set_target_properties(Observables PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/core/scafacos/CMakeLists.txt b/src/core/scafacos/CMakeLists.txt @@ -155,33 +176,36 @@ index 1479683..3028ca0 100644 target_link_libraries(Scafacos ${SCAFACOS_LDFLAGS}) diff --git a/src/core/shapes/CMakeLists.txt b/src/core/shapes/CMakeLists.txt -index 0e5ecaa..5be3a9d 100644 +index 0e5ecaa..b1779a9 100644 --- a/src/core/shapes/CMakeLists.txt +++ b/src/core/shapes/CMakeLists.txt -@@ -1,4 +1,5 @@ +@@ -1,4 +1,6 @@ file(GLOB Shapes_SRC *.cpp) add_library(Shapes SHARED ${Shapes_SRC}) +install(TARGETS Shapes LIBRARY DESTINATION ${LIBDIR}) ++set_target_properties(Shapes PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(Shapes EspressoConfig) set_target_properties(Shapes PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/core/utils/CMakeLists.txt b/src/core/utils/CMakeLists.txt -index ec0f6f7..4cd8ada 100644 +index ec0f6f7..f1f76e4 100644 --- a/src/core/utils/CMakeLists.txt +++ b/src/core/utils/CMakeLists.txt -@@ -1,3 +1,4 @@ +@@ -1,3 +1,5 @@ file(GLOB EspressoUtils_SRC *.cpp) add_library(EspressoUtils SHARED ${EspressoUtils_SRC}) +install(TARGETS EspressoUtils LIBRARY DESTINATION ${LIBDIR}) ++set_target_properties(EspressoUtils PROPERTIES SOVERSION ${SOVERSION}) set_target_properties(EspressoUtils PROPERTIES MACOSX_RPATH TRUE) diff --git a/src/script_interface/CMakeLists.txt b/src/script_interface/CMakeLists.txt -index 8aff034..59c1c9d 100644 +index 8aff034..259e8ee 100644 --- a/src/script_interface/CMakeLists.txt +++ b/src/script_interface/CMakeLists.txt -@@ -28,6 +28,7 @@ if(H5MD) +@@ -28,6 +28,8 @@ if(H5MD) ) endif(H5MD) add_library(EspressoScriptInterface SHARED ${EspressoScriptInterface_SRC}) +install(TARGETS EspressoScriptInterface LIBRARY DESTINATION ${LIBDIR}) ++set_target_properties(EspressoScriptInterface PROPERTIES SOVERSION ${SOVERSION}) add_dependencies(EspressoScriptInterface EspressoConfig EspressoConfig) set_target_properties(EspressoScriptInterface PROPERTIES MACOSX_RPATH TRUE) target_link_libraries(EspressoScriptInterface EspressoCore) -- cgit