forked from pool/qt6-networkauth
Compare commits
40 Commits
Author | SHA256 | Date | |
---|---|---|---|
fa88cea51c | |||
|
8fe8804a2b | ||
7f67527cb5 | |||
|
14c88525e6 | ||
23112ecbee | |||
|
39a7628b69 | ||
5ac43ef099 | |||
|
13906fe448 | ||
2b8ab0a5d8 | |||
|
ce4d1d2dca | ||
95890026eb | |||
|
2fc7d24e04 | ||
77b279bc57 | |||
daed5cb4af | |||
84ee6fb803 | |||
9962c1489f | |||
e2431c97e7 | |||
c0eb02c57c | |||
eefbe79a56 | |||
b073f01f8c | |||
fbcdcdf425 | |||
5d84121d89 | |||
e0c18b149a | |||
4c59619736 | |||
179ca4ae95 | |||
b6b8f55004 | |||
5ab9a7fe77 | |||
cf0da4a3b7 | |||
2831b96ea7 | |||
42f5031d6b | |||
45a14cc3c1 | |||
17a00997cb | |||
52c30d9a0b | |||
d8d79a6d0e | |||
ff9e02fc4d | |||
b56c9e94f3 | |||
5b85ebc0f9 | |||
6ab2dc3a32 | |||
c0bb8d2608 | |||
|
09819af91a |
@@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 3 07:49:29 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
- Update to 6.9.1:
|
||||
* https://www.qt.io/blog/qt-6.9.1-released
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 2 11:03:39 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
- Update to 6.9.0:
|
||||
* https://www.qt.io/blog/qt-6.9-released
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 31 10:22:56 UTC 2025 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
- Update to 6.8.2
|
||||
https://www.qt.io/blog/qt-6.8.2-released
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 2 13:02:07 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
- Update to 6.8.1:
|
||||
* https://www.qt.io/blog/qt-6.8.1-released
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 8 09:29:46 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
- Update to 6.8.0:
|
||||
* https://www.qt.io/blog/qt-6.8-released
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Sep 28 08:23:01 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
- Update to 6.7.3
|
||||
* https://www.qt.io/blog/qt-6.7.3-released
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 19 07:25:50 UTC 2024 - Christophe Marin <christophe@krop.fr>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package qt6-networkauth
|
||||
#
|
||||
# Copyright (c) 2023 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,8 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%define real_version 6.7.2
|
||||
%define short_version 6.7
|
||||
%define real_version 6.9.1
|
||||
%define short_version 6.9
|
||||
%define short_name qtnetworkauth
|
||||
%define tar_name qtnetworkauth-everywhere-src
|
||||
%define tar_suffix %{nil}
|
||||
@@ -28,7 +28,7 @@
|
||||
%endif
|
||||
#
|
||||
Name: qt6-networkauth%{?pkg_suffix}
|
||||
Version: 6.7.2
|
||||
Version: 6.9.1
|
||||
Release: 0
|
||||
Summary: Set of APIs to obtain limited access to online accounts and HTTP services
|
||||
License: GPL-3.0-only WITH Qt-GPL-exception-1.0
|
||||
@@ -36,8 +36,8 @@ URL: https://www.qt.io
|
||||
Source0: https://download.qt.io/official_releases/qt/%{short_version}/%{real_version}%{tar_suffix}/submodules/%{tar_name}-%{real_version}%{tar_suffix}.tar.xz
|
||||
Source99: qt6-networkauth-rpmlintrc
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: qt6-core-private-devel
|
||||
BuildRequires: cmake(Qt6Core) = %{real_version}
|
||||
BuildRequires: cmake(Qt6CorePrivate) = %{real_version}
|
||||
BuildRequires: cmake(Qt6Network) = %{real_version}
|
||||
BuildRequires: cmake(Qt6Widgets) = %{real_version}
|
||||
%if "%{qt6_flavor}" == "docs"
|
||||
@@ -82,7 +82,8 @@ ABI or API guarantees.
|
||||
%autosetup -p1 -n %{tar_name}-%{real_version}%{tar_suffix}
|
||||
|
||||
%build
|
||||
%cmake_qt6
|
||||
%cmake_qt6 \
|
||||
-DQT_GENERATE_SBOM:BOOL=FALSE
|
||||
|
||||
%{qt6_build}
|
||||
|
||||
@@ -110,6 +111,7 @@ ABI or API guarantees.
|
||||
%exclude %{_qt6_includedir}/QtNetworkAuth/%{real_version}
|
||||
|
||||
%files private-devel
|
||||
%{_qt6_cmakedir}/Qt6NetworkAuthPrivate/
|
||||
%{_qt6_includedir}/QtNetworkAuth/%{real_version}
|
||||
%{_qt6_mkspecsdir}/modules/qt_lib_networkauth_private.pri
|
||||
|
||||
|
BIN
qtnetworkauth-everywhere-src-6.7.2.tar.xz
(Stored with Git LFS)
BIN
qtnetworkauth-everywhere-src-6.7.2.tar.xz
(Stored with Git LFS)
Binary file not shown.
BIN
qtnetworkauth-everywhere-src-6.9.1.tar.xz
(Stored with Git LFS)
Normal file
BIN
qtnetworkauth-everywhere-src-6.9.1.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
Reference in New Issue
Block a user