Accepting request 1137651 from home:AndreasStieger:branches:network
datovka 4.23.3 OBS-URL: https://build.opensuse.org/request/show/1137651 OBS-URL: https://build.opensuse.org/package/show/network/datovka?expand=0&rev=60
This commit is contained in:
parent
89a19cf85f
commit
06f0285008
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dc8fbed22a2d4734156652daf2dd43c0828a180a27b0bda34682dded06e3bf67
|
||||
size 3190452
|
@ -1 +0,0 @@
|
||||
dc8fbed22a2d4734156652daf2dd43c0828a180a27b0bda34682dded06e3bf67
|
3
datovka-4.23.3.tar.xz
Normal file
3
datovka-4.23.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8026b44700d7ef5d54a3087cedc50778abce7635b41161802c8ead774f67c6c4
|
||||
size 3194368
|
1
datovka-4.23.3.tar.xz.sha256
Normal file
1
datovka-4.23.3.tar.xz.sha256
Normal file
@ -0,0 +1 @@
|
||||
8026b44700d7ef5d54a3087cedc50778abce7635b41161802c8ead774f67c6c4
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 8 22:08:01 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
|
||||
|
||||
- Update to 4.23.3:
|
||||
* Fixed drag&drop on attachment list in send message dialogue
|
||||
- 4.23.2:
|
||||
* Showing progress of attachment uploads and message sending in
|
||||
the send message dialogue
|
||||
* Fixed send message dialogue layout where the tab widget wasn't
|
||||
vertically expanding.
|
||||
* Fixed colours of some labels in the send message dialogue which
|
||||
have been illegible in dark mode.
|
||||
* Enabled sending of high-volume data messages
|
||||
- 4.23.1:
|
||||
* Fixed the CLI get-msg command when messages failed to download
|
||||
with freshly created databases.
|
||||
* Changed all references of the term 'account' in the UI into
|
||||
'data box'
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 4 11:09:21 UTC 2023 - Jiri Slaby <jslaby@suse.cz>
|
||||
|
||||
|
29
datovka.spec
29
datovka.spec
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package datovka
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -25,9 +25,8 @@
|
||||
%define qt_version_full 5.4.1
|
||||
%define lrelease lrelease-qt5
|
||||
%endif
|
||||
|
||||
Name: datovka
|
||||
Version: 4.23.0
|
||||
Version: 4.23.3
|
||||
Release: 0
|
||||
Summary: Library to access Czech eGov system "Datove schranky"
|
||||
License: GPL-3.0-or-later
|
||||
@ -37,11 +36,6 @@ Source0: https://secure.nic.cz/files/datove_schranky/%{version}/%{name}-%
|
||||
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
|
||||
%if 0%{qt_version} == 6
|
||||
BuildRequires: qt6-tools-linguist
|
||||
%else
|
||||
BuildRequires: libqt5-linguist
|
||||
%endif
|
||||
BuildRequires: openssl-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: cmake(Qt%{qt_version}Core) >= %{qt_version_full}
|
||||
@ -53,16 +47,21 @@ BuildRequires: cmake(Qt%{qt_version}Svg) >= %{qt_version_full}
|
||||
BuildRequires: cmake(Qt%{qt_version}WebSockets) >= %{qt_version_full}
|
||||
BuildRequires: cmake(Qt%{qt_version}Widgets) >= %{qt_version_full}
|
||||
BuildRequires: cmake(QuaZip-Qt%{qt_version})
|
||||
BuildRequires: pkgconfig(libdatovka) >= 0.1.2
|
||||
BuildRequires: pkgconfig(libdatovka) >= 0.6.0
|
||||
Recommends: %{name}-lang
|
||||
# Included inside with different approach
|
||||
Obsoletes: python-dslib
|
||||
%if 0%{qt_version} == 6
|
||||
BuildRequires: qt6-tools-linguist
|
||||
%else
|
||||
BuildRequires: libqt5-linguist
|
||||
%endif
|
||||
%if 0%{qt_version} == 6
|
||||
BuildRequires: cmake(Qt6Core5Compat) >= %{qt_version_full}
|
||||
Requires: qt6-sql-sqlite
|
||||
%else
|
||||
Requires: libqt5-sql-sqlite
|
||||
%endif
|
||||
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
|
||||
@ -88,8 +87,8 @@ export CFLAGS="%{optflags}"
|
||||
export CXXFLAGS="%{optflags}"
|
||||
%{lrelease} datovka.pro
|
||||
%if 0%{qt_version} == 6
|
||||
%qmake6 PREFIX=%{_prefix} DISABLE_VERSION_CHECK_BY_DEFAULT=1
|
||||
%qmake6_build
|
||||
%{qmake6} PREFIX=%{_prefix} DISABLE_VERSION_CHECK_BY_DEFAULT=1
|
||||
%{qmake6_build}
|
||||
%else
|
||||
%qmake5 PREFIX=%{_prefix} DISABLE_VERSION_CHECK_BY_DEFAULT=1
|
||||
%make_jobs
|
||||
@ -97,7 +96,7 @@ export CXXFLAGS="%{optflags}"
|
||||
|
||||
%install
|
||||
%if 0%{qt_version} == 6
|
||||
%qmake6_install
|
||||
%{qmake6_install}
|
||||
%else
|
||||
%qmake5_install
|
||||
%endif
|
||||
|
Loading…
Reference in New Issue
Block a user