Hello community,

here is the log from the commit of package quiterss for openSUSE:Factory 
checked in at 2017-06-20 09:39:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/quiterss (Old)
 and      /work/SRC/openSUSE:Factory/.quiterss.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "quiterss"

Tue Jun 20 09:39:45 2017 rev:5 rq:504279 version:0.18.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/quiterss/quiterss.changes        2017-06-16 
10:54:37.316862480 +0200
+++ /work/SRC/openSUSE:Factory/.quiterss.new/quiterss.changes   2017-06-20 
09:39:49.256927314 +0200
@@ -1,0 +2,18 @@
+Fri Jun 16 18:16:22 UTC 2017 - aloi...@gmx.com
+
+- Update to version 0.18.5
+  * Changed: SQLite 3.19.1
+  * Changed: Application icon size
+  * Fixed: Parsing of some feeds
+  * Fixed: Switching between feeds in Newspaper view
+  * Fixed: Layout in Newspaper view
+  * Fixed: Notification. Displaying of previous news
+
+- Dropped quiterss-fix-tray-icon.patch (merged upstream)
+
+- Reverted previous change and replaced it with
+  quiterss-list_qmfiles.patch
+
+- Set proper QMAKE_LRELEASE executable
+
+-------------------------------------------------------------------

Old:
----
  QuiteRSS-0.18.4-src.tar.gz
  quiterss-fix-tray-icon.patch

New:
----
  QuiteRSS-0.18.5-src.tar.gz
  quiterss-list_qmfiles.patch

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

Other differences:
------------------
++++++ quiterss.spec ++++++
--- /var/tmp/diff_new_pack.szu3np/_old  2017-06-20 09:39:49.976825813 +0200
+++ /var/tmp/diff_new_pack.szu3np/_new  2017-06-20 09:39:49.980825250 +0200
@@ -17,15 +17,15 @@
 
 
 Name:           quiterss
-Version:        0.18.4
+Version:        0.18.5
 Release:        0
 Summary:        RSS/Atom aggregator
 License:        GPL-3.0+
 Group:          Productivity/Networking/News/Utilities
 Url:            https://www.quiterss.org
 Source:         
https://quiterss.org/files/%{version}/QuiteRSS-%{version}-src.tar.gz
-# PATCH-FIX-UPSTREAM quiterss-fix-tray-icon.patch 
https://github.com/QuiteRSS/quiterss/issues/819
-Patch0:         quiterss-fix-tray-icon.patch
+# PATCH-FIX-UPSTREAM quiterss-list_qmfiles.patch -- don't use wildcard when 
installing .qm files
+Patch1:         quiterss-list_qmfiles.patch
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
@@ -50,14 +50,10 @@
 
 %prep
 %setup -q -c
-%patch0 -p1
+%patch1 -p1
 
 %build
-mkdir -p release/target/lang
-for p in lang/*.ts ; do 
-   touch release/target/${p//.ts/.qm}
-done
-%qmake5 PREFIX=%{_prefix}
+%qmake5 PREFIX=%{_prefix} QMAKE_LRELEASE="lrelease-qt5"
 %make_jobs
 
 %install

++++++ QuiteRSS-0.18.4-src.tar.gz -> QuiteRSS-0.18.5-src.tar.gz ++++++
++++ 78062 lines of diff (skipped)

++++++ quiterss-list_qmfiles.patch ++++++
From: Luigi Baldoni <aloi...@gmx.com>
Date: 2017-06-16 16:28:22 +0200
Subject: Don't use wildcard when installing .qm files

Create a file list of locale (.qm) files since Qt 5.9 has
problems with wildcards.

Index: quiterss-0.18.5/QuiteRSS.pro
===================================================================
--- quiterss-0.18.5.orig/QuiteRSS.pro
+++ quiterss-0.18.5/QuiteRSS.pro
@@ -299,7 +299,9 @@ unix:!mac {
   icon_128.path = $$quote($$PREFIX/share/icons/hicolor/128x128/apps)
   icon_256.path = $$quote($$PREFIX/share/icons/hicolor/256x256/apps)
 
-  translations.files = $$quote($$DESTDIR/lang/)*.qm
+  translations.files = $$TRANSLATIONS
+  translations.files ~= s,\\.ts$,.qm,g
+  translations.files ~= s,^,$$DESTDIR/,g
   translations.path =  $$quote($$DATA_DIR/lang)
   translations.CONFIG += no_check_exist
 

Reply via email to