Hello community,

here is the log from the commit of package votca-xtp for openSUSE:Factory 
checked in at 2020-06-23 21:05:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/votca-xtp (Old)
 and      /work/SRC/openSUSE:Factory/.votca-xtp.new.2956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "votca-xtp"

Tue Jun 23 21:05:35 2020 rev:4 rq:816423 version:1.6.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/votca-xtp/votca-xtp.changes      2020-06-15 
20:27:24.445729319 +0200
+++ /work/SRC/openSUSE:Factory/.votca-xtp.new.2956/votca-xtp.changes    
2020-06-23 21:05:53.482093619 +0200
@@ -1,0 +2,8 @@
+Mon Jun 22 12:27:47 UTC 2020 - Christoph Junghans <[email protected]>
+
+- Update to 1.6.1
+  - fix warnings on Ubuntu 20.04 ([gh#votca/xtp#438],
+    [gh#votca/xtp#460])
+  - remove obsolete boost define ([gh#votca/xtp#440])
+
+-------------------------------------------------------------------

Old:
----
  votca-xtp-1.6.tar.gz

New:
----
  votca-xtp-1.6.1.tar.gz

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

Other differences:
------------------
++++++ votca-xtp.spec ++++++
--- /var/tmp/diff_new_pack.NIt6Ov/_old  2020-06-23 21:05:54.042095429 +0200
+++ /var/tmp/diff_new_pack.NIt6Ov/_new  2020-06-23 21:05:54.046095441 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           votca-xtp
-Version:        1.6
+Version:        1.6.1
 Release:        0
 %define         uversion %{version}
 %define         sover 6

++++++ votca-xtp-1.6.tar.gz -> votca-xtp-1.6.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xtp-1.6/CHANGELOG.md new/xtp-1.6.1/CHANGELOG.md
--- old/xtp-1.6/CHANGELOG.md    2020-04-18 05:01:30.000000000 +0200
+++ new/xtp-1.6.1/CHANGELOG.md  2020-06-21 15:20:24.000000000 +0200
@@ -1,6 +1,10 @@
 For more detailed information about the changes see the history of the
 [repository](https://github.com/votca/xtp/commits/master).
 
+## Version 1.6.1 (released 21.06.20)
+* fix warnings on Ubuntu 20.04 (#438, #460)
+* remove obsolete boost define (#440)
+
 ## Version 1.6 _SuperPelagia_ (released 17.04.20)
 * fix 32-bit build (#381, #380)
 * remove duplicated basissets (#384, #386, #387)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xtp-1.6/CMakeLists.txt new/xtp-1.6.1/CMakeLists.txt
--- old/xtp-1.6/CMakeLists.txt  2020-04-18 05:01:30.000000000 +0200
+++ new/xtp-1.6.1/CMakeLists.txt        2020-06-21 15:20:24.000000000 +0200
@@ -2,7 +2,7 @@
 project(votca-xtp)
 
 
-set(PROJECT_VERSION "1.6")
+set(PROJECT_VERSION "1.6.1")
 set(PROJECT_CONTACT "[email protected]")
 string(REGEX REPLACE "^[1-9]+\\.([1-9]+).*$" "\\1" SOVERSION 
"${PROJECT_VERSION}")
 if (NOT ${SOVERSION} MATCHES "[1-9]+")
@@ -18,8 +18,6 @@
 endif(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CXX_FLAGS)
 if(CMAKE_BUILD_TYPE STREQUAL Debug)
   add_definitions(-DDEBUG)
-elseif(CMAKE_BUILD_TYPE STREQUAL Release)
-  add_definitions(-DBOOST_UBLAS_NDEBUG)
 endif()
 
 enable_language(CXX)
@@ -47,10 +45,18 @@
 find_package(LIBXC REQUIRED)
 find_package(HDF5 1.8 REQUIRED COMPONENTS CXX)
 
-if (${HDF5_VERSION} GREATER 1.8)
+if(HDF5_VERSION VERSION_GREATER 1.8)
   message(WARNING "HDF5 will be used such that it is compatible with version 
1.8.")
 endif()
 
+# https://github.com/votca/xtp/issues/436, hdf5-1.10.4 generates a 
implicitly-declared operator warning
+if(HDF5_VERSION VERSION_GREATER_EQUAL 1.10.4 AND HDF5_VERSION 
VERSION_LESS_EQUAL 1.10.6)
+  include(CheckCXXCompilerFlag)
+  check_cxx_compiler_flag("-Wno-deprecated-copy" 
COMPILER_SUPPORTS_WNO_DEPRECATED_COPY)
+  if(COMPILER_SUPPORTS_WNO_DEPRECATED_COPY)
+    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-copy")
+  endif()
+endif()
 
 option(BUILD_SHARED_LIBS "Build shared libs" ON)
 include(GNUInstallDirs)


Reply via email to