Hello community,

here is the log from the commit of package step for openSUSE:Factory checked in 
at 2015-05-15 10:04:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/step (Old)
 and      /work/SRC/openSUSE:Factory/.step.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "step"

Changes:
--------
--- /work/SRC/openSUSE:Factory/step/step.changes        2015-05-11 
19:22:34.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.step.new/step.changes   2015-05-15 
10:04:09.000000000 +0200
@@ -1,0 +2,8 @@
+Mon May 11 11:28:43 UTC 2015 - [email protected]
+
+- Update to KDE Applications 15.04.1
+   * KDE Applications 15.04.1
+   * https://www.kde.org/announcements/announce-applications-15.04.1.php
+
+
+-------------------------------------------------------------------

Old:
----
  step-15.04.0.tar.xz

New:
----
  step-15.04.1.tar.xz

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

Other differences:
------------------
++++++ step.spec ++++++
--- /var/tmp/diff_new_pack.gujyda/_old  2015-05-15 10:04:09.000000000 +0200
+++ /var/tmp/diff_new_pack.gujyda/_new  2015-05-15 10:04:09.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           step
-Version:        15.04.0
+Version:        15.04.1
 Release:        0
 Summary:        An interactive physics simulator
 License:        GPL-2.0+

++++++ step-15.04.0.tar.xz -> step-15.04.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-15.04.0/cmake/modules/FindGSL.cmake 
new/step-15.04.1/cmake/modules/FindGSL.cmake
--- old/step-15.04.0/cmake/modules/FindGSL.cmake        2015-03-22 
10:31:20.000000000 +0100
+++ new/step-15.04.1/cmake/modules/FindGSL.cmake        2015-05-02 
20:16:03.000000000 +0200
@@ -8,29 +8,44 @@
 # Redistribution and use is allowed according to the terms of the BSD license.
 # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
-if (GSL_INCLUDE_DIR AND GSL_LIBRARIES)
+if (GSL_INCLUDE_DIR AND GSL_LIBRARIES AND GSL_CBLAS_LIBRARIES)
 
   # Already in cache, be silent
   set(GSL_FIND_QUIETLY TRUE)
 
-else (GSL_INCLUDE_DIR AND GSL_LIBRARIES)
-  IF (NOT WIN32)
+else (GSL_INCLUDE_DIR AND GSL_LIBRARIES AND GSL_CBLAS_LIBRARIES)
+  if(NOT WIN32)
     # use pkg-config to get the directories and then use these values
     # in the FIND_PATH() and FIND_LIBRARY() calls
-    INCLUDE(UsePkgConfig)
+    include(FindPkgConfig)
+    pkg_check_modules(_pc_GSL gsl)
+  else(NOT WIN32)
+    set(_pc_GSL_FOUND TRUE)
+  endif(NOT WIN32)
+
+  if(_pc_GSL_FOUND)
+    find_library(GSL_LIBRARIES
+      NAMES gsl
+      HINTS ${_pc_GSL_LIBRARY_DIRS} ${CMAKE_LIBRARY_PATH}
+    )
+
+    find_library(GSL_CBLAS_LIBRARIES
+      NAMES gslcblas
+      HINTS ${_pc_GSL_LIBRARY_DIRS} ${CMAKE_LIBRARY_PATH}
+    )
+
+    find_path(GSL_INCLUDE_DIR
+      NAMES gsl/gsl_cdf.h gsl/gsl_randist.h
+      HINTS ${_pc_GSL_INCLUDE_DIRS}
+      PATH_SUFFIXES gsl
+    )
 
-    PKGCONFIG(gsl _GSLIncDir _GSLLinkDir _GSLLinkFlags _GSLCflags)
-  ENDIF(NOT WIN32)
+  endif(_pc_GSL_FOUND)
 
-  find_path(GSL_INCLUDE_DIR
-            NAMES gsl/gsl_cdf.h gsl/gsl_randist.h
-            PATHS ${_GSLIncDir})
-  set(GSL_LIBRARIES ${_GSLLinkFlags})
+  mark_as_advanced(GSL_INCLUDE_DIR GSL_LIBRARIES GSL_CBLAS_LIBRARIES)
 
-  mark_as_advanced(GSL_INCLUDE_DIR GSL_LIBRARIES)
-
-endif (GSL_INCLUDE_DIR AND GSL_LIBRARIES)
+endif (GSL_INCLUDE_DIR AND GSL_LIBRARIES AND GSL_CBLAS_LIBRARIES)
 
 include(FindPackageHandleStandardArgs)
 FIND_PACKAGE_HANDLE_STANDARD_ARGS(GSL DEFAULT_MSG
-                                  GSL_LIBRARIES GSL_INCLUDE_DIR)
+                                  GSL_LIBRARIES GSL_CBLAS_LIBRARIES 
GSL_INCLUDE_DIR)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-15.04.0/cmake/modules/FindQalculate.cmake 
new/step-15.04.1/cmake/modules/FindQalculate.cmake
--- old/step-15.04.0/cmake/modules/FindQalculate.cmake  2015-03-22 
10:31:20.000000000 +0100
+++ new/step-15.04.1/cmake/modules/FindQalculate.cmake  2015-05-02 
20:16:03.000000000 +0200
@@ -22,21 +22,43 @@
 
 else(QALCULATE_CFLAGS AND QALCULATE_LIBRARIES)
   if(NOT WIN32)
-    include(UsePkgConfig)
+    include(FindPkgConfig)
 
     if(QALCULATE_MIN_VERSION)
-      exec_program(${PKGCONFIG_EXECUTABLE} ARGS libqalculate 
--atleast-version=${QALCULATE_MIN_VERSION} RETURN_VALUE _return_VALUE 
OUTPUT_VARIABLE _pkgconfigDevNull)
+      pkg_check_modules(_pc_QALCULATE libqalculate>=${QALCULATE_MIN_VERSION})
     else(QALCULATE_MIN_VERSION)
-      exec_program(${PKGCONFIG_EXECUTABLE} ARGS libqalculate --exists 
RETURN_VALUE _return_VALUE OUTPUT_VARIABLE _pkgconfigDevNull)
+      pkg_check_modules(_pc_QALCULATE libqalculate)
     endif(QALCULATE_MIN_VERSION)
 
-    if(_return_VALUE STREQUAL "0")
-      exec_program(${PKGCONFIG_EXECUTABLE} ARGS libqalculate --libs 
OUTPUT_VARIABLE QALCULATE_LIBRARIES)
-      exec_program(${PKGCONFIG_EXECUTABLE} ARGS cln --libs OUTPUT_VARIABLE 
CLN_LIBRARIES)
-      exec_program(${PKGCONFIG_EXECUTABLE} ARGS libqalculate --cflags 
OUTPUT_VARIABLE QALCULATE_CFLAGS)
-      set(QALCULATE_FOUND TRUE)
-      message(STATUS "qalculate found and cln is:" ${CLN_LIBRARIES})
-    endif(_return_VALUE STREQUAL "0")
+    pkg_check_modules(_pc_CLN cln)
+
+    if(_pc_QALCULATE_FOUND)
+      set(QALCULATE_CFLAGS ${_pc_QALCULATE_CFLAGS})
+    endif(_pc_QALCULATE_FOUND)
+
+    find_library(QALCULATE_LIBRARIES
+      NAMES
+      qalculate
+      PATHS
+      ${_pc_QALCULATE_LIBRARY_DIRS}
+      ${LIB_INSTALL_DIR}
+    )
+
+    find_path(QALCULATE_INCLUDE_DIR
+      NAMES
+      libqalculate
+      PATHS
+      ${_pc_QALCULATE_INCLUDE_DIRS}
+      ${INCLUDE_INSTALL_DIR}
+    )
+
+    find_library(CLN_LIBRARIES
+      NAMES
+      cln
+      PATHS
+      ${_pc_CLN_LIBRARY_DIRS}
+      ${LIB_INSTALL_DIR}
+    )
 
   else(NOT WIN32)
     # XXX: currently no libqalculate on windows
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-15.04.0/step/CMakeLists.txt 
new/step-15.04.1/step/CMakeLists.txt
--- old/step-15.04.0/step/CMakeLists.txt        2015-03-22 10:31:20.000000000 
+0100
+++ new/step-15.04.1/step/CMakeLists.txt        2015-05-02 20:16:03.000000000 
+0200
@@ -53,7 +53,7 @@
     add_definitions(-DSTEP_WITH_UNITSCALC)
     add_definitions(${QALCULATE_CFLAGS})
     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS}")
-    set(qalculate_LIBS ${QALCULATE_LIBRARIES})
+    set(qalculate_LIBS ${QALCULATE_LIBRARIES} ${CLN_LIBRARIES})
 endif(STEP_WITH_QALCULATE)
 
 ki18n_wrap_ui( step_SRCS ${step_UIS} )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-15.04.0/step.appdata.xml 
new/step-15.04.1/step.appdata.xml
--- old/step-15.04.0/step.appdata.xml   2015-03-22 10:31:20.000000000 +0100
+++ new/step-15.04.1/step.appdata.xml   2015-05-02 20:16:03.000000000 +0200
@@ -15,6 +15,7 @@
   <name xml:lang="fi">Step</name>
   <name xml:lang="fr">Step</name>
   <name xml:lang="it">Step</name>
+  <name xml:lang="ko">Step</name>
   <name xml:lang="lt">Step</name>
   <name xml:lang="nds">Step</name>
   <name xml:lang="nl">Step</name>
@@ -41,6 +42,7 @@
   <summary xml:lang="fi">Vuorovaikutteinen fysiikkasimulaattori</summary>
   <summary xml:lang="fr">Simulateur physique interactif</summary>
   <summary xml:lang="it">Simulatore interattivo di fisica</summary>
+  <summary xml:lang="ko">인터랙티브 물리학 시뮬레이터</summary>
   <summary xml:lang="lt">Interaktyvus fizikos modeliatorius</summary>
   <summary xml:lang="nds">Brukerstüert Physiksimuleren</summary>
   <summary xml:lang="nl">Interactieve natuurkundige simulaties</summary>
@@ -89,6 +91,7 @@
     <p xml:lang="fi">Ominaisuudet:</p>
     <p xml:lang="fr">Fonctionnalités :</p>
     <p xml:lang="it">Caratteristiche:</p>
+    <p xml:lang="ko">기능:</p>
     <p xml:lang="lt">Ypatybės:</p>
     <p xml:lang="nds">Markmalen:</p>
     <p xml:lang="nl">Mogelijkheden:</p>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/step-15.04.0/stepcore/CMakeLists.txt 
new/step-15.04.1/stepcore/CMakeLists.txt
--- old/step-15.04.0/stepcore/CMakeLists.txt    2015-03-22 10:31:20.000000000 
+0100
+++ new/step-15.04.1/stepcore/CMakeLists.txt    2015-05-02 20:16:03.000000000 
+0200
@@ -36,7 +36,7 @@
 if(STEPCORE_WITH_GSL)
     add_definitions(-DSTEPCORE_WITH_GSL)
     include_directories(${GSL_INCLUDE_DIR})
-    set(stepcore_use_LIBS ${stepcore_use_LIBS} ${GSL_LIBRARIES})
+    set(stepcore_use_LIBS ${stepcore_use_LIBS} ${GSL_LIBRARIES} 
${GSL_CBLAS_LIBRARIES})
     set(stepcore_SRCS ${stepcore_SRCS} gslsolver.cc)
 endif(STEPCORE_WITH_GSL)
 


Reply via email to