Hello community,

here is the log from the commit of package kbookmarks for openSUSE:Factory 
checked in at 2014-04-02 17:21:46
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kbookmarks (Old)
 and      /work/SRC/openSUSE:Factory/.kbookmarks.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kbookmarks"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kbookmarks/kbookmarks.changes    2014-03-10 
12:17:55.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.kbookmarks.new/kbookmarks.changes       
2014-04-02 17:21:50.000000000 +0200
@@ -1,0 +2,9 @@
+Sat Mar 29 19:47:21 UTC 2014 - [email protected]
+
+- Update to 4.98.0
+  * API improvements and cleanups
+  * Buildsystem fixes
+  * For more details please see:
+    http://www.kde.org/announcements/announce-frameworks5-beta1.php
+
+-------------------------------------------------------------------

Old:
----
  kbookmarks-4.97.0.tar.xz

New:
----
  kbookmarks-4.98.0.tar.xz

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

Other differences:
------------------
++++++ kbookmarks.spec ++++++
--- /var/tmp/diff_new_pack.ryyIkQ/_old  2014-04-02 17:21:50.000000000 +0200
+++ /var/tmp/diff_new_pack.ryyIkQ/_new  2014-04-02 17:21:50.000000000 +0200
@@ -18,10 +18,10 @@
 
 %define lname   libKF5Bookmarks5
 Name:           kbookmarks
-Version:        4.97.0
+Version:        4.98.0
 Release:        0
 BuildRequires:  cmake >= 2.8.12
-BuildRequires:  extra-cmake-modules >= 0.0.11
+BuildRequires:  extra-cmake-modules >= 0.0.12
 BuildRequires:  fdupes
 BuildRequires:  kconfigwidgets-devel >= %{_kf5_version}
 BuildRequires:  kcoreaddons-devel >= %{_kf5_version}

++++++ kbookmarks-4.97.0.tar.xz -> kbookmarks-4.98.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-4.97.0/CMakeLists.txt 
new/kbookmarks-4.98.0/CMakeLists.txt
--- old/kbookmarks-4.97.0/CMakeLists.txt        2014-03-01 12:50:09.000000000 
+0100
+++ new/kbookmarks-4.98.0/CMakeLists.txt        2014-03-28 19:16:08.000000000 
+0100
@@ -2,7 +2,7 @@
 
 project(KBookmarks)
 
-find_package(ECM 0.0.11 REQUIRED NO_MODULE)
+find_package(ECM 0.0.12 REQUIRED NO_MODULE)
 
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
@@ -16,7 +16,7 @@
 include(ECMSetupVersion)
 include(ECMGenerateHeaders)
 
-set(KF5_VERSION "4.97.0")
+set(KF5_VERSION "4.98.0")
 
 ecm_setup_version(${KF5_VERSION}
                   VARIABLE_PREFIX KBOOKMARKS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-4.97.0/src/Messages.sh 
new/kbookmarks-4.98.0/src/Messages.sh
--- old/kbookmarks-4.97.0/src/Messages.sh       1970-01-01 01:00:00.000000000 
+0100
+++ new/kbookmarks-4.98.0/src/Messages.sh       2014-03-28 19:16:08.000000000 
+0100
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+# Invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources.
+# The results are stored in a pseudo .cpp file to be picked up by xgettext.
+lst=`find . -name \*.rc -o -name \*.ui -o -name \*.kcfg`
+if [ -n "$lst" ] ; then
+    $EXTRACTRC $lst >> rc.cpp
+fi
+
+# If your framework contains tips-of-the-day, call preparetips as well.
+if [ -f "data/tips" ] ; then
+    ( cd data && $PREPARETIPS > ../tips.cpp )
+fi
+
+# Extract strings from all source files.
+# If your framework depends on KI18n, use $XGETTEXT. If it uses Qt translation
+# system, use $EXTRACT_TR_STRINGS.
+$EXTRACT_TR_STRINGS `find . -name \*.cpp -o -name \*.h -name \*.qml` -o 
$podir/kbookmarks5.pot
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-4.97.0/src/kbookmark.cpp 
new/kbookmarks-4.98.0/src/kbookmark.cpp
--- old/kbookmarks-4.97.0/src/kbookmark.cpp     2014-03-01 12:50:09.000000000 
+0100
+++ new/kbookmarks-4.98.0/src/kbookmark.cpp     2014-03-28 19:16:08.000000000 
+0100
@@ -304,7 +304,7 @@
 QString KBookmark::fullText() const
 {
     if (isSeparator()) {
-        return QCoreApplication::translate("Bookmark separator", "--- 
separator ---");
+        return QCoreApplication::translate("KBookmark", "--- separator ---", 
"Bookmark separator");
     }
 
     QString text = element.namedItem("title").toElement().text();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-4.97.0/src/kbookmarkdialog.cpp 
new/kbookmarks-4.98.0/src/kbookmarkdialog.cpp
--- old/kbookmarks-4.97.0/src/kbookmarkdialog.cpp       2014-03-01 
12:50:09.000000000 +0100
+++ new/kbookmarks-4.98.0/src/kbookmarkdialog.cpp       2014-03-28 
19:16:08.000000000 +0100
@@ -67,17 +67,17 @@
 {
     title = new QLineEdit(q);
     title->setMinimumWidth(300);
-    titleLabel = new QLabel(q->tr("Name:", "@label:textbox"), q);
+    titleLabel = new QLabel(KBookmarkDialog::tr("Name:", "@label:textbox"), q);
     titleLabel->setBuddy(title);
 
     url = new QLineEdit(q);
     url->setMinimumWidth(300);
-    urlLabel = new QLabel(q->tr("Location:", "@label:textbox"), q);
+    urlLabel = new QLabel(KBookmarkDialog::tr("Location:", "@label:textbox"), 
q);
     urlLabel->setBuddy(url);
 
     comment = new QLineEdit(q);
     comment->setMinimumWidth(300);
-    commentLabel = new QLabel(q->tr("Comment:", "@label:textbox"), q);
+    commentLabel = new QLabel(KBookmarkDialog::tr("Comment:", 
"@label:textbox"), q);
     commentLabel->setBuddy(comment);
 
     folderTree = new QTreeWidget(q);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-4.97.0/src/kbookmarkimporter_ns.h 
new/kbookmarks-4.98.0/src/kbookmarkimporter_ns.h
--- old/kbookmarks-4.97.0/src/kbookmarkimporter_ns.h    2014-03-01 
12:50:09.000000000 +0100
+++ new/kbookmarks-4.98.0/src/kbookmarkimporter_ns.h    2014-03-28 
19:16:08.000000000 +0100
@@ -29,6 +29,7 @@
  */
 class KBOOKMARKS_EXPORT KNSBookmarkImporterImpl : public KBookmarkImporterBase
 {
+    Q_OBJECT // For QObject::tr
 public:
     KNSBookmarkImporterImpl() : m_utf8(false) { }
     void setUtf8(bool utf8)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kbookmarks-4.97.0/src/kbookmarkimporter_opera.h 
new/kbookmarks-4.98.0/src/kbookmarkimporter_opera.h
--- old/kbookmarks-4.97.0/src/kbookmarkimporter_opera.h 2014-03-01 
12:50:09.000000000 +0100
+++ new/kbookmarks-4.98.0/src/kbookmarkimporter_opera.h 2014-03-28 
19:16:08.000000000 +0100
@@ -29,6 +29,7 @@
  */
 class KBOOKMARKS_EXPORT KOperaBookmarkImporterImpl : public 
KBookmarkImporterBase
 {
+    Q_OBJECT // For QObject::tr
 public:
     KOperaBookmarkImporterImpl() { }
     virtual void parse();

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to