Accepting request 1144105 from home:jubalh:branches:network
- Update to 1.5.6: * Behaviour change: sendIq() automatically parses stanza errors (returned as QXmppError) * CMake: "QXmpp" legacy cmake package is now only installed for Qt 5 builds * Fix unit tests with Qt 6! * EncryptedFileSharingProvider: Fix wrong cipher set in sent file share element * Fix SCE parsing mode when parsing encrypted messages * Fix file encryption with QCA issues * Fix picking by strength of hashing algorithms * Fix github ci * Add unit tests for all file encryption ciphers - Update to 1.5.5: * Fix dependencies in generated pkg-config files * Fix compilation with android/clang - Update to 1.5.4: * OMEMO fixes * Fix use-after-move in EntityTimeManager * EME: Always send encryption name text * Fix interpretation of empty to/from address in the client * MSVC related build fixes * Support installing QXmpp with Qt 5 and Qt 6 in parallel * Support building QXmppOmemo statically OBS-URL: https://build.opensuse.org/request/show/1144105 OBS-URL: https://build.opensuse.org/package/show/network/libqxmpp?expand=0&rev=38
This commit is contained in:
parent
518b2de33a
commit
39f5ad7c40
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:43ef503adcea8ef1a7eb0ce3af408eb693f66875550aaca9fd8309119e1afec8
|
|
||||||
size 603009
|
|
3
libqxmpp-1.5.6.tar.gz
Normal file
3
libqxmpp-1.5.6.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:5af37cfbe878284e12babf4cd5f07109198e7e3dd3f1f78dc3eef351b6614a48
|
||||||
|
size 607830
|
@ -1,3 +1,36 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 5 06:37:13 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.5.6:
|
||||||
|
* Behaviour change: sendIq() automatically parses stanza errors (returned as QXmppError)
|
||||||
|
* CMake: "QXmpp" legacy cmake package is now only installed for Qt 5 builds
|
||||||
|
* Fix unit tests with Qt 6!
|
||||||
|
* EncryptedFileSharingProvider: Fix wrong cipher set in sent file share element
|
||||||
|
* Fix SCE parsing mode when parsing encrypted messages
|
||||||
|
* Fix file encryption with QCA issues
|
||||||
|
* Fix picking by strength of hashing algorithms
|
||||||
|
* Fix github ci
|
||||||
|
* Add unit tests for all file encryption ciphers
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 2 10:52:29 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.5.5:
|
||||||
|
* Fix dependencies in generated pkg-config files
|
||||||
|
* Fix compilation with android/clang
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 2 10:52:03 UTC 2024 - Michael Vetter <mvetter@suse.com>
|
||||||
|
|
||||||
|
- Update to 1.5.4:
|
||||||
|
* OMEMO fixes
|
||||||
|
* Fix use-after-move in EntityTimeManager
|
||||||
|
* EME: Always send encryption name text
|
||||||
|
* Fix interpretation of empty to/from address in the client
|
||||||
|
* MSVC related build fixes
|
||||||
|
* Support installing QXmpp with Qt 5 and Qt 6 in parallel
|
||||||
|
* Support building QXmppOmemo statically
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 14 14:25:09 UTC 2023 - Marcus Meissner <meissner@suse.com>
|
Tue Mar 14 14:25:09 UTC 2023 - Marcus Meissner <meissner@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libqxmpp
|
# spec file for package libqxmpp
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -22,7 +22,7 @@
|
|||||||
%endif
|
%endif
|
||||||
%define sover 4
|
%define sover 4
|
||||||
Name: libqxmpp
|
Name: libqxmpp
|
||||||
Version: 1.5.3
|
Version: 1.5.6
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Qt XMPP Library
|
Summary: Qt XMPP Library
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
@ -114,19 +114,21 @@ export LD_LIBRARY_PATH=%{buildroot}%{_libdir}
|
|||||||
%files -n %{name}%{sover}
|
%files -n %{name}%{sover}
|
||||||
%license LICENSES/*
|
%license LICENSES/*
|
||||||
%doc AUTHORS CHANGELOG.md README.md
|
%doc AUTHORS CHANGELOG.md README.md
|
||||||
%{_libdir}/%{name}.so.*
|
%{_libdir}/libQXmppQt5.so.*
|
||||||
%if %{with omemo}
|
%if %{with omemo}
|
||||||
%{_libdir}/libQXmppOmemo.so.*
|
%{_libdir}/libQXmppOmemoQt5.so.*
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files -n %{name}-devel
|
%files -n %{name}-devel
|
||||||
%{_includedir}/qxmpp/
|
%{_includedir}/QXmppQt5/
|
||||||
%{_libdir}/%{name}.so
|
%{_libdir}/libQXmppQt5.so
|
||||||
%{_libdir}/cmake/qxmpp/
|
%{_libdir}/cmake/QXmpp/
|
||||||
|
%{_libdir}/cmake/QXmppQt5/
|
||||||
%{_libdir}/pkgconfig/qxmpp.pc
|
%{_libdir}/pkgconfig/qxmpp.pc
|
||||||
|
%{_libdir}/pkgconfig/QXmppQt5.pc
|
||||||
%if %{with omemo}
|
%if %{with omemo}
|
||||||
%{_libdir}/libQXmppOmemo.so
|
%{_libdir}/libQXmppOmemoQt5.so
|
||||||
%{_libdir}/cmake/QXmppOmemo/
|
%{_libdir}/cmake/QXmppOmemoQt5/
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
|
Loading…
Reference in New Issue
Block a user