Hello community, here is the log from the commit of package analitza for openSUSE:Factory checked in at 2015-10-03 20:16:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/analitza (Old) and /work/SRC/openSUSE:Factory/.analitza.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "analitza" Changes: -------- --- /work/SRC/openSUSE:Factory/analitza/analitza.changes 2015-07-14 17:40:44.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.analitza.new/analitza.changes 2015-10-03 20:16:50.000000000 +0200 @@ -1,0 +2,23 @@ +Sun Sep 13 18:54:57 UTC 2015 - [email protected] + +- Update to KDE Applications 15.08.1 + * KDE Applications 15.08.1 + * https://www.kde.org/announcements/announce-applications-15.08.1.php + + +------------------------------------------------------------------- +Wed Aug 19 19:42:27 UTC 2015 - [email protected] + +- Update to KDE Applications 15.08.0 + * KDE Applications 15.08.0 + * https://www.kde.org/announcements/announce-applications-15.08.0.php + +------------------------------------------------------------------- +Fri Aug 7 07:07:34 UTC 2015 - [email protected] + +- Update to KDE Applications 15.07.90 + * KDE Applications 15.08.0 RC1 + * https://www.kde.org/announcements/announce-applications-15.07.90.php + + +------------------------------------------------------------------- Old: ---- analitza-15.04.3.tar.xz New: ---- analitza-15.08.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ analitza.spec ++++++ --- /var/tmp/diff_new_pack.fe9Ig1/_old 2015-10-03 20:16:51.000000000 +0200 +++ /var/tmp/diff_new_pack.fe9Ig1/_new 2015-10-03 20:16:51.000000000 +0200 @@ -17,7 +17,7 @@ Name: analitza -Version: 15.04.3 +Version: 15.08.1 Release: 0 Summary: A library to add mathematical features to programs License: LGPL-2.1+ ++++++ analitza-15.04.3.tar.xz -> analitza-15.08.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/CMakeLists.txt new/analitza-15.08.1/CMakeLists.txt --- old/analitza-15.04.3/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.12) -find_package(ECM 1.3.0 REQUIRED NO_MODULE) +find_package(ECM 1.7.0 REQUIRED NO_MODULE) set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH}) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) @@ -12,6 +12,7 @@ find_package(Qt5 ${QT_REQUIRED_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Xml Svg Test Qml Quick) include(FeatureSummary) +include(ECMAddAppIcon) include(ECMSetupVersion) include(ECMAddTests) include(ECMPackageConfigHelpers) @@ -23,7 +24,7 @@ include(CheckLibraryExists) #FindCurses seems to need that on the CI include(ECMPoQmTools) ecm_create_qm_loader(analitza_QM_LOADER analitza_qt) -set(ANALITZA_INCLUDE_INSTALL_DIR "${INCLUDE_INSTALL_DIR}/Analitza5") +set(ANALITZA_INCLUDE_INSTALL_DIR "${KDE_INSTALL_INCLUDEDIR}/Analitza5") ecm_setup_version(6.0.0 VARIABLE_PREFIX ANALITZA VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/analitza_version.h" @@ -61,7 +62,7 @@ ecm_install_po_files_as_qm(po) endif() -set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/Analitza5") +set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/Analitza5") ecm_configure_package_config_file( "${CMAKE_CURRENT_SOURCE_DIR}/Analitza5Config.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/Analitza5Config.cmake" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitza/CMakeLists.txt new/analitza-15.08.1/analitza/CMakeLists.txt --- old/analitza-15.04.3/analitza/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitza/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -62,7 +62,7 @@ generate_export_header(Analitza EXPORT_FILE_NAME analitzaexport.h) -install(TARGETS Analitza EXPORT AnalitzaTargets ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS Analitza EXPORT AnalitzaTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/analitzaexport.h diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitza/additionchains.h new/analitza-15.08.1/analitza/additionchains.h --- old/analitza-15.04.3/analitza/additionchains.h 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitza/additionchains.h 2015-07-17 03:36:30.000000000 +0200 @@ -28,7 +28,7 @@ // const int MAX_N = 2048; // const int MAX_LEN = 15; // const int MAX_COL = MAX_LEN+1; -// // seq len of max(1,2,...,MAX_N) is MAX_LEN but we need one aditional slot for len (length) info (at 0) so we need MAX_COL cols +// // seq len of max(1,2,...,MAX_N) is MAX_LEN but we need one additional slot for len (length) info (at 0) so we need MAX_COL cols // int buffer[MAX_N+1] = {0}; // // printf("static const int additionChains[%d][%d] = {\n", MAX_N+1, MAX_COL+1); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitza/commands/matrixcommands.h new/analitza-15.08.1/analitza/commands/matrixcommands.h --- old/analitza-15.04.3/analitza/commands/matrixcommands.h 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitza/commands/matrixcommands.h 2015-07-17 03:36:30.000000000 +0200 @@ -94,8 +94,8 @@ * to get the diagonal part of a matrix. * * There are two ways to construct a diagonal matrix: - * - * The first way creates the diagonal part out of the paramaters. + * + * The first way creates the diagonal part out of the parameters. * \code diag(1,2,3) \endcode * constructs the 3x3 diagonal matrix: * [1 0 0] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitza/expressiontype.cpp new/analitza-15.08.1/analitza/expressiontype.cpp --- old/analitza-15.04.3/analitza/expressiontype.cpp 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitza/expressiontype.cpp 2015-07-17 03:36:30.000000000 +0200 @@ -259,9 +259,11 @@ ExpressionType ExpressionType::starsToType(const QMap<int, ExpressionType>& info) const { - for(QMap<int, ExpressionType>::const_iterator it=info.begin(); it!=info.end(); ++it) { +#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS) + for(QMap<int, ExpressionType>::const_iterator it=info.cbegin(); it!=info.cend(); ++it) { Q_ASSERT(it->type()!=ExpressionType::Any || it->anyValue()!=it.key()); } +#endif ExpressionType ret; // static int deep=0; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitza/polynomial.h new/analitza-15.08.1/analitza/polynomial.h --- old/analitza-15.04.3/analitza/polynomial.h 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitza/polynomial.h 2015-07-17 03:36:30.000000000 +0200 @@ -58,7 +58,7 @@ * * \brief Polynomial object. * - * The important method in this class is negate, wich change the sign of the Monomial + * The important method in this class is negate, which change the sign of the Monomial * referenced by an index. * * \author Aleix Pol <[email protected]> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzagui/CMakeLists.txt new/analitza-15.08.1/analitzagui/CMakeLists.txt --- old/analitza-15.04.3/analitzagui/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzagui/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -16,7 +16,7 @@ generate_export_header(AnalitzaGui EXPORT_FILE_NAME analitzaguiexport.h) -install(TARGETS AnalitzaGui EXPORT AnalitzaTargets ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS AnalitzaGui EXPORT AnalitzaTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/analitzaguiexport.h diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzaplot/CMakeLists.txt new/analitza-15.08.1/analitzaplot/CMakeLists.txt --- old/analitza-15.04.3/analitzaplot/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzaplot/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -83,7 +83,7 @@ generate_export_header(AnalitzaPlot EXPORT_FILE_NAME analitzaplotexport.h) -install(TARGETS AnalitzaPlot EXPORT AnalitzaTargets ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS AnalitzaPlot EXPORT AnalitzaTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/analitzaplotexport.h diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzaplot/data/plots/CMakeLists.txt new/analitza-15.08.1/analitzaplot/data/plots/CMakeLists.txt --- old/analitza-15.04.3/analitzaplot/data/plots/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzaplot/data/plots/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -1,2 +1,2 @@ FILE(GLOB datafiles *.plots) -install( FILES ${datafiles} DESTINATION ${DATA_INSTALL_DIR}/libanalitza/plots ) +install( FILES ${datafiles} DESTINATION ${KDE_INSTALL_DATADIR}/libanalitza/plots ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzaplot/plotter2d.cpp new/analitza-15.08.1/analitzaplot/plotter2d.cpp --- old/analitza-15.04.3/analitzaplot/plotter2d.cpp 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzaplot/plotter2d.cpp 2015-07-17 03:36:30.000000000 +0200 @@ -28,7 +28,6 @@ #include <QPalette> #include <QPainter> #include <qfontdatabase.h> -#include <cmath> #include <QDebug> #include <qnumeric.h> @@ -103,7 +102,7 @@ const QColor Plotter2D::computeSubGridColor() const { //impl. details: since any kde user can create any palette style, we need this hard/magic numbres - // becuase there is no way to guess, however, this code covers almost any case, + // because there is no way to guess, however, this code covers almost any case, // it was tested with more then 35 color styles, and all give good results. QColor col = m_gridColor; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzaplot/plotter3d.h new/analitza-15.08.1/analitzaplot/plotter3d.h --- old/analitza-15.04.3/analitzaplot/plotter3d.h 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzaplot/plotter3d.h 2015-07-17 03:36:30.000000000 +0200 @@ -103,7 +103,7 @@ /** Query if there is a valid axis arrow for @p x and @p y screen coordinates. */ CartesianAxis selectAxisArrow(int x, int y); - /** Fix the rotation arround @p direction */ + /** Fix the rotation around @p direction */ void fixRotation(const QVector3D &direction); /** Query if the rotation is fixed by a specific direction. */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzaplot/plottingenums.h new/analitza-15.08.1/analitzaplot/plottingenums.h --- old/analitza-15.04.3/analitzaplot/plottingenums.h 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzaplot/plottingenums.h 2015-07-17 03:36:30.000000000 +0200 @@ -68,7 +68,7 @@ enum GridStyle { Squares = 1, // a solid quadrangular (rectangular, if keep aspect radio is off) mesh (in KmPlot is called Lines) - Circles, // classic polar grid: solid circles (ellipses, if keep aspect radio is off) arround origin (in KmPlot is called Polar) + Circles, // classic polar grid: solid circles (ellipses, if keep aspect radio is off) around origin (in KmPlot is called Polar) Crosses, // like KmPlot: show only a cross at every node of the quadrangular mesh HorizontalLines, // (or rows) show only horizontal lines of the quadrangular mesh, can be used as horizontal asymptotes VerticalLines, // (or columns) show only vertical lines of the quadrangular mesh, can be used as vertical asymptotes diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzaplot/private/utils/marchingcubes.h new/analitza-15.08.1/analitzaplot/private/utils/marchingcubes.h --- old/analitza-15.04.3/analitzaplot/private/utils/marchingcubes.h 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzaplot/private/utils/marchingcubes.h 2015-07-17 03:36:30.000000000 +0200 @@ -178,7 +178,7 @@ private: /** - * selects wether the algorithm will use the enhanced topologically controlled lookup table or the original MarchingCubes + * selects whether the algorithm will use the enhanced topologically controlled lookup table or the original MarchingCubes * \param originalMC true for the original Marching Cubes * DEPRECATED el metodo original no tiene consistencia topologica */ @@ -321,8 +321,8 @@ //----------------------------------------------------------------------------- // Elements private : - int i_originalMC ; /**< selects wether the algorithm will use the enhanced topologically controlled lookup table or the original MarchingCubes */ - int i_N[15] ; /**< counts the occurence of each case for debug */ + int i_originalMC ; /**< selects whether the algorithm will use the enhanced topologically controlled lookup table or the original MarchingCubes */ + int i_N[15] ; /**< counts the occurrence of each case for debug */ int i_size_x ; /**< width of the grid */ int i_size_y ; /**< depth of the grid */ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/analitzawidgets/CMakeLists.txt new/analitza-15.08.1/analitzawidgets/CMakeLists.txt --- old/analitza-15.04.3/analitzawidgets/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/analitzawidgets/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -29,7 +29,7 @@ generate_export_header(AnalitzaWidgets) -install(TARGETS AnalitzaWidgets EXPORT AnalitzaTargets ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS AnalitzaWidgets EXPORT AnalitzaTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) install(FILES ${CMAKE_CURRENT_BINARY_DIR}/analitzawidgets_export.h diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/config-analitza.h.cmake new/analitza-15.08.1/config-analitza.h.cmake --- old/analitza-15.04.3/config-analitza.h.cmake 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/config-analitza.h.cmake 2015-07-17 03:36:30.000000000 +0200 @@ -1,2 +1,2 @@ #cmakedefine HAVE_OPENGL -#cmakedefine HAVE_EIGEN3 \ No newline at end of file +#cmakedefine HAVE_EIGEN3 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/declarative/CMakeLists.txt new/analitza-15.08.1/declarative/CMakeLists.txt --- old/analitza-15.04.3/declarative/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/declarative/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -11,10 +11,10 @@ Qt5::Core Qt5::Gui Qt5::Qml Qt5::Quick Analitza AnalitzaGui AnalitzaPlot) -install(TARGETS analitzadeclarativeplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/analitza) -install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/analitza) +install(TARGETS analitzadeclarativeplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/analitza) +install(FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/analitza) install( FILES qml/Graph2D.qml - DESTINATION ${QML_INSTALL_DIR}/org/kde/analitza + DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/analitza ) Files old/analitza-15.04.3/icons/128-app-kalgebra.png and new/analitza-15.08.1/icons/128-app-kalgebra.png differ Files old/analitza-15.04.3/icons/16-app-kalgebra.png and new/analitza-15.08.1/icons/16-app-kalgebra.png differ Files old/analitza-15.04.3/icons/32-app-kalgebra.png and new/analitza-15.08.1/icons/32-app-kalgebra.png differ Files old/analitza-15.04.3/icons/48-app-kalgebra.png and new/analitza-15.08.1/icons/48-app-kalgebra.png differ Files old/analitza-15.04.3/icons/64-app-kalgebra.png and new/analitza-15.08.1/icons/64-app-kalgebra.png differ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/analitza-15.04.3/icons/CMakeLists.txt new/analitza-15.08.1/icons/CMakeLists.txt --- old/analitza-15.04.3/icons/CMakeLists.txt 2015-03-18 16:41:55.000000000 +0100 +++ new/analitza-15.08.1/icons/CMakeLists.txt 2015-07-17 03:36:30.000000000 +0200 @@ -1,2 +1,2 @@ -kde4_install_icons( ${ICON_INSTALL_DIR} ) +kde4_install_icons( ${KDE_INSTALL_ICONDIR} ) Files old/analitza-15.04.3/icons/hi128-app-kalgebra.png and new/analitza-15.08.1/icons/hi128-app-kalgebra.png differ Files old/analitza-15.04.3/icons/hi16-app-kalgebra.png and new/analitza-15.08.1/icons/hi16-app-kalgebra.png differ Files old/analitza-15.04.3/icons/hi32-app-kalgebra.png and new/analitza-15.08.1/icons/hi32-app-kalgebra.png differ Files old/analitza-15.04.3/icons/hi48-app-kalgebra.png and new/analitza-15.08.1/icons/hi48-app-kalgebra.png differ Files old/analitza-15.04.3/icons/hi64-app-kalgebra.png and new/analitza-15.08.1/icons/hi64-app-kalgebra.png differ
