Hello community,

here is the log from the commit of package lxqt-notificationd for 
openSUSE:Factory checked in at 2017-03-12 19:58:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/lxqt-notificationd (Old)
 and      /work/SRC/openSUSE:Factory/.lxqt-notificationd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "lxqt-notificationd"

Sun Mar 12 19:58:58 2017 rev:8 rq:460121 version:0.11.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/lxqt-notificationd/lxqt-notificationd.changes    
2016-10-06 12:43:39.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.lxqt-notificationd.new/lxqt-notificationd.changes   
    2017-03-12 19:58:59.240314228 +0100
@@ -1,0 +2,9 @@
+Thu Feb 23 18:19:37 UTC 2017 - [email protected]
+
+- Update to 0.11.1:
+  * Updated da translation. Removed da_DK
+  * Update and rename French .desktop file
+  * Make CMakeList.txt more uniform.
+  * Remove cpack (#53)
+
+-------------------------------------------------------------------

Old:
----
  lxqt-notificationd-0.11.0.tar.xz
  lxqt-notificationd-0.11.0.tar.xz.asc

New:
----
  lxqt-notificationd-0.11.1.tar.xz
  lxqt-notificationd-0.11.1.tar.xz.asc

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

Other differences:
------------------
++++++ lxqt-notificationd.spec ++++++
--- /var/tmp/diff_new_pack.tpkzev/_old  2017-03-12 19:58:59.808233869 +0100
+++ /var/tmp/diff_new_pack.tpkzev/_new  2017-03-12 19:58:59.812233303 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           lxqt-notificationd
-Version:        0.11.0
+Version:        0.11.1
 Release:        0
 Summary:        LXQt Notification daemon
 License:        LGPL-2.1+
@@ -29,6 +29,7 @@
 BuildRequires:  cmake >= 3.0.2
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
+BuildRequires:  lxqt-build-tools-devel
 BuildRequires:  cmake(KF5WindowSystem)
 BuildRequires:  pkgconfig(Qt5UiTools)
 BuildRequires:  pkgconfig(Qt5Xdg)

++++++ lxqt-notificationd-0.11.0.tar.xz -> lxqt-notificationd-0.11.1.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-notificationd-0.11.0/.gitignore 
new/lxqt-notificationd-0.11.1/.gitignore
--- old/lxqt-notificationd-0.11.0/.gitignore    2016-09-24 00:45:23.000000000 
+0200
+++ new/lxqt-notificationd-0.11.1/.gitignore    1970-01-01 01:00:00.000000000 
+0100
@@ -1,2 +0,0 @@
-build
-*/translations/lxqt-notificationd
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-notificationd-0.11.0/CHANGELOG 
new/lxqt-notificationd-0.11.1/CHANGELOG
--- old/lxqt-notificationd-0.11.0/CHANGELOG     2016-09-24 00:45:23.000000000 
+0200
+++ new/lxqt-notificationd-0.11.1/CHANGELOG     2017-01-01 23:12:42.000000000 
+0100
@@ -1,7 +1,16 @@
 
-lxqt-notificationd-0.11.0 / 2016-09-24
+lxqt-notificationd-0.11.1 / 2017-01-01
 ======================================
 
+  * Updated da translation. Removed da_DK
+  * Update and rename French .desktop file
+  * Make CMakeList.txt more uniform.
+  * Remove cpack (#53)
+
+0.11.0 / 2016-09-24
+===================
+
+  * Release 0.11.0: Add changelog
   * Update and extend README.md
   * Add Catalan translation
   * build: Use external translations
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lxqt-notificationd-0.11.0/CMakeLists.txt 
new/lxqt-notificationd-0.11.1/CMakeLists.txt
--- old/lxqt-notificationd-0.11.0/CMakeLists.txt        2016-09-24 
00:45:23.000000000 +0200
+++ new/lxqt-notificationd-0.11.1/CMakeLists.txt        2017-01-01 
23:12:42.000000000 +0100
@@ -2,33 +2,28 @@
 
 project(lxqt-notificationd)
 
-option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" 
OFF)
+include(GNUInstallDirs)
 
-set(CMAKE_INCLUDE_CURRENT_DIR ON)
-set(CMAKE_POSITION_INDEPENDENT_CODE ON)
 set(CMAKE_AUTOMOC ON)
 set(CMAKE_AUTOUIC ON)
+set(CMAKE_INCLUDE_CURRENT_DIR ON)
+set(CMAKE_POSITION_INDEPENDENT_CODE ON)
+
+option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files" 
OFF)
 
-find_package(Qt5Widgets REQUIRED QUIET)
-find_package(Qt5DBus REQUIRED QUIET)
+find_package(Qt5DBus REQUIRED)
 find_package(Qt5LinguistTools REQUIRED QUIET)
-find_package(KF5WindowSystem REQUIRED QUIET)
+find_package(Qt5Widgets REQUIRED)
+message(STATUS "Building with Qt${Qt5Core_VERSION_STRING}")
 
-find_package(lxqt REQUIRED QUIET)
+find_package(KF5WindowSystem REQUIRED)
+
+find_package(lxqt REQUIRED)
 
-include(GNUInstallDirs)
 include(LXQtCompilerSettings NO_POLICY_SCOPE)
+
+# Translations **********************************
 include(LXQtTranslate)
 
-add_subdirectory(src)
 add_subdirectory(config)
-
-# building tarball with CPack -------------------------------------------------
-include(InstallRequiredSystemLibraries)
-set(CPACK_PACKAGE_VERSION_MAJOR ${LXQT_MAJOR_VERSION})
-set(CPACK_PACKAGE_VERSION_MINOR ${LXQT_MINOR_VERSION})
-set(CPACK_PACKAGE_VERSION_PATCH ${LXQT_PATCH_VERSION})
-set(CPACK_GENERATOR TBZ2)
-set(CPACK_SOURCE_GENERATOR TBZ2)
-set(CPACK_SOURCE_IGNORE_FILES /build/;.gitignore;.*~;.git;.kdev4;temp)
-include(CPack)
+add_subdirectory(src)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_da.desktop
 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_da.desktop
--- 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_da.desktop
      2016-09-24 00:45:23.000000000 +0200
+++ 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_da.desktop
      2017-01-01 23:12:42.000000000 +0100
@@ -1,4 +1,3 @@
-# Translations
-GenericName[da]=Notesblok
-Name[da]=Strømstyring
-Comment[da]=Indstil freedesktop meddelelser på LXQt skrivebord
+Name[da]=Skrivebordsnotifikationer
+GenericName[da]=LXQt-notifikationsindstillinger
+Comment[da]=Konfigurér skrivebordsnotifikationer
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_da_DK.desktop
 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_da_DK.desktop
--- 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_da_DK.desktop
   2016-09-24 00:45:23.000000000 +0200
+++ 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_da_DK.desktop
   1970-01-01 01:00:00.000000000 +0100
@@ -1,4 +0,0 @@
-# Translations
-GenericName[da_DK]=LXQt freedesktop Meddelelsesindstillinger
-Name[da_DK]=LXQt freedesktop Meddelelsesindstillinger
-Comment[da_DK]=Indstil freedesktop meddelelser på LXQt skrivebord
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_fr.desktop
 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_fr.desktop
--- 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_fr.desktop
      1970-01-01 01:00:00.000000000 +0100
+++ 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_fr.desktop
      2017-01-01 23:12:42.000000000 +0100
@@ -0,0 +1,4 @@
+# Translations
+Name[fr]=Paramétrage des notifications
+GenericName[fr]=Paramétrage des notifications du bureau LXQt
+Comment[fr]=Paramétrage des notifications du bureau LXQt
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_fr_FR.desktop
 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_fr_FR.desktop
--- 
old/lxqt-notificationd-0.11.0/config/translations/lxqt-config-notificationd_fr_FR.desktop
   2016-09-24 00:45:23.000000000 +0200
+++ 
new/lxqt-notificationd-0.11.1/config/translations/lxqt-config-notificationd_fr_FR.desktop
   1970-01-01 01:00:00.000000000 +0100
@@ -1,3 +0,0 @@
-# Translations
-GenericName[fr_FR]=Paramétrage des notifications du bureau
-Name[fr_FR]=Paramétrage notifications



Reply via email to