commit datovka for openSUSE:Factory

2020-06-06 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2020-06-06 23:40:18

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new.3606 (New)


Package is "datovka"

Sat Jun  6 23:40:18 2020 rev:35 rq:812025 version:4.15.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2020-03-09 
11:42:24.213324726 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new.3606/datovka.changes
2020-06-06 23:40:36.241141745 +0200
@@ -1,0 +2,8 @@
+Fri Jun  5 07:25:55 UTC 2020 - Jiri Slaby 
+
+- add
+  0001-avoid-using-deprecated-qs-rand.patch
+  0001-gui-datovka-annotate-fall-through-cases.patch
+  0001-Fixed-compilation-using-Qt-5.15.0.patch
+
+---

New:

  0001-Fixed-compilation-using-Qt-5.15.0.patch
  0001-avoid-using-deprecated-qs-rand.patch
  0001-gui-datovka-annotate-fall-through-cases.patch



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.O24TXc/_old  2020-06-06 23:40:37.273144983 +0200
+++ /var/tmp/diff_new_pack.O24TXc/_new  2020-06-06 23:40:37.273144983 +0200
@@ -27,6 +27,9 @@
 Source1:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz.sha256
 # PATCH-FIX-UPSTREAM: remove some issues with current .pro file
 Patch0: datovka-fix-pro.patch
+Patch1: 0001-Fixed-compilation-using-Qt-5.15.0.patch
+Patch2: 0001-avoid-using-deprecated-qs-rand.patch
+Patch3: 0001-gui-datovka-annotate-fall-through-cases.patch
 BuildRequires:  libqt5-linguist
 BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig
@@ -57,8 +60,7 @@
 %{?lang_package}
 
 %prep
-%setup -q
-%patch0 -p1
+%autosetup -p1
 sed -i \
 -e 's:lrelease:lrelease-qt5:g' \
 %{name}.pro

++ 0001-Fixed-compilation-using-Qt-5.15.0.patch ++
From: Karel Slany 
Date: Fri, 5 Jun 2020 08:55:23 +0200
Subject: Fixed compilation using Qt-5.15.0.
Patch-mainline: yes
Git-commit: d98edca9cf17ae087b743c17e9922cbbd08f94fa
References: qt 5.15

Addresses #462.
---
 src/delegates/tag_item.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/delegates/tag_item.cpp b/src/delegates/tag_item.cpp
index 39aa32e60e42..c0b43d9d5166 100644
--- a/src/delegates/tag_item.cpp
+++ b/src/delegates/tag_item.cpp
@@ -23,6 +23,7 @@
 
 #include  /* std::sort */
 #include 
+#include 
 
 #include "src/datovka_shared/localisation/localisation.h"
 #include "src/datovka_shared/log/log.h"
-- 
2.27.0

++ 0001-avoid-using-deprecated-qs-rand.patch ++
From: Jiri Slaby 
Date: Fri, 5 Jun 2020 09:06:29 +0200
Subject: avoid using deprecated qs?rand
Patch-mainline: no
References: qs?rand

Signed-off-by: Jiri Slaby 
---
 src/datovka_shared/crypto/crypto_wrapped.cpp| 13 +
 src/datovka_shared/utility/strings.cpp  | 11 +++
 src/main.cpp|  2 ++
 src/main_cli.cpp|  2 ++
 .../gui/dialogue_stored_files.cpp   | 13 -
 5 files changed, 40 insertions(+), 1 deletion(-)

diff --git a/src/datovka_shared/crypto/crypto_wrapped.cpp 
b/src/datovka_shared/crypto/crypto_wrapped.cpp
index b875e00f9174..a5ff23a32c7d 100644
--- a/src/datovka_shared/crypto/crypto_wrapped.cpp
+++ b/src/datovka_shared/crypto/crypto_wrapped.cpp
@@ -25,15 +25,28 @@
 #include "src/datovka_shared/crypto/crypto_pwd.h"
 #include "src/datovka_shared/crypto/crypto_wrapped.h"
 
+#include 
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
+ #include 
+#endif
+
 QByteArray randomSalt(unsigned int len)
 {
QByteArray salt;
 
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
+   salt.resize(len);
+
+   Q_ASSERT((len % sizeof(quint32)) == 0);
+
+   QRandomGenerator::global()->fillRange((quint32 *)salt.data(), len / 
sizeof(quint32));
+#else
/* Make sure that random generator is initialised. */
 
for (unsigned int i = 0; i < len; ++i) {
salt.append(qrand() % 256);
}
+#endif
 
return salt;
 }
diff --git a/src/datovka_shared/utility/strings.cpp 
b/src/datovka_shared/utility/strings.cpp
index 8b6f25d4be18..01c40c1595c0 100644
--- a/src/datovka_shared/utility/strings.cpp
+++ b/src/datovka_shared/utility/strings.cpp
@@ -23,6 +23,10 @@
 
 #include  /* qrand() */
 
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
+ #include 
+#endif
+
 #include "src/datovka_shared/utility/strings.h"
 
 QString Utility::generateRandomString(int length)
@@ -34,9 +38,16 @@ QString Utility::generateRandomString(int length)
"!#$%&()*+,-.:=?@[]_{|}~");
 
QString randomString;
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 10, 0))
+   QRandomGenerator 

commit datovka for openSUSE:Factory

2020-03-09 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2020-03-09 11:41:49

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new.26092 (New)


Package is "datovka"

Mon Mar  9 11:41:49 2020 rev:34 rq:782800 version:4.15.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2019-11-30 
10:40:55.748146621 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new.26092/datovka.changes   
2020-03-09 11:42:24.213324726 +0100
@@ -1,0 +2,20 @@
+Mon Mar  9 07:09:54 UTC 2020 - Jiri Slaby 
+
+- Update to 4.15.0
+ * Added support for shadow accounts (i.e. accounts without database).
+ * Shadow accounts which don't cause message acceptance can be used to
+   automatically download message lists.
+ * Data-box contact lists can be sorted.
+ * Fixed failing tests when no ISDS login credentials are supplied.
+ * Using 'identification number' (IČO) instead of 'subject ID' (IČ).
+ * Displaying leading zeros in identification numbers in account info page.
+ * Windows application can be compiled and bundled with OpenSSL-1.1.1. Actual
+   version of OpenSSL is determined by the version of the used Qt libraries.
+ * Modified code about which the compiler has been giving deprecation warnings
+   when compiling with Qt-5.14.
+ * Implemented the upload_account_status records management service. The
+   service sends brief reports about the account status containing summaries
+   about the number of messages in different states in the data box. The
+   summaries are generated when a records management service is used.
+
+---

Old:

  datovka-4.14.1.tar.xz
  datovka-4.14.1.tar.xz.sha256

New:

  datovka-4.15.0.tar.xz
  datovka-4.15.0.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.zKCVEg/_old  2020-03-09 11:42:25.481325412 +0100
+++ /var/tmp/diff_new_pack.zKCVEg/_new  2020-03-09 11:42:25.481325412 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.14.1
+Version:4.15.0
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0-or-later

++ datovka-4.14.1.tar.xz -> datovka-4.15.0.tar.xz ++
 24866 lines of diff (skipped)

++ datovka-4.14.1.tar.xz.sha256 -> datovka-4.15.0.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.14.1.tar.xz.sha256 
2019-11-30 10:40:55.724146624 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new.26092/datovka-4.15.0.tar.xz.sha256  
2020-03-09 11:42:23.345324257 +0100
@@ -1 +1 @@
-6676df789db928db3fb6246a196de9bcfdfb2e8ef2a6bf4912e7f02faaee364a
+2123ad7ef3b645868d6bcb5a2213f2d5107f45229dcc787124c3abe82d0e61b8




commit datovka for openSUSE:Factory

2019-11-30 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2019-11-30 10:39:50

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new.26869 (New)


Package is "datovka"

Sat Nov 30 10:39:50 2019 rev:33 rq:751844 version:4.14.1

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2019-06-01 
09:46:47.523379751 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new.26869/datovka.changes   
2019-11-30 10:40:55.748146621 +0100
@@ -1,0 +2,15 @@
+Thu Nov 28 12:34:08 UTC 2019 - Jiri Slaby 
+
+- Update to 4.14.1
+  * Able to log from command line into an account that user a MEP login
+procedure.
+  * Able to verify qualified time stamps in a new format which is used in
+the testing environment since the end of August 2019 and is going to be 
used
+in the production environment.
+  * Allowing *.pfx files for login certificates.
+  * Sharing account credentials code with mobile application.
+  * Fixed a problem with non-functional account deletion in Qt-5.10 and later.
+  * Using username together with testing flag to internally identify accounts.
+  * Added MEP (mobile key) login procedure, libisds-0.11 is required.
+
+---

Old:

  datovka-4.13.1.tar.xz
  datovka-4.13.1.tar.xz.sha256

New:

  datovka-4.14.1.tar.xz
  datovka-4.14.1.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.vTsuJb/_old  2019-11-30 10:40:56.228146563 +0100
+++ /var/tmp/diff_new_pack.vTsuJb/_new  2019-11-30 10:40:56.232146563 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.13.1
+Version:4.14.1
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0-or-later

++ datovka-4.13.1.tar.xz -> datovka-4.14.1.tar.xz ++
 33623 lines of diff (skipped)

++ datovka-4.13.1.tar.xz.sha256 -> datovka-4.14.1.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.13.1.tar.xz.sha256 
2019-06-01 09:46:47.495379761 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new.26869/datovka-4.14.1.tar.xz.sha256  
2019-11-30 10:40:55.724146624 +0100
@@ -1 +1 @@
-b6f030253200b55bd8b13b124b0b8aaa1c6f7dc27e2e84c6a8abe0ab90986d96
+6676df789db928db3fb6246a196de9bcfdfb2e8ef2a6bf4912e7f02faaee364a




commit datovka for openSUSE:Factory

2019-06-01 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2019-06-01 09:46:46

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new.5148 (New)


Package is "datovka"

Sat Jun  1 09:46:46 2019 rev:32 rq:705799 version:4.13.1

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2019-04-18 
09:56:47.433355107 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new.5148/datovka.changes
2019-06-01 09:46:47.523379751 +0200
@@ -1,0 +2,6 @@
+Tue May 28 07:13:58 UTC 2019 - Jiri Slaby 
+
+- Update to 4.13.1
+  * Fixes crashes during account synchronization.
+
+---

Old:

  datovka-4.13.0.tar.xz
  datovka-4.13.0.tar.xz.sha256

New:

  datovka-4.13.1.tar.xz
  datovka-4.13.1.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.exjB2H/_old  2019-06-01 09:46:47.971379598 +0200
+++ /var/tmp/diff_new_pack.exjB2H/_new  2019-06-01 09:46:47.971379598 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package datovka
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 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
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.13.0
+Version:4.13.1
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0-or-later

++ datovka-4.13.0.tar.xz -> datovka-4.13.1.tar.xz ++
 2212 lines of diff (skipped)

++ datovka-4.13.0.tar.xz.sha256 -> datovka-4.13.1.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.13.0.tar.xz.sha256 
2019-04-18 09:56:47.277355009 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new.5148/datovka-4.13.1.tar.xz.sha256   
2019-06-01 09:46:47.495379761 +0200
@@ -1 +1 @@
-f091cda00a2b138578c1b1b05f76b22871dc37669db17af723d7918fde0f605e
+b6f030253200b55bd8b13b124b0b8aaa1c6f7dc27e2e84c6a8abe0ab90986d96




commit datovka for openSUSE:Factory

2019-04-18 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2019-04-18 09:56:45

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new.17052 (New)


Package is "datovka"

Thu Apr 18 09:56:45 2019 rev:31 rq:695104 version:4.13.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2019-01-21 
10:58:06.103450919 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new.17052/datovka.changes   
2019-04-18 09:56:47.433355107 +0200
@@ -1,0 +2,8 @@
+Wed Apr 17 10:18:50 UTC 2019 - Tomáš Chvátal 
+
+- Update to 4.13.0 bsc#1104620:
+  * Account renaming now possible
+  * Special format downloading now alloved to "spisova sluzba"
+- Rebase patch datovka-fix-pro.patch
+
+---

Old:

  datovka-4.12.0.tar.xz
  datovka-4.12.0.tar.xz.sha256

New:

  datovka-4.13.0.tar.xz
  datovka-4.13.0.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.8CnKac/_old  2019-04-18 09:56:48.061355502 +0200
+++ /var/tmp/diff_new_pack.8CnKac/_new  2019-04-18 09:56:48.061355502 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.12.0
+Version:4.13.0
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0-or-later

++ datovka-4.12.0.tar.xz -> datovka-4.13.0.tar.xz ++
 47201 lines of diff (skipped)

++ datovka-4.12.0.tar.xz.sha256 -> datovka-4.13.0.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.12.0.tar.xz.sha256 
2019-01-21 10:58:04.823452590 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new.17052/datovka-4.13.0.tar.xz.sha256  
2019-04-18 09:56:47.277355009 +0200
@@ -1 +1 @@
-a7a87f22b0eddaee8064c03fe6707c772100d893b0d8d57b0b93ba76a6379ab5
+f091cda00a2b138578c1b1b05f76b22871dc37669db17af723d7918fde0f605e

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.8CnKac/_old  2019-04-18 09:56:48.597355840 +0200
+++ /var/tmp/diff_new_pack.8CnKac/_new  2019-04-18 09:56:48.601355842 +0200
@@ -2,19 +2,19 @@
  datovka.pro |   26 --
  1 file changed, 8 insertions(+), 18 deletions(-)
 
-Index: datovka-4.10.3/datovka.pro
+Index: datovka-4.13.0/datovka.pro
 ===
 datovka-4.10.3.orig/datovka.pro
-+++ datovka-4.10.3/datovka.pro
-@@ -43,7 +43,6 @@ isEmpty(UI_DIR) {
+--- datovka-4.13.0.orig/datovka.pro
 datovka-4.13.0/datovka.pro
+@@ -46,7 +46,6 @@ isEmpty(UI_DIR) {
  CONFIG += object_parallel_to_source
  
  DEFINES += \
 -  DEBUG=1 \
-   VERSION=\\\"$${VERSION}\\\"
- 
- unix:!macx {
-@@ -94,11 +93,6 @@ unix:!macx {
+   VERSION=\\\"$${VERSION}\\\" \
+   APP_NAME=\\\"$${APP_NAME}\\\" \
+   APP_ORG_DOMAIN=\\\"cz.nic\\\" \
+@@ -100,11 +99,6 @@ unix:!macx {
localisation.files += locale/datovka_cs.qm \
locale/datovka_en.qm
  
@@ -26,7 +26,7 @@
DEFINES += DATADIR=\\\"$$DATADIR\\\" \
PKGDATADIR=\\\"$$PKGDATADIR\\\" \
LOCALE_INST_DIR="\"\\\"$${LOCALE_INST_DIR}\\\"\"" \
-@@ -116,15 +110,13 @@ unix:!macx {
+@@ -122,15 +116,13 @@ unix:!macx {
icon64 \
icon128 \
icon256 \
@@ -45,7 +45,7 @@
  
  #INCLUDEPATH +=
  
-@@ -235,15 +227,8 @@ macx {
+@@ -251,15 +243,8 @@ macx {
locale/datovka_en.qm
localisation.files += locale/qtbase_cs.qm
  




commit datovka for openSUSE:Factory

2019-01-21 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2019-01-21 10:57:43

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new.28833 (New)


Package is "datovka"

Mon Jan 21 10:57:43 2019 rev:30 rq:666455 version:4.12.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2018-10-23 
20:42:33.332389108 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new.28833/datovka.changes   
2019-01-21 10:58:06.103450919 +0100
@@ -1,0 +2,8 @@
+Wed Jan 16 11:38:46 UTC 2019 - Tomáš Chvátal 
+
+- Update to 4.12.0 bsc#1104620:
+  * Bigger attachments allowed (50MB)
+  * HiDPI icons
+  * Minor fixes
+
+---

Old:

  datovka-4.11.0.tar.xz
  datovka-4.11.0.tar.xz.sha256

New:

  datovka-4.12.0.tar.xz
  datovka-4.12.0.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.ZEoLvP/_old  2019-01-21 10:58:07.767448747 +0100
+++ /var/tmp/diff_new_pack.ZEoLvP/_new  2019-01-21 10:58:07.767448747 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.11.0
+Version:4.12.0
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0-or-later

++ datovka-4.11.0.tar.xz -> datovka-4.12.0.tar.xz ++
 54380 lines of diff (skipped)

++ datovka-4.11.0.tar.xz.sha256 -> datovka-4.12.0.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.11.0.tar.xz.sha256 
2018-09-14 00:01:57.877927440 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new.28833/datovka-4.12.0.tar.xz.sha256  
2019-01-21 10:58:04.823452590 +0100
@@ -1 +1 @@
-0908ed53556674bbaaeb64e2301d77c3b5773a9b8bb863aafad6b94b153f
+a7a87f22b0eddaee8064c03fe6707c772100d893b0d8d57b0b93ba76a6379ab5




commit datovka for openSUSE:Factory

2018-10-23 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2018-10-23 20:41:26

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Tue Oct 23 20:41:26 2018 rev:29 rq:643896 version:4.11.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2018-09-14 
00:01:57.901927422 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2018-10-23 
20:42:33.332389108 +0200
@@ -1,0 +2,5 @@
+Tue Oct 23 08:12:36 UTC 2018 - Tomáš Chvátal 
+
+- Use %license macros
+
+---



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.ubvD1X/_old  2018-10-23 20:42:34.224388043 +0200
+++ /var/tmp/diff_new_pack.ubvD1X/_new  2018-10-23 20:42:34.228388038 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package datovka
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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
@@ -12,7 +12,7 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -20,15 +20,16 @@
 Version:4.11.0
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
-License:GPL-3.0+
+License:GPL-3.0-or-later
 Group:  Development/Libraries/Python
-Url:https://www.datovka.cz
+URL:https://www.datovka.cz
 Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz
 Source1:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz.sha256
 # PATCH-FIX-UPSTREAM: remove some issues with current .pro file
 Patch0: datovka-fix-pro.patch
 BuildRequires:  libqt5-linguist
 BuildRequires:  openssl-devel
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(Qt5Core) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Gui) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Network) >= 5.2.0
@@ -38,16 +39,15 @@
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
 BuildRequires:  pkgconfig(libisds) >= 0.10.8
 Requires:   libqt5_sql_backend
+Recommends: %{name}-lang
+# Included inside with different approach
+Obsoletes:  python-dslib
 %if 0%{?suse_version} < 1330
 Requires(post): hicolor-icon-theme
 Requires(post): update-desktop-files
 Requires(postun): hicolor-icon-theme
 Requires(postun): update-desktop-files
 %endif
-Recommends: %{name}-lang
-# Included inside with different approach
-Obsoletes:  python-dslib
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A library for accessing ISDS (Informační system datovych schranek/
@@ -90,8 +90,8 @@
 %endif
 
 %files
-%defattr(-,root,root)
-%doc AUTHORS COPYING ChangeLog
+%license COPYING
+%doc AUTHORS ChangeLog
 %{_bindir}/datovka
 %{_datadir}/applications/datovka.desktop
 %dir %{_datadir}/appdata




commit datovka for openSUSE:Factory

2018-09-13 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2018-09-14 00:01:55

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Fri Sep 14 00:01:55 2018 rev:28 rq:635483 version:4.11.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2018-08-27 
13:48:49.152506025 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2018-09-14 
00:01:57.901927422 +0200
@@ -1,0 +2,6 @@
+Thu Sep 13 08:17:12 UTC 2018 - Tomáš Chvátal 
+
+- Version update to 4.11.0:
+  * Few feature enhancements in mesage composing
+
+---

Old:

  datovka-4.10.3.tar.xz
  datovka-4.10.3.tar.xz.sha256

New:

  datovka-4.11.0.tar.xz
  datovka-4.11.0.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.dZRaYJ/_old  2018-09-14 00:01:58.581926903 +0200
+++ /var/tmp/diff_new_pack.dZRaYJ/_new  2018-09-14 00:01:58.585926899 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.10.3
+Version:4.11.0
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0+

++ datovka-4.10.3.tar.xz -> datovka-4.11.0.tar.xz ++
 25959 lines of diff (skipped)

++ datovka-4.10.3.tar.xz.sha256 -> datovka-4.11.0.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.10.3.tar.xz.sha256 
2018-08-27 13:48:49.108505963 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka-4.11.0.tar.xz.sha256
2018-09-14 00:01:57.877927440 +0200
@@ -1 +1 @@
-1785091f896d906ef3a5a65522b659e2815712516bf3a1982ace7b4bbfc8d892
+0908ed53556674bbaaeb64e2301d77c3b5773a9b8bb863aafad6b94b153f




commit datovka for openSUSE:Factory

2018-08-27 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2018-08-27 13:48:40

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Mon Aug 27 13:48:40 2018 rev:27 rq:629923 version:4.10.3

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2018-01-19 
11:54:10.196932818 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2018-08-27 
13:48:49.152506025 +0200
@@ -1,0 +2,49 @@
+Fri Aug 17 12:06:37 UTC 2018 - tchva...@suse.com
+
+- Update datovka-fix-pro.patch to contain fix for Leap 42.3 build
+
+---
+Mon Aug 13 07:02:51 UTC 2018 - tchva...@suse.com
+
+- Update to 4.10.3 bsc#1104620:
+  * Added classes based on Qt types encapsulating various ISDS data types and
+structures. Sharing this code with mobile application.
+  * Added per-account locking of communication contexts.
+  * Modified database interface to accommodate new data types.
+  * Explicitly specifying tab order for most windows and dialogues. It is also
+possible (on Windows and Linux) to cycle through actions in top tool bar.
+  * Asking users for confirmation before deleting tags which are still assigned
+to some messages.
+  * Added tooltip description of message state value in sent message list.
+  * Added button to view account password when editing account credentials and
+PIN (master password) is enabled.
+  * Added DigiCert Global Root G2 certificate.
+  * Improved keyboard-based control of main and other dialogue windows. All
+important elements should be navigable only by keyboard (on Windows and
+Linux).
+  * Fixed a problem with wrong conversion of obtained ISDS error statuses into
+readable text. This may have caused the programme to crash.
+  * Fixed scaling of some icon-based control elements when using enlarged fonts
+on Windows.
+  * Fixed message list sorting and filtering according to assigned tags.
+  * Displaying busy cursor when switching between entries in account list.
+  * New version notification can be blocked on Windows in runtime by setting
+specific registry values. It can also be blocked at compile time
+by using a configuration option when running qmake.
+  * Extended resource information for the generated Windows executable.
+  * Fixed project file include paths in order not to interfere with 
user-defined
+compiler flags.
+  * Fixed problem with unpredictable construction order of global object
+instances.
+  * Added missing conversion strings to some unknown message types.
+  * Fixed issue causing the application to crash on macOS when switching
+between accounts and when having some text in the message filter field.
+  * Fixed issue causing the application to crash on macOS when updating
+information about messages without a valid delivery time.
+  * Re-enabled logging of transferred message on Windows data when setting
+debug verbosity to 3.
+  * Code shared with mobile application has been placed into separate
+directory.
+- Rebase patch datovka-fix-pro.patch
+
+---

Old:

  datovka-4.10.1.tar.xz
  datovka-4.10.1.tar.xz.sha256

New:

  datovka-4.10.3.tar.xz
  datovka-4.10.3.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.A9srHA/_old  2018-08-27 13:48:49.628506702 +0200
+++ /var/tmp/diff_new_pack.A9srHA/_new  2018-08-27 13:48:49.632506708 +0200
@@ -17,12 +17,12 @@
 
 
 Name:   datovka
-Version:4.10.1
+Version:4.10.3
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0+
 Group:  Development/Libraries/Python
-Url:https://labs.nic.cz/cs/nova-datovka.html
+Url:https://www.datovka.cz
 Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz
 Source1:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz.sha256
 # PATCH-FIX-UPSTREAM: remove some issues with current .pro file
@@ -36,7 +36,7 @@
 BuildRequires:  pkgconfig(Qt5Sql) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Svg) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
-BuildRequires:  pkgconfig(libisds)
+BuildRequires:  pkgconfig(libisds) >= 0.10.8
 Requires:   libqt5_sql_backend
 %if 0%{?suse_version} < 1330
 Requires(post): hicolor-icon-theme

++ datovka-4.10.1.tar.xz -> datovka-4.10.3.tar.xz ++
 83994 lines of diff (skipped)

++ datovka-4.10.1.tar.xz.sha256 -> datovka-4.10.3.tar.xz.sha256 ++
--- 

commit datovka for openSUSE:Factory

2018-01-19 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2018-01-19 11:53:48

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Fri Jan 19 11:53:48 2018 rev:26 rq:566985 version:4.10.1

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2017-12-02 
13:12:02.943360088 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2018-01-19 
11:54:10.196932818 +0100
@@ -1,0 +2,8 @@
+Wed Jan 17 18:09:12 UTC 2018 - tchva...@suse.com
+
+- Update to 4.10.1:
+  * Few small fixes
+  * MSI installer tweaks
+- Refresh patch datovka-fix-pro.patch
+
+---

Old:

  datovka-4.10.0.tar.xz
  datovka-4.10.0.tar.xz.sha256

New:

  datovka-4.10.1.tar.xz
  datovka-4.10.1.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.IGN4S1/_old  2018-01-19 11:54:11.272882112 +0100
+++ /var/tmp/diff_new_pack.IGN4S1/_new  2018-01-19 11:54:11.276881924 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.10.0
+Version:4.10.1
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0+

++ datovka-4.10.0.tar.xz -> datovka-4.10.1.tar.xz ++
 6011 lines of diff (skipped)

++ datovka-4.10.0.tar.xz.sha256 -> datovka-4.10.1.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.10.0.tar.xz.sha256 
2017-12-02 13:12:02.919360962 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka-4.10.1.tar.xz.sha256
2018-01-19 11:54:07.217073249 +0100
@@ -1 +1 @@
-14441e1cc2feffc0fbeda8408aef4f784b1bc937ad3e044b136fc4395c6bc5bd
+66b5800783b65e746715fedb375462c714e4c54e36152371b9ab65a70cdc0d4f

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.IGN4S1/_old  2018-01-19 11:54:11.804857042 +0100
+++ /var/tmp/diff_new_pack.IGN4S1/_new  2018-01-19 11:54:11.804857042 +0100
@@ -2,17 +2,19 @@
  datovka.pro |   26 --
  1 file changed, 8 insertions(+), 18 deletions(-)
 
 a/datovka.pro
-+++ b/datovka.pro
-@@ -31,7 +31,6 @@ win32 {
- sufficientQtVersion(5, 3, 3, 2)
+Index: datovka-4.10.1/datovka.pro
+===
+--- datovka-4.10.1.orig/datovka.pro
 datovka-4.10.1/datovka.pro
+@@ -32,7 +32,6 @@ win32 {
+ sufficientQtVersion(5, 3, 4, 1)
  
  DEFINES += \
 -  DEBUG=1 \
VERSION=\\\"$${VERSION}\\\"
  
  unix:!macx {
-@@ -82,11 +81,6 @@ unix:!macx {
+@@ -83,11 +82,6 @@ unix:!macx {
localisation.files += locale/datovka_cs.qm \
locale/datovka_en.qm
  
@@ -24,7 +26,7 @@
DEFINES += DATADIR=\\\"$$DATADIR\\\" \
PKGDATADIR=\\\"$$PKGDATADIR\\\" \
LOCALE_INST_DIR="\"\\\"$${LOCALE_INST_DIR}\\\"\"" \
-@@ -104,17 +98,20 @@ unix:!macx {
+@@ -105,17 +99,20 @@ unix:!macx {
icon64 \
icon128 \
icon256 \
@@ -49,7 +51,7 @@
  INCLUDEPATH += \
src
  
-@@ -193,15 +190,8 @@ macx {
+@@ -194,15 +191,8 @@ macx {
locale/datovka_en.qm
localisation.files += locale/qtbase_cs.qm
  




commit datovka for openSUSE:Factory

2017-12-02 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2017-12-02 13:12:01

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Sat Dec  2 13:12:01 2017 rev:25 rq:547022 version:4.10.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2017-10-24 
22:22:54.345738141 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2017-12-02 
13:12:02.943360088 +0100
@@ -1,0 +2,7 @@
+Fri Dec  1 10:20:26 UTC 2017 - tchva...@suse.com
+
+- Version update to 4.10.0:
+  * Can now encrypt passwords via master password
+  * Better support for screen readers
+
+---

Old:

  datovka-4.9.3.tar.xz
  datovka-4.9.3.tar.xz.sha256

New:

  datovka-4.10.0.tar.xz
  datovka-4.10.0.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.Rtae5Z/_old  2017-12-02 13:12:03.539338381 +0100
+++ /var/tmp/diff_new_pack.Rtae5Z/_new  2017-12-02 13:12:03.543338236 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.9.3
+Version:4.10.0
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0+

++ datovka-4.9.3.tar.xz -> datovka-4.10.0.tar.xz ++
 41823 lines of diff (skipped)

++ datovka-4.9.3.tar.xz.sha256 -> datovka-4.10.0.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.9.3.tar.xz.sha256  
2017-10-24 22:22:54.293740571 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka-4.10.0.tar.xz.sha256
2017-12-02 13:12:02.919360962 +0100
@@ -1 +1 @@
-ee8b026a271af6bb653296646bd7f6cc4910f154a56acbbafd64cbeba09c71dc
+14441e1cc2feffc0fbeda8408aef4f784b1bc937ad3e044b136fc4395c6bc5bd




commit datovka for openSUSE:Factory

2017-10-24 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2017-10-24 22:22:36

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Tue Oct 24 22:22:36 2017 rev:24 rq:535955 version:4.9.3

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2017-07-21 
22:49:27.972161642 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2017-10-24 
22:22:54.345738141 +0200
@@ -1,0 +2,41 @@
+Sun Oct 22 13:23:32 UTC 2017 - jsl...@suse.com
+
+- Update Version update to 4.9.3
+  * Fixed a problem when message list was not updated after account
+synchronisation when a message was selected.
+  * Fixed a bug when database location may have been saved even though the
+databases reside in default location. This problem was visible especially
+on Windows.
+
+- Update Version update to 4.9.2
+  * Changed tag dialogue to contain two views when editing tag assignment.
+  * Using the prefix 'ODZ_' for sent and 'DDZ_' for received data messages
+when uploading them into records management service.
+  * Default documentation location can be changed when running qmake using the
+TEXT_FILES_INST_DIR variable.
+  * Full-text data-box search does not block the search dialogue.
+  * Full-text data-box search can be interrupted and restarted again without
+closing the dialogue.
+  * Separated core and GUI code. Removed models from database interface.
+  * Added new CLI option '--get-msg-ids'.
+  * Command-line application without GUI can be built separately. This
+executable is going to be distributed in Windows packages together with
+the GUI application.
+
+- Update Version update to 4.9.1
+  * Added experimental support for new data-box and user types that are going
+to be introduced into the ISDS production environment and which are
+already present in the ISDS testing environment.
+Version 0.10.7 of libisds is required to build the application.
+  * Updated building scripts for the Windows application to automatically pull
+Qt dependencies into the package.
+  * Fixed issue when records management data have not been erased from message
+model after the service has been deactivated.
+  * Fixed issues with records management logo not being displayed in message
+list immediately after the service has been set up.
+  * Alphabetically sorting nodes of records management hierarchy.
+  * Sub-nodes of matching element are also displayed when filtering hierarchy
+of records management service.
+  * Removed inactive mojeid-datovka code from the sources.
+
+---

Old:

  datovka-4.9.0.tar.xz
  datovka-4.9.0.tar.xz.sha256

New:

  datovka-4.9.3.tar.xz
  datovka-4.9.3.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.eDjrl7/_old  2017-10-24 22:22:54.981708412 +0200
+++ /var/tmp/diff_new_pack.eDjrl7/_new  2017-10-24 22:22:54.985708225 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.9.0
+Version:4.9.3
 Release:0
 Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0+
@@ -38,10 +38,12 @@
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
 BuildRequires:  pkgconfig(libisds)
 Requires:   libqt5_sql_backend
+%if 0%{?suse_version} < 1330
 Requires(post): hicolor-icon-theme
 Requires(post): update-desktop-files
 Requires(postun): hicolor-icon-theme
 Requires(postun): update-desktop-files
+%endif
 Recommends: %{name}-lang
 # Included inside with different approach
 Obsoletes:  python-dslib
@@ -56,7 +58,7 @@
 
 %prep
 %setup -q
-%patch0
+%patch0 -p1
 sed -i \
 -e 's:lrelease:lrelease-qt5:g' \
 %{name}.pro
@@ -77,6 +79,7 @@
 %{buildroot}%{_datadir}/applications/datovka.desktop
 rm -rf %{buildroot}%{_datadir}/datovka/doc
 
+%if 0%{?suse_version} < 1330
 %post
 %desktop_database_post
 %icon_theme_cache_post
@@ -84,6 +87,7 @@
 %postun
 %desktop_database_postun
 %icon_theme_cache_postun
+%endif
 
 %files
 %defattr(-,root,root)

++ datovka-4.9.0.tar.xz -> datovka-4.9.3.tar.xz ++
 41766 lines of diff (skipped)

++ datovka-4.9.0.tar.xz.sha256 -> datovka-4.9.3.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.9.0.tar.xz.sha256  
2017-07-21 22:49:26.272401414 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka-4.9.3.tar.xz.sha256 
2017-10-24 22:22:54.293740571 +0200
@@ -1 +1 @@
-bdc580feeec68de9af545d88dc2f395222abc8134280bd084fd25e2f813320e9
+ee8b026a271af6bb653296646bd7f6cc4910f154a56acbbafd64cbeba09c71dc

++ datovka-fix-pro.patch ++
--- 

commit datovka for openSUSE:Factory

2017-07-21 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2017-07-21 22:49:22

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Fri Jul 21 22:49:22 2017 rev:23 rq:511418 version:4.9.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2017-05-24 
16:51:10.823686816 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2017-07-21 
22:49:27.972161642 +0200
@@ -1,0 +2,28 @@
+Wed Jul 19 12:32:51 UTC 2017 - jeng...@inai.de
+
+- Remove odd backslashes from description.
+
+---
+Wed Jul 19 11:21:13 UTC 2017 - jsl...@suse.com
+
+- Version update to 4.9.0:
+  * Added API and support for sending messages into records management
+services.
+  * Removed explicit clear buttons from filter fields.
+  * Fixed problems with remembering location of saved attachment files.
+  * Directory structure can be created when exporting correspondence overview.
+  * Line height of account list and message table has been adjusted to be the
+same.
+  * Fixed confusion between the terms of delivery (dodani) and acceptance
+(doruceni) in Czech localisation.
+  * Process of exporting multiple selected messages can be aborted by clicking
+Cancel button.
+  * Tags can be stored into HTML correspondence overview.
+  * HTML correspondence overview now contains both delivery and acceptance
+times.
+  * Fixed problems with sending messages from accounts that cannot search for
+data boxes.
+  * Fixed tag ordering. Tag sorting is now locale-aware. 
+- disable -Wdate-time -- unrecognized e.g. with gcc 4.8
+
+---

Old:

  datovka-4.8.1.tar.xz
  datovka-4.8.1.tar.xz.sha256

New:

  datovka-4.9.0.tar.xz
  datovka-4.9.0.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.kFw0b5/_old  2017-07-21 22:49:29.147995776 +0200
+++ /var/tmp/diff_new_pack.kFw0b5/_new  2017-07-21 22:49:29.155994647 +0200
@@ -17,9 +17,9 @@
 
 
 Name:   datovka
-Version:4.8.1
+Version:4.9.0
 Release:0
-Summary:Library to access Czech eGov system \"Datove schranky\"
+Summary:Library to access Czech eGov system "Datove schranky"
 License:GPL-3.0+
 Group:  Development/Libraries/Python
 Url:https://labs.nic.cz/cs/nova-datovka.html
@@ -34,6 +34,7 @@
 BuildRequires:  pkgconfig(Qt5Network) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5PrintSupport) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Sql) >= 5.2.0
+BuildRequires:  pkgconfig(Qt5Svg) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
 BuildRequires:  pkgconfig(libisds)
 Requires:   libqt5_sql_backend

++ datovka-4.8.1.tar.xz -> datovka-4.9.0.tar.xz ++
 25256 lines of diff (skipped)

++ datovka-4.8.1.tar.xz.sha256 -> datovka-4.9.0.tar.xz.sha256 ++
--- /work/SRC/openSUSE:Factory/datovka/datovka-4.8.1.tar.xz.sha256  
2017-05-24 16:51:09.635854023 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka-4.9.0.tar.xz.sha256 
2017-07-21 22:49:26.272401414 +0200
@@ -1 +1 @@
-da2bb1b6c23b566639e5fb51d3aa3c39017b773fbd13e4e85b6478ab53f3aac6
+bdc580feeec68de9af545d88dc2f395222abc8134280bd084fd25e2f813320e9

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.kFw0b5/_old  2017-07-21 22:49:29.735912843 +0200
+++ /var/tmp/diff_new_pack.kFw0b5/_new  2017-07-21 22:49:29.735912843 +0200
@@ -23,7 +23,7 @@
DEFINES += DATADIR=\\\"$$DATADIR\\\" \
PKGDATADIR=\\\"$$PKGDATADIR\\\" \
LOCALE_INST_DIR="\"\\\"$${LOCALE_INST_DIR}\\\"\"" \
-@@ -133,16 +126,19 @@ unix:!macx {
+@@ -133,17 +126,20 @@ unix:!macx {
icon64 \
icon128 \
icon256 \
@@ -37,6 +37,8 @@
 -  -g -O0 -std=c++11 \
 +  -g -std=c++11 $$(CXXFLAGS) \
-Wall -Wextra -pedantic \
+-  -Wdate-time -Wformat -Werror=format-security \
++  -Wformat -Werror=format-security \
-Isrc/views
  
 +QMAKE_CFLAGS += \




commit datovka for openSUSE:Factory

2017-05-24 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2017-05-24 16:50:29

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Wed May 24 16:50:29 2017 rev:22 rq:497425 version:4.8.1

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2017-03-31 
15:10:30.727692727 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2017-05-24 
16:51:10.823686816 +0200
@@ -1,0 +2,7 @@
+Tue May 23 07:31:09 UTC 2017 - jsl...@suse.com
+
+- Version update to 4.8.1:
+  * Fixed problem with disappearing splitters on application start.
+- add checksum to sources, so that OBS can check consistency
+
+---

Old:

  datovka-4.8.0.tar.xz

New:

  datovka-4.8.1.tar.xz
  datovka-4.8.1.tar.xz.sha256



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.5pAKqu/_old  2017-05-24 16:51:11.771553387 +0200
+++ /var/tmp/diff_new_pack.5pAKqu/_new  2017-05-24 16:51:11.775552824 +0200
@@ -17,13 +17,14 @@
 
 
 Name:   datovka
-Version:4.8.0
+Version:4.8.1
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:GPL-3.0+
 Group:  Development/Libraries/Python
 Url:https://labs.nic.cz/cs/nova-datovka.html
 Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz
+Source1:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz.sha256
 # PATCH-FIX-UPSTREAM: remove some issues with current .pro file
 Patch0: datovka-fix-pro.patch
 BuildRequires:  libqt5-linguist

++ datovka-4.8.0.tar.xz -> datovka-4.8.1.tar.xz ++
 2901 lines of diff (skipped)

++ datovka-4.8.1.tar.xz.sha256 ++
da2bb1b6c23b566639e5fb51d3aa3c39017b773fbd13e4e85b6478ab53f3aac6



commit datovka for openSUSE:Factory

2017-03-31 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2017-03-31 15:10:22

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Fri Mar 31 15:10:22 2017 rev:21 rq:483825 version:4.8.0

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2017-03-12 
20:03:58.745934437 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2017-03-31 
15:10:30.727692727 +0200
@@ -1,0 +2,17 @@
+Thu Mar 30 13:19:38 UTC 2017 - tchva...@suse.com
+
+- Version update to 4.8.0:
+  * Added full-text data box search which is now the default method to search
+for data boxes.
+  * Fixed problems with placing the main application window when starting the
+application on a smaller screen than it has been closed before.
+  * Refactoring of code related to message imports and exports.
+  * Reduced the amount of code in main application window.
+
+---
+Tue Mar 28 10:36:31 UTC 2017 - tchva...@suse.com
+
+- Drop dejavu dependency as it is now using fontconfig and not hardcoded
+  paths in the code
+
+---

Old:

  datovka-4.7.1.tar.xz

New:

  datovka-4.8.0.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.vqlg14/_old  2017-03-31 15:10:31.447590946 +0200
+++ /var/tmp/diff_new_pack.vqlg14/_new  2017-03-31 15:10:31.451590381 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.7.1
+Version:4.8.0
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:GPL-3.0+
@@ -35,7 +35,6 @@
 BuildRequires:  pkgconfig(Qt5Sql) >= 5.2.0
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.2.0
 BuildRequires:  pkgconfig(libisds)
-Requires:   dejavu
 Requires:   libqt5_sql_backend
 Requires(post): hicolor-icon-theme
 Requires(post): update-desktop-files

++ datovka-4.7.1.tar.xz -> datovka-4.8.0.tar.xz ++
 25010 lines of diff (skipped)




commit datovka for openSUSE:Factory

2017-03-12 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2017-03-12 20:03:57

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Sun Mar 12 20:03:57 2017 rev:20 rq:477755 version:4.7.1

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2017-02-21 
13:49:45.721321943 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2017-03-12 
20:03:58.745934437 +0100
@@ -1,0 +2,5 @@
+Wed Mar  8 13:19:45 UTC 2017 - tchva...@suse.com
+
+- Fix license to be GPL-3.0+ as per COPYING file
+
+---



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.en8FSw/_old  2017-03-12 20:04:00.113740890 +0100
+++ /var/tmp/diff_new_pack.en8FSw/_new  2017-03-12 20:04:00.117740324 +0100
@@ -20,7 +20,7 @@
 Version:4.7.1
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
-License:LGPL-2.0+
+License:GPL-3.0+
 Group:  Development/Libraries/Python
 Url:https://labs.nic.cz/cs/nova-datovka.html
 Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz




commit datovka for openSUSE:Factory

2017-02-21 Thread root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2017-02-21 13:49:33

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2016-10-20 
23:10:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2017-02-21 
13:49:45.721321943 +0100
@@ -1,0 +2,18 @@
+Thu Feb 16 16:17:11 UTC 2017 - mplus...@suse.com
+
+- Use qmake macros
+
+---
+Wed Feb 15 10:10:37 UTC 2017 - jsl...@suse.com
+
+- Version update to 4.7.1:
+ * User is notified about existent files when storing all attachments.
+ * Added forward message action.
+ * Fixed problem in which the main window was placed slightly off-screen when
+   run for the first time.
+ * When composing messages, attachment files can be rearranged using drag and
+   drop actions.
+ * Fixed bug. Message model is updated after tags have been edited.
+ * Fixes errors in application localisation.
+
+---

Old:

  datovka-4.7.0.tar.xz

New:

  datovka-4.7.1.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.RvaaqK/_old  2017-02-21 13:49:46.245248207 +0100
+++ /var/tmp/diff_new_pack.RvaaqK/_new  2017-02-21 13:49:46.245248207 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.7.0
+Version:4.7.1
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+
@@ -65,10 +65,10 @@
 export CXXFLAGS="%{optflags}"
 lrelease-qt5 datovka.pro
 %qmake5 PREFIX=%{_prefix} DISABLE_VERSION_CHECK_BY_DEFAULT=1
-make %{?_smp_mflags}
+%make_jobs
 
 %install
-make install INSTALL_ROOT=%{buildroot}
+%qmake5_install
 
 # fix desktop file
 sed -i \

++ datovka-4.7.0.tar.xz -> datovka-4.7.1.tar.xz ++
 33029 lines of diff (skipped)




commit datovka for openSUSE:Factory

2016-10-20 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2016-10-20 23:09:52

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2016-10-10 
16:25:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2016-10-20 
23:10:17.0 +0200
@@ -1,0 +2,7 @@
+Wed Oct 19 20:43:02 UTC 2016 - tchva...@suse.com
+
+- Version update to 4.7.0:
+  * openssl 1.1.0 support
+  * Various small fixes
+
+---

Old:

  datovka-4.6.1-src.tar.xz

New:

  datovka-4.7.0.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.igHoiv/_old  2016-10-20 23:10:18.0 +0200
+++ /var/tmp/diff_new_pack.igHoiv/_new  2016-10-20 23:10:18.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   datovka
-Version:4.6.1
+Version:4.7.0
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+
 Group:  Development/Libraries/Python
 Url:https://labs.nic.cz/cs/nova-datovka.html
-Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}-src.tar.xz
+Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM: remove some issues with current .pro file
 Patch0: datovka-fix-pro.patch
 BuildRequires:  libqt5-linguist

++ datovka-4.6.1-src.tar.xz -> datovka-4.7.0.tar.xz ++
 22246 lines of diff (skipped)




commit datovka for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2016-10-10 16:25:38

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2016-05-16 
12:04:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2016-10-10 
16:25:56.0 +0200
@@ -1,0 +2,13 @@
+Mon Oct 10 08:22:08 UTC 2016 - jsl...@suse.com
+
+- Version update to 4.6.1:
+  * Message envelope can be exported to a PDF file along with other message
+attachments.
+  * Fixed issue when the sending of a new message lasted too long. In such case
+the application could occasionally crash.
+  * Patched bundled libisds to fix wrong sender identification. This fix
+affects only Windows and OS X users. Linux users should update to latest
+libisds version (0.10.4).
+  * Fixed version string shown in notification dialogue.
+
+---

Old:

  datovka-4.6.0-src.tar.xz

New:

  datovka-4.6.1-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.S0dW9A/_old  2016-10-10 16:25:58.0 +0200
+++ /var/tmp/diff_new_pack.S0dW9A/_new  2016-10-10 16:25:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.6.0
+Version:4.6.1
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+

++ datovka-4.6.0-src.tar.xz -> datovka-4.6.1-src.tar.xz ++
 8431 lines of diff (skipped)




commit datovka for openSUSE:Factory

2016-05-16 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2016-05-16 12:04:05

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2016-04-05 
10:43:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2016-05-16 
12:04:07.0 +0200
@@ -1,0 +2,16 @@
+Sat May 14 12:18:01 UTC 2016 - tchva...@suse.com
+
+- Version update to 4.6.0:
+  * Added support for tags. These can be locally assigned to the messages.
+  * Message information are shown in separate window when double-clicking the
+message in message list or when hitting the Return/Enter key.
+  * When composing a message, the recipient can be added to the recipient list
+by double clicking it in the recently-used recipient list.
+  * Information about personal delivery are shown in message description field.
+  * Fixed problem where account entry has not been updated after message
+deletion.
+  * Fixed encoding issue when exporting correspondence overview in HTML.
+  * Fixed a bug causing the create message button not to activate when first
+account was created.
+
+---

Old:

  datovka-4.5.3-src.tar.xz

New:

  datovka-4.6.0-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.ZCLWJw/_old  2016-05-16 12:04:08.0 +0200
+++ /var/tmp/diff_new_pack.ZCLWJw/_new  2016-05-16 12:04:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.5.3
+Version:4.6.0
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+

++ datovka-4.5.3-src.tar.xz -> datovka-4.6.0-src.tar.xz ++
 17112 lines of diff (skipped)




commit datovka for openSUSE:Factory

2016-04-05 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2016-04-05 10:43:20

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2016-02-18 
12:36:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2016-04-05 
10:43:22.0 +0200
@@ -1,0 +2,39 @@
+Fri Apr  1 09:20:07 UTC 2016 - mplus...@suse.com
+
+- Update to 4.5.3
+  * Fixed problems with HOTP authorisation on Windows. There have 
+been problems with the bundled libisds. MinGW does not handle 
+POSIX extensions of printf formatting strings properly. Patch 
+for libisds has been added.
+  * Fixed a non-working PRAGMA statement when asking for a database 
+integrity check.
+  * The --version command-line argument now also prints the version 
+of libraries which Datovka depends on.
+  * Automatic background downloads didn't cause the deactivation of 
+download buttons that could still be triggered. Triggering those 
+buttons in this situation could cause the application to crash.
+  * Adding new account caused the account tree to collapse. This has 
+been fixed.
+- Changes for 4.5.2
+  * NLS of bundled libisds (OS X, Windows) has been disabled.
+  * The logging of libisds actions has been restricted on Windows 
+because there are discrepancies from standard-defined behaviour 
+of some functions on Windows.
+  * Improved behaviour when message download fails. The error 
+dialogue is only shown when an explicit message download fails. 
+  * A message in the notification area appears when the download 
+has been triggered by downloading message list. This should 
+reduce the amount of error dialogues generated.
+  * Improved behaviour when downloading messages on accounts with 
+restricted privileges. Received messages are not automatically 
+downloaded when the user has no privileges to do that.
+- Changes for 4.5.1
+  * Fixed bug in action logging causing the application to crash 
+occasionally.
+  * Fixed bug where message line was not deleted when deleting from 
+ISDS failed.
+  * New account model internals.
+- Build with optflags
+- Use macros for desktop file and icon handling
+
+---

Old:

  datovka-4.5.0-src.tar.xz

New:

  datovka-4.5.3-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.Tcv873/_old  2016-04-05 10:43:23.0 +0200
+++ /var/tmp/diff_new_pack.Tcv873/_new  2016-04-05 10:43:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package datovka
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.5.0
+Version:4.5.3
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+
@@ -37,6 +37,10 @@
 BuildRequires:  pkgconfig(libisds)
 Requires:   dejavu
 Requires:   libqt5_sql_backend
+Requires(post): hicolor-icon-theme
+Requires(post): update-desktop-files
+Requires(postun): hicolor-icon-theme
+Requires(postun): update-desktop-files
 Recommends: %{name}-lang
 # Included inside with different approach
 Obsoletes:  python-dslib
@@ -51,14 +55,15 @@
 
 %prep
 %setup -q
-%patch0 -p1
+%patch0
 sed -i \
 -e 's:lrelease:lrelease-qt5:g' \
 %{name}.pro
 
 %build
+export CFLAGS="%{optflags}"
+export CXXFLAGS="%{optflags}"
 lrelease-qt5 datovka.pro
-CFLAGS="%{optflags}" \
 %qmake5 PREFIX=%{_prefix} DISABLE_VERSION_CHECK_BY_DEFAULT=1
 make %{?_smp_mflags}
 
@@ -71,11 +76,20 @@
 %{buildroot}%{_datadir}/applications/datovka.desktop
 rm -rf %{buildroot}%{_datadir}/datovka/doc
 
+%post
+%desktop_database_post
+%icon_theme_cache_post
+
+%postun
+%desktop_database_postun
+%icon_theme_cache_postun
+
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING ChangeLog
 %{_bindir}/datovka
 %{_datadir}/applications/datovka.desktop
+%dir %{_datadir}/appdata
 %{_datadir}/appdata/datovka.appdata.xml
 %dir %{_datadir}/datovka
 %dir %{_datadir}/datovka/localisations/

++ datovka-4.5.0-src.tar.xz -> datovka-4.5.3-src.tar.xz ++
 20635 lines of diff (skipped)

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.Tcv873/_old  2016-04-05 10:43:24.0 +0200
+++ /var/tmp/diff_new_pack.Tcv873/_new  2016-04-05 10:43:24.0 +0200
@@ 

commit datovka for openSUSE:Factory

2016-02-18 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2016-02-18 11:07:08

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2016-01-05 
21:56:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2016-02-18 
12:36:31.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 16 18:29:42 UTC 2016 - tchva...@suse.com
+
+- Version update to 4.5.0:
+  * various backend updates
+  * various bugs fixed
+  * qt 5.3 required now
+- Rebase patch:
+  * datovka-fix-pro.patch
+
+---

Old:

  datovka-4.4.3-src.tar.xz

New:

  datovka-4.5.0-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.vi0TLO/_old  2016-02-18 12:36:32.0 +0100
+++ /var/tmp/diff_new_pack.vi0TLO/_new  2016-02-18 12:36:32.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.4.3
+Version:4.5.0
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+
@@ -57,6 +57,7 @@
 %{name}.pro
 
 %build
+lrelease-qt5 datovka.pro
 CFLAGS="%{optflags}" \
 %qmake5 PREFIX=%{_prefix} DISABLE_VERSION_CHECK_BY_DEFAULT=1
 make %{?_smp_mflags}

++ datovka-4.4.3-src.tar.xz -> datovka-4.5.0-src.tar.xz ++
 39304 lines of diff (skipped)

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.vi0TLO/_old  2016-02-18 12:36:32.0 +0100
+++ /var/tmp/diff_new_pack.vi0TLO/_new  2016-02-18 12:36:32.0 +0100
@@ -1,8 +1,8 @@
-Index: datovka-4.3.1/datovka.pro
+Index: datovka-4.5.0/datovka.pro
 ===
 datovka-4.3.1.orig/datovka.pro
-+++ datovka-4.3.1/datovka.pro
-@@ -49,7 +49,6 @@ isEqual(QT_MAJOR_VERSION, $${REQUIRED_MA
+--- datovka-4.5.0.orig/datovka.pro
 datovka-4.5.0/datovka.pro
+@@ -61,7 +61,6 @@ isEqual(QT_MAJOR_VERSION, $${REQUIRED_MA
  #LIBISDS_PREFIX = "$$HOME/third_party/built"
  
  DEFINES += \
@@ -10,7 +10,7 @@
VERSION=\\\"$${VERSION}\\\"
  
  unix:!macx {
-@@ -98,12 +97,6 @@ unix:!macx {
+@@ -110,12 +109,6 @@ unix:!macx {
localisation.files += locale/datovka_cs.qm \
locale/datovka_en.qm
  
@@ -23,21 +23,30 @@
DEFINES += DATADIR=\\\"$$DATADIR\\\" \
PKGDATADIR=\\\"$$PKGDATADIR\\\" \
LOCALE_INST_DIR="\"\\\"$${LOCALE_INST_DIR}\\\"\"" \
-@@ -126,8 +119,11 @@ unix:!macx {
+@@ -133,16 +126,19 @@ unix:!macx {
+   icon64 \
+   icon128 \
+   icon256 \
+-  localisation \
+-  additional
++  localisation
}
  }
  
--QMAKE_CXXFLAGS = \
+ QMAKE_CXXFLAGS = \
 -  -g -O0 -std=c++11 \
-+QMAKE_CXXFLAGS += \
 +  -g -std=c++11 $$(CXXFLAGS) \
-+  -Wall -Wextra -pedantic
+   -Wall -Wextra -pedantic \
+   -Isrc/views
+ 
 +QMAKE_CFLAGS += \
 +  -g $$(CFLAGS) \
-   -Wall -Wextra -pedantic
- 
++  -Wall -Wextra -pedantic
++
  INCLUDEPATH += \
-@@ -198,12 +194,6 @@ macx {
+   src
+ 
+@@ -211,15 +207,8 @@ macx {
locale/datovka_en.qm
localisation.files += locale/qtbase_cs.qm
  
@@ -48,5 +57,9 @@
 -  ChangeLog
 -
QMAKE_BUNDLE_DATA +=\
-   localisation \
-   additional
+-  localisation \
+-  additional
++  localisation
+ }
+ 
+ win32 {




commit datovka for openSUSE:Factory

2016-01-05 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2016-01-05 21:55:35

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-10-14 
16:45:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2016-01-05 
21:56:06.0 +0100
@@ -1,0 +2,7 @@
+Tue Jan  5 09:30:36 UTC 2016 - tchva...@suse.com
+
+- Version update to 4.4.3:
+  * Various bugfixes. See ChangeLog file
+  * Fixed broken expired password swap
+
+---

Old:

  datovka-4.4.0-src.tar.xz

New:

  datovka-4.4.3-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.YcTmLL/_old  2016-01-05 21:56:07.0 +0100
+++ /var/tmp/diff_new_pack.YcTmLL/_new  2016-01-05 21:56:07.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.4.0
+Version:4.4.3
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+

++ datovka-4.4.0-src.tar.xz -> datovka-4.4.3-src.tar.xz ++
 18326 lines of diff (skipped)




commit datovka for openSUSE:Factory

2015-10-14 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-10-14 16:45:12

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-09-08 
17:48:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-10-14 
16:45:13.0 +0200
@@ -1,0 +2,6 @@
+Mon Oct 12 12:31:58 UTC 2015 - tchva...@suse.com
+
+- Version update to 4.4.0:
+  * Various bugfixes all around. See ChangeLog file
+
+---

Old:

  datovka-4.3.1-src.tar.xz

New:

  datovka-4.4.0-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.EeAeUs/_old  2015-10-14 16:45:14.0 +0200
+++ /var/tmp/diff_new_pack.EeAeUs/_new  2015-10-14 16:45:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.3.1
+Version:4.4.0
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+

++ datovka-4.3.1-src.tar.xz -> datovka-4.4.0-src.tar.xz ++
 30899 lines of diff (skipped)




commit datovka for openSUSE:Factory

2015-09-08 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-09-08 17:43:09

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-06-04 
09:04:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-09-08 
17:48:46.0 +0200
@@ -1,0 +2,7 @@
+Sat Sep  5 07:11:33 UTC 2015 - tchva...@suse.com
+
+- Version bump 4.3.1:
+  * Few small bugfixes see ChangeLog for details
+- Refresh patch datovka-fix-pro.patch
+
+---

Old:

  datovka-4.3.0-src.tar.xz

New:

  datovka-4.3.1-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.NSF2lJ/_old  2015-09-08 17:48:48.0 +0200
+++ /var/tmp/diff_new_pack.NSF2lJ/_new  2015-09-08 17:48:48.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.3.0
+Version:4.3.1
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+
@@ -72,7 +72,7 @@
 
 %files
 %defattr(-,root,root)
-%doc AUTHORS COPYING
+%doc AUTHORS COPYING ChangeLog
 %{_bindir}/datovka
 %{_datadir}/applications/datovka.desktop
 %{_datadir}/appdata/datovka.appdata.xml

++ datovka-4.3.0-src.tar.xz -> datovka-4.3.1-src.tar.xz ++
 14699 lines of diff (skipped)

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.NSF2lJ/_old  2015-09-08 17:48:49.0 +0200
+++ /var/tmp/diff_new_pack.NSF2lJ/_new  2015-09-08 17:48:49.0 +0200
@@ -1,7 +1,7 @@
-Index: datovka-4.1.2/datovka.pro
+Index: datovka-4.3.1/datovka.pro
 ===
 datovka-4.1.2.orig/datovka.pro
-+++ datovka-4.1.2/datovka.pro
+--- datovka-4.3.1.orig/datovka.pro
 datovka-4.3.1/datovka.pro
 @@ -49,7 +49,6 @@ isEqual(QT_MAJOR_VERSION, $${REQUIRED_MA
  #LIBISDS_PREFIX = "$$HOME/third_party/built"
  
@@ -10,7 +10,7 @@
VERSION=\\\"$${VERSION}\\\"
  
  unix:!macx {
-@@ -101,12 +100,6 @@ unix:!macx {
+@@ -98,12 +97,6 @@ unix:!macx {
localisation.files += locale/datovka_cs.qm \
locale/datovka_en.qm
  
@@ -23,7 +23,7 @@
DEFINES += DATADIR=\\\"$$DATADIR\\\" \
PKGDATADIR=\\\"$$PKGDATADIR\\\" \
LOCALE_INST_DIR="\"\\\"$${LOCALE_INST_DIR}\\\"\"" \
-@@ -129,8 +122,11 @@ unix:!macx {
+@@ -126,8 +119,11 @@ unix:!macx {
}
  }
  
@@ -37,14 +37,15 @@
-Wall -Wextra -pedantic
  
  INCLUDEPATH += \
-@@ -196,11 +192,6 @@ macx {
+@@ -198,12 +194,6 @@ macx {
locale/datovka_en.qm
localisation.files += locale/qtbase_cs.qm
  
 -  additional.path = "Contents/Resources"
 -  additional.files = \
 -  AUTHORS \
--  COPYING
+-  COPYING \
+-  ChangeLog
 -
QMAKE_BUNDLE_DATA +=\
localisation \




commit datovka for openSUSE:Factory

2015-06-04 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-06-04 09:04:49

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-04-07 
09:29:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-06-04 
09:04:50.0 +0200
@@ -1,0 +2,6 @@
+Wed Jun  3 10:11:36 UTC 2015 - tchva...@suse.com
+
+- Version bump to 4.3.0:
+  * No obvious changelog apart from mentioning bugfixes
+
+---

Old:

  datovka-4.2.0-src.tar.xz

New:

  datovka-4.3.0-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.R88MX5/_old  2015-06-04 09:04:51.0 +0200
+++ /var/tmp/diff_new_pack.R88MX5/_new  2015-06-04 09:04:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.2.0
+Version:4.3.0
 Release:0
 Summary:Library to access Czech eGov system \Datove schranky\
 License:LGPL-2.0+

++ datovka-4.2.0-src.tar.xz - datovka-4.3.0-src.tar.xz ++
 18452 lines of diff (skipped)




commit datovka for openSUSE:Factory

2015-04-07 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-04-07 09:29:21

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-02-25 
02:18:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-04-07 
09:29:22.0 +0200
@@ -1,0 +2,9 @@
+Tue Mar 31 17:02:09 UTC 2015 - tchva...@suse.com
+
+- Version bump to 4.2.0:
+  * Various bugfixes
+  * Resending messages/etc
+- Obsoleted patch:
+  * 0001-no-check-new-versions.patch
+
+---

Old:

  0001-no-check-new-versions.patch
  datovka-4.1.2-src.tar.xz

New:

  datovka-4.2.0-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.b4wpRf/_old  2015-04-07 09:29:23.0 +0200
+++ /var/tmp/diff_new_pack.b4wpRf/_new  2015-04-07 09:29:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.1.2
+Version:4.2.0
 Release:0
 Summary:Library to access Czech eGov system \Datove schranky\
 License:LGPL-2.0+
@@ -26,8 +26,6 @@
 Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}-src.tar.xz
 # PATCH-FIX-UPSTREAM: remove some issues with current .pro file
 Patch0: datovka-fix-pro.patch
-# PATCH-FIX-SUSE: do not check for newer versions in app (taken from Fedora)
-Patch1: 0001-no-check-new-versions.patch
 BuildRequires:  libqt5-linguist
 BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -54,14 +52,13 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 sed -i \
 -e 's:lrelease:lrelease-qt5:g' \
 %{name}.pro
 
 %build
 CFLAGS=%{optflags} \
-%qmake5 PREFIX=%{_prefix}
+%qmake5 PREFIX=%{_prefix} DISABLE_VERSION_CHECK_BY_DEFAULT=1
 make %{?_smp_mflags}
 
 %install

++ datovka-4.1.2-src.tar.xz - datovka-4.2.0-src.tar.xz ++
 26721 lines of diff (skipped)




commit datovka for openSUSE:Factory

2015-02-24 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-02-25 02:17:55

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2015-02-13 
08:35:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-02-25 
02:18:24.0 +0100
@@ -1,0 +2,10 @@
+Tue Feb 24 12:44:21 UTC 2015 - tchva...@suse.com
+
+- Version bump to 4.1.2:
+  * Various bugfixes
+- Add patch to not ask about new version availabilty:
+  * 0001-no-check-new-versions.patch
+- Refreshed patch:
+  * datovka-fix-pro.patch
+
+---

Old:

  datovka-4.1.0-src.tar.xz

New:

  0001-no-check-new-versions.patch
  datovka-4.1.2-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.hSmPnQ/_old  2015-02-25 02:18:25.0 +0100
+++ /var/tmp/diff_new_pack.hSmPnQ/_new  2015-02-25 02:18:25.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.1.0
+Version:4.1.2
 Release:0
 Summary:Library to access Czech eGov system \Datove schranky\
 License:LGPL-2.0+
@@ -26,6 +26,8 @@
 Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}-src.tar.xz
 # PATCH-FIX-UPSTREAM: remove some issues with current .pro file
 Patch0: datovka-fix-pro.patch
+# PATCH-FIX-SUSE: do not check for newer versions in app (taken from Fedora)
+Patch1: 0001-no-check-new-versions.patch
 BuildRequires:  libqt5-linguist
 BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
@@ -50,8 +52,9 @@
 %{?lang_package}
 
 %prep
-%setup -q -c %{name}
+%setup -q
 %patch0 -p1
+%patch1 -p1
 sed -i \
 -e 's:lrelease:lrelease-qt5:g' \
 %{name}.pro
@@ -66,7 +69,7 @@
 
 # fix desktop file
 sed -i \
--e 's:Office:Office;Network;Email;:g' \
+-e 's:Office;:Office;Network;Email;:g' \
 %{buildroot}%{_datadir}/applications/datovka.desktop
 rm -rf %{buildroot}%{_datadir}/datovka/doc
 
@@ -75,6 +78,7 @@
 %doc AUTHORS COPYING
 %{_bindir}/datovka
 %{_datadir}/applications/datovka.desktop
+%{_datadir}/appdata/datovka.appdata.xml
 %dir %{_datadir}/datovka
 %dir %{_datadir}/datovka/localisations/
 %{_datadir}/datovka/localisations/datovka_cs.qm

++ 0001-no-check-new-versions.patch ++
Do not check for a new version by default.

diff --git a/src/common.cpp b/src/common.cpp
index cbfabd3..9eb8eaf 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -74,7 +74,7 @@ GlobPreferences::GlobPreferences(void)
 store_additional_data_on_disk(true),
 certificate_validation_date(DOWNLOAD_DATE),
 check_crl(true),
-check_new_versions(true),
+check_new_versions(false),
 send_stats_with_version_checks(false),
 download_on_background(false),
 timer_value(10),
++ datovka-4.1.0-src.tar.xz - datovka-4.1.2-src.tar.xz ++
 110873 lines of diff (skipped)

++ datovka-fix-pro.patch ++
--- /var/tmp/diff_new_pack.hSmPnQ/_old  2015-02-25 02:18:25.0 +0100
+++ /var/tmp/diff_new_pack.hSmPnQ/_new  2015-02-25 02:18:25.0 +0100
@@ -1,7 +1,7 @@
-Index: datovka-4.1.0/datovka.pro
+Index: datovka-4.1.2/datovka.pro
 ===
 datovka-4.1.0.orig/datovka.pro
-+++ datovka-4.1.0/datovka.pro
+--- datovka-4.1.2.orig/datovka.pro
 datovka-4.1.2/datovka.pro
 @@ -49,7 +49,6 @@ isEqual(QT_MAJOR_VERSION, $${REQUIRED_MA
  #LIBISDS_PREFIX = $$HOME/third_party/built
  
@@ -10,7 +10,20 @@
VERSION=\\\$${VERSION}\\\
  
  unix:!macx {
-@@ -124,8 +123,11 @@ unix:!macx {
+@@ -101,12 +100,6 @@ unix:!macx {
+   localisation.files += locale/datovka_cs.qm \
+   locale/datovka_en.qm
+ 
+-  additional.path = $${TEXT_FILES_INST_DIR}
+-  additional.files = \
+-  AUTHORS \
+-  COPYING \
+-  README
+-
+   DEFINES += DATADIR=\\\$$DATADIR\\\ \
+   PKGDATADIR=\\\$$PKGDATADIR\\\ \
+   LOCALE_INST_DIR=$${LOCALE_INST_DIR} \
+@@ -129,8 +122,11 @@ unix:!macx {
}
  }
  
@@ -24,7 +37,7 @@
-Wall -Wextra -pedantic
  
  INCLUDEPATH += \
-@@ -188,11 +190,6 @@ macx {
+@@ -196,11 +192,6 @@ macx {
locale/datovka_en.qm
localisation.files += locale/qtbase_cs.qm
  

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



commit datovka for openSUSE:Factory

2015-02-12 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2015-02-13 08:35:29

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2014-10-01 
07:40:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2015-02-13 
08:35:30.0 +0100
@@ -1,0 +2,10 @@
+Mon Feb  2 13:50:12 UTC 2015 - tchva...@suse.com
+
+- Version bump to 4.1:
+  * Complete rewrite under qt5
+  * Should provide same usability, reffer to homepage for more info
+- Various cleanups
+- Add patch to fix building with respecting cflags/etc:
+  * datovka-fix-pro.patch
+
+---

Old:

  datovka-3.1.tar.gz

New:

  datovka-4.1.0-src.tar.xz
  datovka-fix-pro.patch



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.HtDtkI/_old  2015-02-13 08:35:31.0 +0100
+++ /var/tmp/diff_new_pack.HtDtkI/_new  2015-02-13 08:35:31.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package datovka
 #
-# Copyright (c) 2014 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,38 +16,31 @@
 #
 
 
-%if 0%{?suse_version}  0%{?suse_version} = 1110
-%{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
-%else
-BuildArch:  noarch
-%endif
 Name:   datovka
-Version:3.1
+Version:4.1.0
 Release:0
 Summary:Library to access Czech eGov system \Datove schranky\
 License:LGPL-2.0+
 Group:  Development/Libraries/Python
-Url:http://labs.nic.cz/page/969/datovka/
-Source0:
http://www.nic.cz/public_media/datove_schranky/releases/src/%{name}-%{version}.tar.gz
-BuildRequires:  dejavu
-BuildRequires:  fdupes
-BuildRequires:  python
-BuildRequires:  python-dslib = 3.1
-BuildRequires:  python-gtk
-BuildRequires:  python-openssl
-BuildRequires:  python-reportlab
-BuildRequires:  python-setuptools
-BuildRequires:  python-sqlalchemy
-BuildRequires:  update-desktop-files
+Url:https://labs.nic.cz/cs/nova-datovka.html
+Source0:
https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%{version}-src.tar.xz
+# PATCH-FIX-UPSTREAM: remove some issues with current .pro file
+Patch0: datovka-fix-pro.patch
+BuildRequires:  libqt5-linguist
+BuildRequires:  openssl-devel
+BuildRequires:  pkgconfig(Qt5Core) = 5.2.0
+BuildRequires:  pkgconfig(Qt5Gui) = 5.2.0
+BuildRequires:  pkgconfig(Qt5Network) = 5.2.0
+BuildRequires:  pkgconfig(Qt5PrintSupport) = 5.2.0
+BuildRequires:  pkgconfig(Qt5Sql) = 5.2.0
+BuildRequires:  pkgconfig(Qt5Widgets) = 5.2.0
+BuildRequires:  pkgconfig(libisds)
 Requires:   dejavu
-Requires:   python-dslib = 3.1
-Requires:   python-gtk
-Requires:   python-openssl
-Requires:   python-reportlab
-Requires:   python-setuptools
-Requires:   python-sqlalchemy
+Requires:   libqt5_sql_backend
+Recommends: %{name}-lang
+# Included inside with different approach
+Obsoletes:  python-dslib
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{py_requires}
 
 %description
 A library for accessing ISDS (Informační system datovych schranek/
@@ -57,41 +50,35 @@
 %{?lang_package}
 
 %prep
-%setup -q
-
+%setup -q -c %{name}
+%patch0 -p1
 sed -i \
-   -e 's:Office:Office;Network;Email;:' \
-   %{name}.desktop
+-e 's:lrelease:lrelease-qt5:g' \
+%{name}.pro
 
 %build
-python setup.py build
+CFLAGS=%{optflags} \
+%qmake5 PREFIX=%{_prefix}
+make %{?_smp_mflags}
 
 %install
-python setup.py install --prefix=%{_prefix} --optimize=2 --root=%{buildroot}
-%fdupes %{buildroot}
-%find_lang %{name}
-
-for file in %{buildroot}%{python_sitelib}/%{name}/{_update_license,datovka}.py 
; do
-   chmod a+x $file
-done
-chmod a-x %{buildroot}%{_datadir}/applications/%{name}.desktop
-%suse_update_desktop_file %{buildroot}%{_datadir}/applications/%{name}.desktop
-
-%post -p /sbin/ldconfig
+make install INSTALL_ROOT=%{buildroot}
 
-%postun -p /sbin/ldconfig
-
-%files lang -f %{name}.lang
-%defattr(-,root,root)
+# fix desktop file
+sed -i \
+-e 's:Office:Office;Network;Email;:g' \
+%{buildroot}%{_datadir}/applications/datovka.desktop
+rm -rf %{buildroot}%{_datadir}/datovka/doc
 
 %files
 %defattr(-,root,root)
-%doc LICENSE README.txt
-%dir %{_datadir}/%{name}
-%{python_sitelib}/*
-%{_bindir}/%{name}

commit datovka for openSUSE:Factory

2014-09-30 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2014-10-01 07:40:33

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2013-11-07 
12:51:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2014-10-01 
07:40:49.0 +0200
@@ -1,0 +2,8 @@
+Mon Sep 15 14:30:05 UTC 2014 - tchva...@suse.com
+
+- Version bump to 3.1:
+  * Detect better file suffixes
+  * work with sqlalchemy 0.9
+- Cleanup with spec-cleaner
+
+---

Old:

  datovka-3.0.3.tar.gz

New:

  datovka-3.1.tar.gz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.Q3KvZ7/_old  2014-10-01 07:40:51.0 +0200
+++ /var/tmp/diff_new_pack.Q3KvZ7/_new  2014-10-01 07:40:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package datovka
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products 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,18 +16,23 @@
 #
 
 
+%if 0%{?suse_version}  0%{?suse_version} = 1110
+%{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
+%else
+BuildArch:  noarch
+%endif
 Name:   datovka
-Version:3.0.3
+Version:3.1
 Release:0
 Summary:Library to access Czech eGov system \Datove schranky\
 License:LGPL-2.0+
 Group:  Development/Libraries/Python
 Url:http://labs.nic.cz/page/969/datovka/
-Source0:%{name}-%{version}.tar.gz
+Source0:
http://www.nic.cz/public_media/datove_schranky/releases/src/%{name}-%{version}.tar.gz
 BuildRequires:  dejavu
 BuildRequires:  fdupes
 BuildRequires:  python
-BuildRequires:  python-dslib = 3.0
+BuildRequires:  python-dslib = 3.1
 BuildRequires:  python-gtk
 BuildRequires:  python-openssl
 BuildRequires:  python-reportlab
@@ -35,19 +40,14 @@
 BuildRequires:  python-sqlalchemy
 BuildRequires:  update-desktop-files
 Requires:   dejavu
-Requires:   python-dslib = 3.0
+Requires:   python-dslib = 3.1
 Requires:   python-gtk
 Requires:   python-openssl
 Requires:   python-reportlab
 Requires:   python-setuptools
 Requires:   python-sqlalchemy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%py_requires
-%if 0%{?suse_version}  0%{?suse_version} = 1110
-%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
-%else
-BuildArch:  noarch
-%endif
+%{py_requires}
 
 %description
 A library for accessing ISDS (Informační system datovych schranek/
@@ -67,30 +67,31 @@
 python setup.py build
 
 %install
-python setup.py install --prefix=%{_prefix} --optimize=2 --root=%{buildroot}
+python setup.py install --prefix=%{_prefix} --optimize=2 --root=%{buildroot}
 %fdupes %{buildroot}
 %find_lang %{name}
 
-for file in %{buildroot}%{python_sitelib}/%name/{_update_license,datovka}.py ; 
do
+for file in %{buildroot}%{python_sitelib}/%{name}/{_update_license,datovka}.py 
; do
chmod a+x $file
 done
-chmod a-x %{buildroot}%_datadir/applications/%name.desktop
-%suse_update_desktop_file %{buildroot}%_datadir/applications/%name.desktop
+chmod a-x %{buildroot}%{_datadir}/applications/%{name}.desktop
+%suse_update_desktop_file %{buildroot}%{_datadir}/applications/%{name}.desktop
 
 %post -p /sbin/ldconfig
 
 %postun -p /sbin/ldconfig
 
 %files lang -f %{name}.lang
+%defattr(-,root,root)
 
 %files
 %defattr(-,root,root)
 %doc LICENSE README.txt
-%dir %_datadir/%name
+%dir %{_datadir}/%{name}
 %{python_sitelib}/*
-%_bindir/%name
-%_datadir/%name/*
-%_datadir/applications/%name.desktop
-%_datadir/icons/hicolor/*
+%{_bindir}/%{name}
+%{_datadir}/%{name}/*
+%{_datadir}/applications/%{name}.desktop
+%{_datadir}/icons/hicolor/*
 
 %changelog

++ datovka-3.0.3.tar.gz - datovka-3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/datovka-3.0.3/PKG-INFO new/datovka-3.1/PKG-INFO
--- old/datovka-3.0.3/PKG-INFO  2013-01-04 12:58:31.0 +0100
+++ new/datovka-3.1/PKG-INFO2014-07-11 15:42:06.0 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
 Name: datovka
-Version: 3.0.3
+Version: 3.1
 Summary: Datovka (formerly dsgui) is a free graphical interface for 'Datove 
schranky'
 Home-page: 

commit datovka for openSUSE:Factory

2013-11-07 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2013-11-07 12:51:31

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2013-07-16 
17:39:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2013-11-07 
12:51:32.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct 24 10:50:44 UTC 2013 - speili...@suse.com
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+---



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.bq71Hi/_old  2013-11-07 12:51:33.0 +0100
+++ /var/tmp/diff_new_pack.bq71Hi/_new  2013-11-07 12:51:33.0 +0100
@@ -27,19 +27,19 @@
 BuildRequires:  dejavu
 BuildRequires:  fdupes
 BuildRequires:  python
-BuildRequires:  python-distribute
 BuildRequires:  python-dslib = 3.0
 BuildRequires:  python-gtk
 BuildRequires:  python-openssl
 BuildRequires:  python-reportlab
+BuildRequires:  python-setuptools
 BuildRequires:  python-sqlalchemy
 BuildRequires:  update-desktop-files
 Requires:   dejavu
-Requires:   python-distribute
 Requires:   python-dslib = 3.0
 Requires:   python-gtk
 Requires:   python-openssl
 Requires:   python-reportlab
+Requires:   python-setuptools
 Requires:   python-sqlalchemy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %py_requires

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



commit datovka for openSUSE:Factory

2013-07-16 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2013-07-16 17:39:58

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2013-01-30 
11:14:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2013-07-16 
17:39:59.0 +0200
@@ -1,0 +2,5 @@
+Tue Jul 16 13:44:15 UTC 2013 - tchva...@suse.com
+
+- Format spec file was run and it was not changelogged.
+
+---



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.j4VdSt/_old  2013-07-16 17:39:59.0 +0200
+++ /var/tmp/diff_new_pack.j4VdSt/_new  2013-07-16 17:39:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package datovka
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products 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,15 +16,16 @@
 #
 
 
-
 Name:   datovka
 Version:3.0.3
 Release:0
-License:LGPL-2.0+
 Summary:Library to access Czech eGov system \Datove schranky\
-Url:http://labs.nic.cz/page/969/datovka/
+License:LGPL-2.0+
 Group:  Development/Libraries/Python
+Url:http://labs.nic.cz/page/969/datovka/
 Source0:%{name}-%{version}.tar.gz
+BuildRequires:  dejavu
+BuildRequires:  fdupes
 BuildRequires:  python
 BuildRequires:  python-distribute
 BuildRequires:  python-dslib = 3.0
@@ -32,15 +33,14 @@
 BuildRequires:  python-openssl
 BuildRequires:  python-reportlab
 BuildRequires:  python-sqlalchemy
-BuildRequires:  fdupes update-desktop-files
-BuildRequires:  dejavu
+BuildRequires:  update-desktop-files
 Requires:   dejavu
+Requires:   python-distribute
 Requires:   python-dslib = 3.0
 Requires:   python-gtk
-Requires:   python-distribute
+Requires:   python-openssl
 Requires:   python-reportlab
 Requires:   python-sqlalchemy
-Requires:   python-openssl
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %py_requires
 %if 0%{?suse_version}  0%{?suse_version} = 1110

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



commit datovka for openSUSE:Factory

2013-01-30 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2013-01-30 11:14:08

Comparing /work/SRC/openSUSE:Factory/datovka (Old)
 and  /work/SRC/openSUSE:Factory/.datovka.new (New)


Package is datovka, Maintainer is 

Changes:

New Changes file:

--- /dev/null   2013-01-09 19:40:42.352580873 +0100
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2013-01-30 
11:14:09.0 +0100
@@ -0,0 +1,69 @@
+---
+Fri Jan 25 20:26:33 UTC 2013 - tchva...@suse.com
+
+- Upstream moves the tarball all around, just not track it.
+
+---
+Wed Jan 23 15:14:51 UTC 2013 - tchva...@suse.com
+
+- Forgot to own datadir.
+
+---
+Wed Jan 23 14:20:44 UTC 2013 - tchva...@suse.com
+
+- Sort out desktop file for SLE.
+
+---
+Wed Jan 23 14:09:36 UTC 2013 - tchva...@suse.com
+
+- Fix various rpmlint warnings to make it happy. 
+
+---
+Wed Jan 23 13:02:10 UTC 2013 - tchva...@suse.com
+
+- Add build_root and python stuff to theoretically build on sle.
+
+---
+Wed Jan 23 10:56:08 UTC 2013 - tchva...@suse.com
+
+- Add more runtime deps to be on safe side here.
+
+---
+Mon Jan 21 11:11:02 UTC 2013 - tchva...@suse.com
+
+- Fix download url as upstream decided to move it.
+
+---
+Fri Jan 18 16:58:20 UTC 2013 - tchva...@suse.com
+
+- Add py_requires macro.
+
+---
+Mon Jan  7 11:54:38 UTC 2013 - tchva...@suse.com
+
+- Version bump to 3.0.3.
+
+---
+Thu Dec 20 14:11:11 UTC 2012 - tchva...@suse.com
+
+- Version bump to 3.0.2. Raise dslib dep. Remove dejavu hack.
+
+---
+Fri Nov 30 09:41:51 UTC 2012 - tchva...@suse.com
+
+- Version bump to 2.1.1. Raise dslib dep.
+
+---
+Thu Apr 26 11:02:15 UTC 2012 - tchva...@suse.com
+
+- Bump to version 2.0.2. Depend on newer python-dslib.
+
+---
+Wed Dec 07 12:31:20 UTC 2011 - tchva...@suse.com
+
+- Remove _service, clean phase, add some docs
+
+---
+Tue Dec 06 14:30:30 UTC 2011 - tchva...@suse.com
+
+- Initial commit of datovka.

New:

  datovka-3.0.3.tar.gz
  datovka.changes
  datovka.spec



Other differences:
--
++ datovka.spec ++
#
# spec file for package datovka
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An Open Source License is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:   datovka
Version:3.0.3
Release:0
License:LGPL-2.0+
Summary:Library to access Czech eGov system \Datove schranky\
Url:http://labs.nic.cz/page/969/datovka/
Group:  Development/Libraries/Python
Source0:%{name}-%{version}.tar.gz
BuildRequires:  python
BuildRequires:  python-distribute
BuildRequires:  python-dslib = 3.0
BuildRequires:  python-gtk
BuildRequires:  python-openssl
BuildRequires:  python-reportlab
BuildRequires:  python-sqlalchemy
BuildRequires:  fdupes update-desktop-files
BuildRequires:  dejavu
Requires:   dejavu
Requires:   python-dslib = 3.0
Requires:   python-gtk
Requires:   python-distribute
Requires:   python-reportlab
Requires:   python-sqlalchemy
Requires:   python-openssl
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%py_requires
%if 0%{?suse_version}  0%{?suse_version} = 1110
%{!?python_sitelib: %global python_sitelib %(%{__python} -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
%else
BuildArch:  noarch
%endif