Hello community,

here is the log from the commit of package kpat for openSUSE:Factory checked in 
at 2015-10-03 20:22:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kpat (Old)
 and      /work/SRC/openSUSE:Factory/.kpat.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kpat"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kpat/kpat.changes        2015-07-14 
17:36:35.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kpat.new/kpat.changes   2015-10-03 
20:22:57.000000000 +0200
@@ -1,0 +2,23 @@
+Sun Sep 13 19:22:26 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:43:45 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 06:57:50 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:
----
  kpat-15.04.3.tar.xz

New:
----
  kpat-15.08.1.tar.xz

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

Other differences:
------------------
++++++ kpat.spec ++++++
--- /var/tmp/diff_new_pack.rxgcd5/_old  2015-10-03 20:22:58.000000000 +0200
+++ /var/tmp/diff_new_pack.rxgcd5/_new  2015-10-03 20:22:58.000000000 +0200
@@ -21,7 +21,7 @@
 License:        GPL-2.0+
 Group:          Amusements/Games/Board/Card
 Url:            http://www.kde.org
-Version:        15.04.3
+Version:        15.08.1
 Release:        0
 Source0:        kpat-%{version}.tar.xz
 BuildRequires:  libkdegames-devel
@@ -100,8 +100,6 @@
 %{_kf5_configdir}/kpat.knsrc
 %{_datadir}/mime/packages/kpatience.xml
 %_kf5_kxmlguidir/kpat/
-%_kf5_iconsdir/hicolor/*/*/kpats.*
-
 
 
 %changelog

++++++ kpat-15.04.3.tar.xz -> kpat-15.08.1.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/CMakeLists.txt 
new/kpat-15.08.1/CMakeLists.txt
--- old/kpat-15.04.3/CMakeLists.txt     2015-04-27 13:18:54.000000000 +0200
+++ new/kpat-15.08.1/CMakeLists.txt     2015-08-26 14:41:39.000000000 +0200
@@ -3,7 +3,7 @@
 cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
 set (QT_MIN_VERSION "5.2.0")
 
-find_package(ECM 1.3.0 REQUIRED CONFIG)
+find_package(ECM 1.7.0 REQUIRED CONFIG)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} 
${ECM_KDE_MODULE_DIR})
 
 find_package(Qt5 ${QT_MIN_VERSION} REQUIRED NO_MODULE COMPONENTS Widgets Qml 
Quick QuickWidgets Svg Test)
@@ -31,6 +31,7 @@
 find_package(Phonon4Qt5)
 
 include(FeatureSummary)
+include(ECMAddAppIcon)
 include(ECMInstallIcons)
 include(KDEInstallDirs)
 include(KDECompilerSettings)
@@ -94,15 +95,17 @@
 
 ki18n_wrap_ui( kpat_SRCS statisticsdialog.ui )
 kconfig_add_kcfg_files( kpat_SRCS settings.kcfgc )
-#kde4_add_app_icon( kpat_SRCS 
"${CMAKE_CURRENT_SOURCE_DIR}/icons/hi*-app-kpat.png" )
+
+file(GLOB ICONS_SRCS "${CMAKE_CURRENT_SOURCE_DIR}/icons/*-apps-kpat.png")
+ecm_add_app_icon(kpat_SRCS ICONS ${ICONS_SRCS})
 add_executable( kpat ${kpat_SRCS} )
 target_link_libraries( kpat kcardgame KF5KDEGames KF5::KIOCore 
Phonon::phonon4qt5 KF5::I18n KF5::DBusAddons KF5::KDELibs4Support)
-install( TARGETS kpat ${INSTALL_TARGETS_DEFAULT_ARGS} )
+install( TARGETS kpat ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
 
 
 ########### install files ###############
 
-install( PROGRAMS org.kde.kpat.desktop  DESTINATION  ${XDG_APPS_INSTALL_DIR} )
-install( FILES kpatui.rc  DESTINATION  ${KXMLGUI_INSTALL_DIR}/kpat )
-install( FILES kpat.kcfg DESTINATION ${KCFG_INSTALL_DIR} )
+install( PROGRAMS org.kde.kpat.desktop  DESTINATION  ${KDE_INSTALL_APPDIR} )
+install( FILES kpatui.rc  DESTINATION  ${KDE_INSTALL_KXMLGUI5DIR}/kpat )
+install( FILES kpat.kcfg DESTINATION ${KDE_INSTALL_KCFGDIR} )
 feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/doc/CMakeLists.txt 
new/kpat-15.08.1/doc/CMakeLists.txt
--- old/kpat-15.04.3/doc/CMakeLists.txt 2015-04-27 13:18:54.000000000 +0200
+++ new/kpat-15.08.1/doc/CMakeLists.txt 2015-08-26 14:41:39.000000000 +0200
@@ -2,4 +2,4 @@
 #
 #
 
-kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${HTML_INSTALL_DIR}/en SUBDIR kpat)
+kdoctools_create_handbook(index.docbook INSTALL_DESTINATION 
${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR kpat)
Files old/kpat-15.04.3/icons/128-apps-kpat.png and 
new/kpat-15.08.1/icons/128-apps-kpat.png differ
Files old/kpat-15.04.3/icons/16-apps-kpat.png and 
new/kpat-15.08.1/icons/16-apps-kpat.png differ
Files old/kpat-15.04.3/icons/22-apps-kpat.png and 
new/kpat-15.08.1/icons/22-apps-kpat.png differ
Files old/kpat-15.04.3/icons/24-apps-kpat.png and 
new/kpat-15.08.1/icons/24-apps-kpat.png differ
Files old/kpat-15.04.3/icons/256-apps-kpat.png and 
new/kpat-15.08.1/icons/256-apps-kpat.png differ
Files old/kpat-15.04.3/icons/32-apps-kpat.png and 
new/kpat-15.08.1/icons/32-apps-kpat.png differ
Files old/kpat-15.04.3/icons/48-apps-kpat.png and 
new/kpat-15.08.1/icons/48-apps-kpat.png differ
Files old/kpat-15.04.3/icons/64-apps-kpat.png and 
new/kpat-15.08.1/icons/64-apps-kpat.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/icons/CMakeLists.txt 
new/kpat-15.08.1/icons/CMakeLists.txt
--- old/kpat-15.04.3/icons/CMakeLists.txt       2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/icons/CMakeLists.txt       2015-08-26 14:41:39.000000000 
+0200
@@ -1,2 +1,2 @@
-ecm_install_icons(ICONS hi128-apps-kpat.png  hi16-apps-kpat.png  
hi22-apps-kpat.png  hi24-apps-kpat.png  hi256-apps-kpat.png  hi32-apps-kpat.png 
 hi48-apps-kpat.png  hi64-apps-kpats.png DESTINATION ${ICON_INSTALL_DIR}   )
+ecm_install_icons(ICONS 128-apps-kpat.png  16-apps-kpat.png  22-apps-kpat.png  
24-apps-kpat.png  256-apps-kpat.png  32-apps-kpat.png  48-apps-kpat.png  
64-apps-kpat.png DESTINATION ${KDE_INSTALL_ICONDIR} THEME hicolor   )
 
Files old/kpat-15.04.3/icons/hi128-apps-kpat.png and 
new/kpat-15.08.1/icons/hi128-apps-kpat.png differ
Files old/kpat-15.04.3/icons/hi16-apps-kpat.png and 
new/kpat-15.08.1/icons/hi16-apps-kpat.png differ
Files old/kpat-15.04.3/icons/hi22-apps-kpat.png and 
new/kpat-15.08.1/icons/hi22-apps-kpat.png differ
Files old/kpat-15.04.3/icons/hi24-apps-kpat.png and 
new/kpat-15.08.1/icons/hi24-apps-kpat.png differ
Files old/kpat-15.04.3/icons/hi256-apps-kpat.png and 
new/kpat-15.08.1/icons/hi256-apps-kpat.png differ
Files old/kpat-15.04.3/icons/hi32-apps-kpat.png and 
new/kpat-15.08.1/icons/hi32-apps-kpat.png differ
Files old/kpat-15.04.3/icons/hi48-apps-kpat.png and 
new/kpat-15.08.1/icons/hi48-apps-kpat.png differ
Files old/kpat-15.04.3/icons/hi64-apps-kpats.png and 
new/kpat-15.08.1/icons/hi64-apps-kpats.png differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/libkcardgame/CMakeLists.txt 
new/kpat-15.08.1/libkcardgame/CMakeLists.txt
--- old/kpat-15.04.3/libkcardgame/CMakeLists.txt        2015-04-27 
13:18:54.000000000 +0200
+++ new/kpat-15.08.1/libkcardgame/CMakeLists.txt        2015-08-26 
14:41:39.000000000 +0200
@@ -10,7 +10,7 @@
 
 add_library( kcardgame SHARED ${libkcardgame_SRCS} )
 generate_export_header(kcardgame BASE_NAME libkcardgame)
-target_link_libraries( kcardgame KF5KDEGames KF5::NewStuff KF5::GuiAddons 
Qt5::Svg KF5::Completion)
+target_link_libraries( kcardgame KF5::NewStuff KF5::GuiAddons Qt5::Svg 
KF5::Completion KF5::I18n)
 
-install( TARGETS kcardgame ${INSTALL_TARGETS_DEFAULT_ARGS} )
-install( FILES kcardtheme.knsrc  DESTINATION  ${CONFIG_INSTALL_DIR} )
+install( TARGETS kcardgame ${KDE_INSTALL_TARGETS_DEFAULT_ARGS} )
+install( FILES kcardtheme.knsrc  DESTINATION  ${KDE_INSTALL_CONFDIR} )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/mimetypes/CMakeLists.txt 
new/kpat-15.08.1/mimetypes/CMakeLists.txt
--- old/kpat-15.04.3/mimetypes/CMakeLists.txt   2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/mimetypes/CMakeLists.txt   2015-08-26 14:41:39.000000000 
+0200
@@ -1,4 +1,4 @@
 find_package( SharedMimeInfo REQUIRED )
 
-install( FILES kpatience.xml DESTINATION ${XDG_MIME_INSTALL_DIR} )
-update_xdg_mimetypes( ${XDG_MIME_INSTALL_DIR} )
+install( FILES kpatience.xml DESTINATION ${KDE_INSTALL_MIMEDIR} )
+update_xdg_mimetypes( ${KDE_INSTALL_MIMEDIR} )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/mimetypes/kpatience.xml 
new/kpat-15.08.1/mimetypes/kpatience.xml
--- old/kpat-15.04.3/mimetypes/kpatience.xml    2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/mimetypes/kpatience.xml    2015-08-26 14:41:39.000000000 
+0200
@@ -2,6 +2,7 @@
 <mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info";>
   <mime-type type="application/vnd.kde.kpatience.savedstate">
     <comment>KPatience legacy save file</comment>
+    <comment xml:lang="ast">Ficheru de guardáu antiguu KPatience</comment>
     <comment xml:lang="bs">KPatience starija datoteka za snimanje</comment>
     <comment xml:lang="ca">Fitxer antic de desat del KPatience</comment>
     <comment xml:lang="cs">Uložený soubor staré verze KPatience</comment>
@@ -10,6 +11,7 @@
     <comment xml:lang="en_GB">KPatience legacy save file</comment>
     <comment xml:lang="es">Restos del archivo de salvaguardado de 
KPatience</comment>
     <comment xml:lang="fi">Vanha KPatience-tallennustiedosto</comment>
+    <comment xml:lang="gl">Ficheiro de partida dunha versión antiga de 
KPatience</comment>
     <comment xml:lang="id">Berkas simpanan warisan KPatience</comment>
     <comment xml:lang="it">File di salvataggio obsoleto per KPatience</comment>
     <comment xml:lang="ko">KPatience 레거시 저장 파일</comment>
@@ -26,6 +28,7 @@
     <comment xml:lang="sr@latin">K‑pasijansov zastareli fajl pozicije</comment>
     <comment xml:lang="sv">Föråldrad sparfil för Patiens</comment>
     <comment xml:lang="uk">файл збереженої гри KPatience у застарілому 
форматі</comment>
+    <comment xml:lang="zh_CN">KPatience 旧存档文件</comment>
     <comment xml:lang="zh_TW">KPatience 傳統儲存檔案</comment>
     <sub-class-of type="application/xml"/>
     <magic priority="80">
@@ -44,6 +47,7 @@
     <comment xml:lang="en_GB">KPatience save file</comment>
     <comment xml:lang="es">Archivo de salvaguardado de KPatience</comment>
     <comment xml:lang="fi">KPatience-tallennustiedosto</comment>
+    <comment xml:lang="gl">Ficheiro de partida de KPatience</comment>
     <comment xml:lang="id">Berkas simpanan KPatience</comment>
     <comment xml:lang="it">File di salvataggio per KPatience</comment>
     <comment xml:lang="ko">KPatience 저장 파일</comment>
@@ -60,6 +64,7 @@
     <comment xml:lang="sr@latin">K‑pasijansov fajl pozicije</comment>
     <comment xml:lang="sv">Sparfil för Patiens</comment>
     <comment xml:lang="uk">файл збереженої гри KPatience</comment>
+    <comment xml:lang="zh_CN">KPatience 存档文件</comment>
     <comment xml:lang="zh_TW">KPatience 儲存檔案</comment>
     <sub-class-of type="application/xml"/>
     <glob pattern="*.kpat" weight="75"/>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/previews/CMakeLists.txt 
new/kpat-15.08.1/previews/CMakeLists.txt
--- old/kpat-15.04.3/previews/CMakeLists.txt    2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/previews/CMakeLists.txt    2015-08-26 14:41:39.000000000 
+0200
@@ -13,4 +13,4 @@
    18.png
 )
 
-install( FILES ${kpat_previews} DESTINATION  ${DATA_INSTALL_DIR}/kpat/previews 
)
+install( FILES ${kpat_previews} DESTINATION  
${KDE_INSTALL_DATADIR}/kpat/previews )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/sounds/CMakeLists.txt 
new/kpat-15.08.1/sounds/CMakeLists.txt
--- old/kpat-15.04.3/sounds/CMakeLists.txt      2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/sounds/CMakeLists.txt      2015-08-26 14:41:39.000000000 
+0200
@@ -3,4 +3,4 @@
    card-down.ogg
 )
 
-install( FILES ${kpat_sounds} DESTINATION  ${DATA_INSTALL_DIR}/kpat/sounds )
+install( FILES ${kpat_sounds} DESTINATION  ${KDE_INSTALL_DATADIR}/kpat/sounds )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/themes/CMakeLists.txt 
new/kpat-15.08.1/themes/CMakeLists.txt
--- old/kpat-15.04.3/themes/CMakeLists.txt      2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/themes/CMakeLists.txt      2015-08-26 14:41:39.000000000 
+0200
@@ -16,7 +16,7 @@
    oldertheme.png
 )
 
-install( FILES ${kpat_themes} DESTINATION  ${DATA_INSTALL_DIR}/kpat/themes )
+install( FILES ${kpat_themes} DESTINATION  ${KDE_INSTALL_DATADIR}/kpat/themes )
 
-install( FILES kpat.knsrc  DESTINATION  ${CONFIG_INSTALL_DIR} )
+install( FILES kpat.knsrc  DESTINATION  ${KDE_INSTALL_CONFDIR} )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/themes/ancientegypt.desktop 
new/kpat-15.08.1/themes/ancientegypt.desktop
--- old/kpat-15.04.3/themes/ancientegypt.desktop        2015-04-27 
13:18:54.000000000 +0200
+++ new/kpat-15.08.1/themes/ancientegypt.desktop        2015-08-26 
14:41:39.000000000 +0200
@@ -1,5 +1,6 @@
 [KGameTheme]
 Name=Desert Sands
+Name[ast]=Sable del desiertu
 Name[bs]=Pustinjski pjesak
 Name[ca]=Sorres del desert
 Name[ca@valencia]=Sorres del desert
@@ -26,6 +27,7 @@
 Name[nb]=Ørkensand
 Name[nds]=Wööstensand
 Name[nl]=Woestijnzand
+Name[nn]=Ørkensand
 Name[pl]=Pustynne piaski
 Name[pt]=Areias do Deserto
 Name[pt_BR]=Areias do deserto
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/themes/cleangreen.desktop 
new/kpat-15.08.1/themes/cleangreen.desktop
--- old/kpat-15.04.3/themes/cleangreen.desktop  2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/themes/cleangreen.desktop  2015-08-26 14:41:39.000000000 
+0200
@@ -1,5 +1,6 @@
 [KGameTheme]
 Name=Clean Green
+Name[ast]=Verde llimpio
 Name[bs]=Čisto zeleno
 Name[ca]=Verd net
 Name[ca@valencia]=Verd net
@@ -25,6 +26,7 @@
 Name[nb]=Ren grønn
 Name[nds]=Oprüümt Gröön
 Name[nl]=Schoon groen
+Name[nn]=Rein og grøn
 Name[pl]=Czysta zieleń
 Name[pt]=Verde Limpo
 Name[pt_BR]=Verde limpo
@@ -43,6 +45,7 @@
 Name[zh_CN]=翠绿
 Name[zh_TW]=Clean Green
 Description=A simple green felt theme
+Description[ast]=Un tema simple de fieltru verde
 Description[bs]=Jednostavna čisto zelena tema
 Description[ca]=Un tema senzill de sentiments verds
 Description[ca@valencia]=Un tema senzill de sentiments verds
@@ -66,6 +69,7 @@
 Description[nb]=Et enkelt grønt filt-tema
 Description[nds]=En eenfach gröön Filtmuster
 Description[nl]=Een eenvoudig thema met groen vilt
+Description[nn]=Eit enkelt grøn filt-tema
 Description[pl]=Prosty, zielony wystrój
 Description[pt]=Um tema simples em verde
 Description[pt_BR]=Um tema simples em verde
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/themes/greenblaze.desktop 
new/kpat-15.08.1/themes/greenblaze.desktop
--- old/kpat-15.04.3/themes/greenblaze.desktop  2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/themes/greenblaze.desktop  2015-08-26 14:41:39.000000000 
+0200
@@ -1,5 +1,6 @@
 [KGameTheme]
 Name=Green Blaze
+Name[ast]=Repampliñu verde
 Name[bs]=Zeleni plamen
 Name[ca]=Tramat verd
 Name[ca@valencia]=Tramat verd
@@ -24,6 +25,7 @@
 Name[nb]=Green Blaze
 Name[nds]=Gröön Gloot
 Name[nl]=Groene glans
+Name[nn]=Grøn blas
 Name[pl]=Blask zieleni
 Name[pt]=Fundo Verde
 Name[pt_BR]=Fundo verde
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kpat-15.04.3/themes/oldertheme.desktop 
new/kpat-15.08.1/themes/oldertheme.desktop
--- old/kpat-15.04.3/themes/oldertheme.desktop  2015-04-27 13:18:54.000000000 
+0200
+++ new/kpat-15.08.1/themes/oldertheme.desktop  2015-08-26 14:41:39.000000000 
+0200
@@ -1,5 +1,6 @@
 [KGameTheme]
 Name=Older Theme
+Name[ast]=Tema más vieyu
 Name[bs]=Starija tema
 Name[ca]=Tema antic
 Name[ca@valencia]=Tema antic
@@ -26,6 +27,7 @@
 Name[nb]=Eldre tema
 Name[nds]=Öller Muster
 Name[nl]=Ouder thema
+Name[nn]=Eldre tema
 Name[pa]=ਪੁਰਾਣਾ ਥੀਮ
 Name[pl]=Starszy wystrój
 Name[pt]=Tema Antigo
@@ -46,6 +48,7 @@
 Name[zh_CN]=怀旧主题
 Name[zh_TW]=舊式主題
 Description=An older, unnamed KPat theme.
+Description[ast]=Un tema más vieyu y ensin nomar pa KPat
 Description[bs]=Starija, bezimena KPat tema
 Description[ca]=Un antic tema sense nom del KPat.
 Description[ca@valencia]=Un antic tema sense nom del KPat.
@@ -72,6 +75,7 @@
 Description[nb]=Et eldre, navnløst KPat-tema.
 Description[nds]=En öller Muster ahn Naam för "KPat".
 Description[nl]=Een ouder KPat-thema zonder naam
+Description[nn]=Eit eldre, namnlaust KPat-tema.
 Description[pl]=Starszy, nienazwany wystrój KPat.
 Description[pt]=Um tema mais antigo e anónimo do KPat.
 Description[pt_BR]=Um tema mais antigo e sem nome do KPat.


Reply via email to