Accepting request 678873 from X11:LXQt
- Update to 3.3.1: * Silenced compiler warnings about not used variables. * Dropped not needed MOC stuff, we already use CMAKE_AUTOMOC. * Dropped using libqtxdg's own versions of things that are in lxqt-build-tools * Updated translations - Update to 3.3.0: * Use C++ ISO Standard 14, removed support for < 14 * XdgDesktopFile: Simplify scheme handling * XdgDesktopFile: Clear internal data before loading a new file * XdgDesktopFile: Don’t try read non existent files * xdgaction: Set icon in updateIcon() only if needed * xdgiconloader: Support more classes for “FollowColors” icons * xdgiconloader: Consider device pixel ratio when painting * xdgiconloader: Cover all KDE colors schemes for symbolic icons * xdgiconloader: Fixes pedantic warning * xdgmenuwidget: Fix menu-item drag url OBS-URL: https://build.opensuse.org/request/show/678873 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libqt5xdg?expand=0&rev=9
This commit is contained in:
commit
412dc1656b
@ -1,3 +1,28 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 25 10:07:22 UTC 2019 - mvetter@suse.com
|
||||
|
||||
- Update to 3.3.1:
|
||||
* Silenced compiler warnings about not used variables.
|
||||
* Dropped not needed MOC stuff, we already use CMAKE_AUTOMOC.
|
||||
* Dropped using libqtxdg's own versions of things that are in
|
||||
lxqt-build-tools
|
||||
* Updated translations
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 31 09:43:45 UTC 2019 - Michael Vetter <mvetter@suse.com>
|
||||
|
||||
- Update to 3.3.0:
|
||||
* Use C++ ISO Standard 14, removed support for < 14
|
||||
* XdgDesktopFile: Simplify scheme handling
|
||||
* XdgDesktopFile: Clear internal data before loading a new file
|
||||
* XdgDesktopFile: Don’t try read non existent files
|
||||
* xdgaction: Set icon in updateIcon() only if needed
|
||||
* xdgiconloader: Support more classes for “FollowColors” icons
|
||||
* xdgiconloader: Consider device pixel ratio when painting
|
||||
* xdgiconloader: Cover all KDE colors schemes for symbolic icons
|
||||
* xdgiconloader: Fixes pedantic warning
|
||||
* xdgmenuwidget: Fix menu-item drag url
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 22 13:54:39 UTC 2018 - mvetter@suse.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libqt5xdg
|
||||
#
|
||||
# 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
|
||||
@ -15,21 +15,23 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%define _name libqtxdg
|
||||
Name: libqt5xdg
|
||||
Version: 3.2.0
|
||||
Version: 3.3.1
|
||||
Release: 0
|
||||
Summary: Qt implementation of xdg specs for lxqt
|
||||
License: GPL-3.0
|
||||
License: GPL-3.0-only
|
||||
Group: Development/Libraries/C and C++
|
||||
Url: https://lxqt.org
|
||||
Source: https://github.com/lxde/%{_name}/releases/download/%{version}/%{_name}-%{version}.tar.xz
|
||||
Source1: https://github.com/lxde/%{_name}/releases/download/%{version}/%{_name}-%{version}.tar.xz.asc
|
||||
Source2: %{name}.keyring
|
||||
BuildRequires: cmake >= 3.0.2
|
||||
BuildRequires: cmake >= 3.1.0
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libQt5Gui-private-headers-devel
|
||||
BuildRequires: lxqt-build-tools-devel
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: pkgconfig(Qt5Core) >= 5.7.1
|
||||
BuildRequires: pkgconfig(Qt5DBus)
|
||||
@ -107,19 +109,19 @@ make %{?_smp_mflags}
|
||||
%files -n libQt5XdgIconLoader3
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libQt5XdgIconLoader.so.3
|
||||
%{_libdir}/libQt5XdgIconLoader.so.3.2.0
|
||||
%{_libdir}/libQt5XdgIconLoader.so.3.*
|
||||
|
||||
%files -n libQt5XdgIconLoader-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/qt5xdgiconloader
|
||||
%dir %{_includedir}/qt5xdgiconloader/3.2.0
|
||||
%dir %{_includedir}/qt5xdgiconloader/3.2.0/private
|
||||
%dir %{_includedir}/qt5xdgiconloader/3.2.0/private/xdgiconloader
|
||||
%dir %{_includedir}/qt5xdgiconloader/%{version}
|
||||
%dir %{_includedir}/qt5xdgiconloader/%{version}/private
|
||||
%dir %{_includedir}/qt5xdgiconloader/%{version}/private/xdgiconloader
|
||||
%dir %{_datadir}/cmake/qt5xdgiconloader
|
||||
%{_libdir}/libQt5XdgIconLoader.so
|
||||
%{_libdir}/qt5/plugins/iconengines/libQt5XdgIconPlugin.so
|
||||
%{_includedir}/qt5xdgiconloader/3.2.0/private/xdgiconloader/xdgiconloader_p.h
|
||||
%{_includedir}/qt5xdgiconloader/xdgiconloader_export.h
|
||||
%{_includedir}/qt5xdgiconloader/%{version}/private/xdgiconloader/xdgiconloader_p.h
|
||||
%{_libdir}/pkgconfig/Qt5XdgIconLoader.pc
|
||||
%{_datadir}/cmake/qt5xdgiconloader/qt5xdgiconloader-config-version.cmake
|
||||
%{_datadir}/cmake/qt5xdgiconloader/qt5xdgiconloader-config.cmake
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:949134060d148df2ca4515e3759ed9c6a2fa7c51eb7a2197dd0e26a32e220553
|
||||
size 67736
|
@ -1,16 +0,0 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEEfHM7pfWFqtZp5NI6QsnI069epeMFAlsC++8ACgkQQsnI069e
|
||||
peMPkRAAjpqsuZ+nrfpQrfn/AKTII+yZi3F0/39Wsybmq5elPE+bbMFhOtaiKSyb
|
||||
386WimiC6K3IRKlS6kGUuh1470ptBGqbcu/0HJo4a2iw60soK/NILqkXGR8K/9c1
|
||||
xK06OvXpyeDeVTubcCKNG9ojL9w54CvX71nceY8ePa+q6lzs5kvx3hNRntR+ST3I
|
||||
OfehHlQMDvqz0tEQpQT1ipob9y1fp8PzMSbGRWPpcXLZV76ccNDyt0v8iN0gqbUs
|
||||
HRaIv7ho5Sq4FeNEiWIEHuVWgYlaJAU+h4mbFd/7LLyLKjSf7BaSu5HmP44lHzhI
|
||||
FXqPFk8pkNOwxPIZAKJvcjllHAKHs1IZzUTT2d0yYyH00J4pB56IYv6DZOWnkmLE
|
||||
vJZ0rND0QJ9G16JXDcN/l22iPIMw7hPBZ5O8UtAmauU/j2Odx8HwsyYGJ839ArFS
|
||||
GQ3AXtoOm4Mt3NLP4+6/KUeaB/IKGl2kktLnfPvS5AcikKDKFrdV5/MVcccy0qWR
|
||||
VNxVQzBfrPU0gP3psc/7MywNX3e81dYO657lgQ857nGVnsgNv9d5uxg+SxogGqCM
|
||||
JiLCGsgkw/p5qBHhCKts5sU3lP7m/ExAfoL5DmI1vwaKAeJc4qz81k/p9ctQv8jI
|
||||
VdceEV09Voqq5F46t/dPQPkHKITFFNuGhE3LXxz6U5ODqVqNfPY=
|
||||
=AzJq
|
||||
-----END PGP SIGNATURE-----
|
3
libqtxdg-3.3.1.tar.xz
Normal file
3
libqtxdg-3.3.1.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1061fa6a4783df5e33ea2876f03f88b9ffef8157d37da97ea6b217b736c2d6d6
|
||||
size 66004
|
16
libqtxdg-3.3.1.tar.xz.asc
Normal file
16
libqtxdg-3.3.1.tar.xz.asc
Normal file
@ -0,0 +1,16 @@
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
|
||||
iQIzBAABCgAdFiEEfHM7pfWFqtZp5NI6QsnI069epeMFAlxywPEACgkQQsnI069e
|
||||
peOcsBAAmJtbH3tLdMVYdYiWXz6KtR6MT4nbHAEofcJtkLTyu34G9F/YfC4rNJn+
|
||||
KOxratGUolEZsTRGSQgdkY4oeNFjKQ2CjRiRrNiTrr7xSweLLFEfmI43m7VKKov3
|
||||
KNYVoQsxGIKvN2AJ/ILC1s52AurecyUAhiETENTn5ngydtceucHxIKgXqu1VxeXk
|
||||
Eh5d4MCJ5qgjMQfIoQk75iROCdxyqbpe4lz7Gm34iNuybSKyA9SwpkexoS8A5itV
|
||||
UG1/D+xvvndy9a3dJUfrEJ404jBkwHUtfT/3GfnEQOt7rbkXz8ZWf8z8NlrgD67D
|
||||
G+/OpQcNUvG9TbYP4r7pwY6kKE7i2i7XSkAcYLTC++c13HA3SJIB1GlXBjya3ptj
|
||||
LvIWjS2/vCB05HdLMzgHJhafbAiVOOCJq+iGfTsWB6DU46vZOyWDTkH3DJTrBfqk
|
||||
4KZJwv7mFineYP2DNGRtlx5u7YT5THhqaIA3/DO68IvIN3poQ1y5SSpVLAbVDiAw
|
||||
lPHsaUfnJAmzZCIFcMm/4XsiOReqsHw2HQWrSvyDpNbhAf3OmAceBFs79fOs1T6c
|
||||
rEqDl03XOCDtNB7w+oUnfNqIKSd4rNf56IBkBSSR2uk1wTL9fUbJ7ep9xgRk8C4F
|
||||
y67y/cld5roh2VBZ9Mado4BLfTzJs1vt2kGSp1NTDbtK+k5Se/w=
|
||||
=dkeQ
|
||||
-----END PGP SIGNATURE-----
|
Loading…
Reference in New Issue
Block a user