Hello community,

here is the log from the commit of package kdoctools for openSUSE:Factory 
checked in at 2015-02-16 15:04:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdoctools (Old)
 and      /work/SRC/openSUSE:Factory/.kdoctools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdoctools"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdoctools/kdoctools.changes      2015-01-29 
12:51:01.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kdoctools.new/kdoctools.changes 2015-02-16 
17:30:59.000000000 +0100
@@ -1,0 +2,7 @@
+Sun Feb  8 18:15:16 UTC 2015 - hrvoje.sen...@gmail.com
+
+- Update to 5.7.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.7.0.php
+
+-------------------------------------------------------------------

Old:
----
  kdoctools-5.6.0.tar.xz

New:
----
  kdoctools-5.7.0.tar.xz

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

Other differences:
------------------
++++++ kdoctools.spec ++++++
--- /var/tmp/diff_new_pack.BD4cbr/_old  2015-02-16 17:31:00.000000000 +0100
+++ /var/tmp/diff_new_pack.BD4cbr/_new  2015-02-16 17:31:00.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kdoctools
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,14 +16,15 @@
 #
 
 
+%define _tar_path 5.7
 Name:           kdoctools
-Version:        5.6.0
+Version:        %{_tar_path}.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  docbook_4
-BuildRequires:  extra-cmake-modules >= 1.6.0
+BuildRequires:  extra-cmake-modules >= 1.7.0
 BuildRequires:  fdupes
 BuildRequires:  karchive-devel >= %{kf5_version}
 BuildRequires:  kf5-filesystem
@@ -36,7 +37,7 @@
 License:        LGPL-2.1+ and MIT
 Group:          System/GUI/KDE
 Url:            http://www.kde.org
-Source:         
http://download.kde.org/stable/frameworks/5.6/%{name}-%{version}.tar.xz
+Source:         
http://download.kde.org/stable/frameworks/%{_tar_path}/%{name}-%{version}.tar.xz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description

++++++ kdoctools-5.6.0.tar.xz -> kdoctools-5.7.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/CMakeLists.txt 
new/kdoctools-5.7.0/CMakeLists.txt
--- old/kdoctools-5.6.0/CMakeLists.txt  2015-01-03 13:06:30.000000000 +0100
+++ new/kdoctools-5.7.0/CMakeLists.txt  2015-02-08 16:16:55.000000000 +0100
@@ -3,7 +3,7 @@
 project(KDocTools)
 
 # ECM setup
-find_package(ECM 1.6.0 REQUIRED NO_MODULE)
+find_package(ECM 1.7.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
 
 include(FeatureSummary)
@@ -11,8 +11,8 @@
 include(ECMMarkNonGuiExecutable)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION "5.6.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.6.0") # handled by release scripts
+set(KF5_VERSION "5.7.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.7.0") # handled by release scripts
 ecm_setup_version(${KF5_VERSION} VARIABLE_PREFIX KDOCTOOLS
                         VERSION_HEADER 
"${CMAKE_CURRENT_BINARY_DIR}/kdoctools_version.h"
                         PACKAGE_VERSION_FILE 
"${CMAKE_CURRENT_BINARY_DIR}/KF5DocToolsConfigVersion.cmake"
@@ -72,7 +72,7 @@
 
 set(KDOCTOOLS_LANGUAGES_LIST af bg ca cs da de el en-GB en eo es et fi fo fr 
gl he hu id it ja ko lt nds nl nn no pl pt-BR pt ro ru sk sl sr sr@latin 
sr@ijekavian sr@ijekavianlatin sv th tr uk wa xh xx zh-CN zh-TW)
 
-set(CMAKECONFIG_INSTALL_DIR "${CMAKECONFIG_INSTALL_PREFIX}/KF5DocTools")
+set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5DocTools")
 add_definitions(-DTRANSLATION_DOMAIN=\"kdoctools5\")
 if (IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/po" AND KF5I18n_FOUND)
     ki18n_install(po)
@@ -101,7 +101,7 @@
 configure_file(checkXML5.in.cmake ${CMAKE_CURRENT_BINARY_DIR}/checkXML5 )
 configure_file(config-kdoctools.h.cmake 
${CMAKE_CURRENT_BINARY_DIR}/config-kdoctools.h )
 
-install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/checkXML5 DESTINATION 
${BIN_INSTALL_DIR} )
+install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/checkXML5 DESTINATION 
${KDE_INSTALL_BINDIR} )
 
 install( FILES
     KF5DocToolsMacros.cmake
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/common/CMakeLists.txt 
new/kdoctools-5.7.0/common/CMakeLists.txt
--- old/kdoctools-5.6.0/common/CMakeLists.txt   2015-01-03 13:06:30.000000000 
+0100
+++ new/kdoctools-5.7.0/common/CMakeLists.txt   2015-02-08 16:16:55.000000000 
+0100
@@ -1,7 +1,7 @@
 # install common files for all languages
 foreach( _kdoctoolscommon_currentlang ${KDOCTOOLS_LANGUAGES_LIST})
     file( GLOB _kdoctoolscommon_lang_allfiles 
"${_kdoctoolscommon_currentlang}/*" )
-    install(FILES ${_kdoctoolscommon_lang_allfiles} DESTINATION 
${HTML_INSTALL_DIR}/${_kdoctoolscommon_currentlang}/kdoctools5-common)
+    install(FILES ${_kdoctoolscommon_lang_allfiles} DESTINATION 
${KDE_INSTALL_DOCBUNDLEDIR}/${_kdoctoolscommon_currentlang}/kdoctools5-common)
 endforeach()
 
 # add English version of the -translated files, so that
@@ -11,7 +11,7 @@
 set (_basetranslatedlicenses fdl gpl lgpl)
 foreach (_licenseprefix ${_basetranslatedlicenses})
     install(FILES en/${_licenseprefix}-license.html DESTINATION
-            ${HTML_INSTALL_DIR}/en/kdoctools5-common/
+            ${KDE_INSTALL_DOCBUNDLEDIR}/en/kdoctools5-common/
             RENAME ${_licenseprefix}-translated.html)
 endforeach()
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/docs/checkXML5/CMakeLists.txt 
new/kdoctools-5.7.0/docs/checkXML5/CMakeLists.txt
--- old/kdoctools-5.6.0/docs/checkXML5/CMakeLists.txt   2015-01-03 
13:06:30.000000000 +0100
+++ new/kdoctools-5.7.0/docs/checkXML5/CMakeLists.txt   2015-02-08 
16:16:55.000000000 +0100
@@ -1 +1 @@
-kdoctools_create_manpage(man-checkXML5.1.docbook 1 INSTALL_DESTINATION 
${MAN_INSTALL_DIR})
+kdoctools_create_manpage(man-checkXML5.1.docbook 1 INSTALL_DESTINATION 
${KDE_INSTALL_MANDIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/docs/kf5options/CMakeLists.txt 
new/kdoctools-5.7.0/docs/kf5options/CMakeLists.txt
--- old/kdoctools-5.6.0/docs/kf5options/CMakeLists.txt  2015-01-03 
13:06:30.000000000 +0100
+++ new/kdoctools-5.7.0/docs/kf5options/CMakeLists.txt  2015-02-08 
16:16:55.000000000 +0100
@@ -1 +1 @@
-kdoctools_create_manpage(man-kf5options.7.docbook 7 INSTALL_DESTINATION 
${MAN_INSTALL_DIR})
+kdoctools_create_manpage(man-kf5options.7.docbook 7 INSTALL_DESTINATION 
${KDE_INSTALL_MANDIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/docs/meinproc5/CMakeLists.txt 
new/kdoctools-5.7.0/docs/meinproc5/CMakeLists.txt
--- old/kdoctools-5.6.0/docs/meinproc5/CMakeLists.txt   2015-01-03 
13:06:30.000000000 +0100
+++ new/kdoctools-5.7.0/docs/meinproc5/CMakeLists.txt   2015-02-08 
16:16:55.000000000 +0100
@@ -1 +1 @@
-kdoctools_create_manpage(man-meinproc5.8.docbook 8 INSTALL_DESTINATION 
${MAN_INSTALL_DIR})
+kdoctools_create_manpage(man-meinproc5.8.docbook 8 INSTALL_DESTINATION 
${KDE_INSTALL_MANDIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/docs/qt5options/CMakeLists.txt 
new/kdoctools-5.7.0/docs/qt5options/CMakeLists.txt
--- old/kdoctools-5.6.0/docs/qt5options/CMakeLists.txt  2015-01-03 
13:06:30.000000000 +0100
+++ new/kdoctools-5.7.0/docs/qt5options/CMakeLists.txt  2015-02-08 
16:16:55.000000000 +0100
@@ -1 +1 @@
-kdoctools_create_manpage(man-qt5options.7.docbook 7 INSTALL_DESTINATION 
${MAN_INSTALL_DIR})
+kdoctools_create_manpage(man-qt5options.7.docbook 7 INSTALL_DESTINATION 
${KDE_INSTALL_MANDIR})
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/po/ja/kdoctools5.po 
new/kdoctools-5.7.0/po/ja/kdoctools5.po
--- old/kdoctools-5.6.0/po/ja/kdoctools5.po     2015-01-03 13:06:30.000000000 
+0100
+++ new/kdoctools-5.7.0/po/ja/kdoctools5.po     2015-02-08 16:16:55.000000000 
+0100
@@ -6,7 +6,7 @@
 "PO-Revision-Date: 2014-05-01 01:02-0700\n"
 "Last-Translator: Japanese KDE translation team <kde...@kde.org>\n"
 "Language-Team: Japanese <kde...@kde.org>\n"
-"Language: \n"
+"Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/po/nb/kdoctools5.po 
new/kdoctools-5.7.0/po/nb/kdoctools5.po
--- old/kdoctools-5.6.0/po/nb/kdoctools5.po     2015-01-03 13:06:30.000000000 
+0100
+++ new/kdoctools-5.7.0/po/nb/kdoctools5.po     2015-02-08 16:16:55.000000000 
+0100
@@ -1,4 +1,4 @@
-# Translation of kio_help5 to Norwegian Bokmål
+# Translation of kdoctools5 to Norwegian Bokmål
 #
 # Knut Yrvin <kn...@skolelinux.no>, 2003, 2004.
 # Bjørn Steensrud <bjor...@skogkatt.homelinux.org>, 2003, 2004.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/po/nn/kdoctools5.po 
new/kdoctools-5.7.0/po/nn/kdoctools5.po
--- old/kdoctools-5.6.0/po/nn/kdoctools5.po     2015-01-03 13:06:30.000000000 
+0100
+++ new/kdoctools-5.7.0/po/nn/kdoctools5.po     2015-02-08 16:16:55.000000000 
+0100
@@ -1,4 +1,4 @@
-# Translation of kio_help5 to Norwegian Nynorsk
+# Translation of kdoctools5 to Norwegian Nynorsk
 #
 # Gaute Hvoslef Kvalnes <ga...@verdsveven.com>, 2003, 2004, 2005.
 # Karl Ove Hufthammer <k...@huftis.org>, 2007, 2008.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/po/se/kdoctools5.po 
new/kdoctools-5.7.0/po/se/kdoctools5.po
--- old/kdoctools-5.6.0/po/se/kdoctools5.po     2015-01-03 13:06:30.000000000 
+0100
+++ new/kdoctools-5.7.0/po/se/kdoctools5.po     2015-02-08 16:16:55.000000000 
+0100
@@ -1,4 +1,4 @@
-# Translation of kio_help5 to Northern Sami
+# Translation of kdoctools5 to Northern Sami
 #
 # Børre Gaup <boe...@skolelinux.no>, 2004, 2005, 2007, 2008, 2010.
 msgid ""
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdoctools-5.6.0/src/CMakeLists.txt 
new/kdoctools-5.7.0/src/CMakeLists.txt
--- old/kdoctools-5.6.0/src/CMakeLists.txt      2015-01-03 13:06:30.000000000 
+0100
+++ new/kdoctools-5.7.0/src/CMakeLists.txt      2015-02-08 16:16:55.000000000 
+0100
@@ -6,9 +6,9 @@
 # see the .xsl.cmake files for a more verbose explanation below
 if(NOT WIN32)
     install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${_custom_dtd_kdex}
-        DESTINATION ${KF5_DATA_INSTALL_DIR}/kdoctools/customization/dtd )
+        DESTINATION ${KDE_INSTALL_DATADIR_KF5}/kdoctools/customization/dtd )
 else()
-    get_filename_component(NORMALIZED_DTD_INSTALL_PATH 
"${CMAKE_INSTALL_PREFIX}/${KF5_DATA_INSTALL_DIR}/kdoctools/customization/dtd" 
ABSOLUTE)
+    get_filename_component(NORMALIZED_DTD_INSTALL_PATH 
"${CMAKE_INSTALL_PREFIX}/${KDE_INSTALL_DATADIR_KF5}/kdoctools/customization/dtd"
 ABSOLUTE)
     # file(RELATIVE_PATH ...) returns wrong values for paths containing /../ 
(it doesn't normalize the path)
     # To work around this we make sure the variable passed has all /../ 
elements
     # removed using get_filename_component(... ABSOLUTE)
@@ -17,7 +17,7 @@
         configure_file(${CMAKE_CURRENT_SOURCE_DIR}/${_custom_dtd_kdex}.cmake 
${CMAKE_CURRENT_BINARY_DIR}/${_custom_dtd_kdex}.install)"
     )
     get_filename_component(_custom_dtd_kdex_name ${_custom_dtd_kdex} NAME)
-    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${_custom_dtd_kdex}.install 
DESTINATION ${KF5_DATA_INSTALL_DIR}/kdoctools/customization/dtd RENAME 
${_custom_dtd_kdex_name})
+    install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${_custom_dtd_kdex}.install 
DESTINATION ${KDE_INSTALL_DATADIR_KF5}/kdoctools/customization/dtd RENAME 
${_custom_dtd_kdex_name})
 endif()
 
 # needed by KIO, need to export it
@@ -34,12 +34,12 @@
     EXPORT_NAME XsltKde
 )
 
-target_include_directories(KF5XsltKde INTERFACE 
"$<INSTALL_INTERFACE:${KF5_INCLUDE_INSTALL_DIR}/XsltKde>")
+target_include_directories(KF5XsltKde INTERFACE 
"$<INSTALL_INTERFACE:${KDE_INSTALL_INCLUDEDIR_KF5}/XsltKde>")
 
 install(FILES
     xslt.h
     xslt_kde.h
-    DESTINATION ${KF5_INCLUDE_INSTALL_DIR}/XsltKde
+    DESTINATION ${KDE_INSTALL_INCLUDEDIR_KF5}/XsltKde
     COMPONENT Devel
 )
 
@@ -88,12 +88,12 @@
     configure_file( ${_kdeincludexslt} ${_kdeincludexslt_binarypath} )
     if(NOT WIN32)
         install(FILES ${_kdeincludexslt_binarypath}
-            DESTINATION ${KF5_DATA_INSTALL_DIR}/kdoctools/customization )
+            DESTINATION ${KDE_INSTALL_DATADIR_KF5}/kdoctools/customization )
     else()
         install(CODE
-            "FILE(RELATIVE_PATH DOCBOOKXSL_DIR 
\${CMAKE_INSTALL_PREFIX}/${KF5_DATA_INSTALL_DIR}/kdoctools/customization 
${DOCBOOKXSL_DIR})
+            "FILE(RELATIVE_PATH DOCBOOKXSL_DIR 
\${CMAKE_INSTALL_PREFIX}/${KDE_INSTALL_DATADIR_KF5}/kdoctools/customization 
${DOCBOOKXSL_DIR})
             CONFIGURE_FILE( ${_kdeincludexslt} 
${_kdeincludexslt_binarypath}.install )")
-            install(FILES ${_kdeincludexslt_binarypath}.install DESTINATION 
${KF5_DATA_INSTALL_DIR}/kdoctools/customization RENAME ${_kdeincludexslt_out})
+            install(FILES ${_kdeincludexslt_binarypath}.install DESTINATION 
${KDE_INSTALL_DATADIR_KF5}/kdoctools/customization RENAME 
${_kdeincludexslt_out})
     endif()
 endforeach( _kdeincludexslt ${_kdeincludexslt_ALL} )
 
@@ -103,7 +103,7 @@
 macro(INSTALL_CUSTOMIZE_DIR _expr _directory)
     FILE(GLOB _file_CUST "${_expr}" )
     foreach(_curentfile ${_file_CUST})
-        install(FILES ${_curentfile} DESTINATION 
${KF5_DATA_INSTALL_DIR}/kdoctools/${_directory} )
+        install(FILES ${_curentfile} DESTINATION 
${KDE_INSTALL_DATADIR_KF5}/kdoctools/${_directory} )
     endforeach(_curentfile ${_file_CUST})
 endmacro(INSTALL_CUSTOMIZE_DIR _expr _directory)
 
@@ -118,7 +118,7 @@
         configure_file(${_curentfile} ${_currentfile_binary_path} COPYONLY)
 
         install(FILES ${_currentfile_binary_path}
-            DESTINATION ${KF5_DATA_INSTALL_DIR}/kdoctools/${_directory} )
+            DESTINATION ${KDE_INSTALL_DATADIR_KF5}/kdoctools/${_directory} )
     endforeach(_curentfile ${_file_CUST})
 endmacro(INSTALL_CUSTOMIZE_L_DIR _expr _directory)
 
@@ -170,5 +170,5 @@
 
 # all-l10n.xml is generated by docbookl10nhelper
 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/customization/xsl/all-l10n.xml
-    DESTINATION ${KF5_DATA_INSTALL_DIR}/kdoctools/customization/xsl/ )
+    DESTINATION ${KDE_INSTALL_DATADIR_KF5}/kdoctools/customization/xsl/ )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.6.0/tests/create-from-current-dir-test/docs/kioslave/data/CMakeLists.txt
 
new/kdoctools-5.7.0/tests/create-from-current-dir-test/docs/kioslave/data/CMakeLists.txt
--- 
old/kdoctools-5.6.0/tests/create-from-current-dir-test/docs/kioslave/data/CMakeLists.txt
    2015-01-03 13:06:30.000000000 +0100
+++ 
new/kdoctools-5.7.0/tests/create-from-current-dir-test/docs/kioslave/data/CMakeLists.txt
    2015-02-08 16:16:55.000000000 +0100
@@ -1,2 +1,2 @@
 ########### install files ###############
-kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${HTML_INSTALL_DIR}/en SUBDIR kioslave5/data)
+kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR kioslave5/data)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kdoctools-5.6.0/tests/create-from-current-dir-test/docs/kioslave/file/CMakeLists.txt
 
new/kdoctools-5.7.0/tests/create-from-current-dir-test/docs/kioslave/file/CMakeLists.txt
--- 
old/kdoctools-5.6.0/tests/create-from-current-dir-test/docs/kioslave/file/CMakeLists.txt
    2015-01-03 13:06:30.000000000 +0100
+++ 
new/kdoctools-5.7.0/tests/create-from-current-dir-test/docs/kioslave/file/CMakeLists.txt
    2015-02-08 16:16:55.000000000 +0100
@@ -1,2 +1,2 @@
 ########### install files ###############
-kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${HTML_INSTALL_DIR}/en SUBDIR kioslave5/file)
+kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR kioslave5/file)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to