Compare commits
10 Commits
e25e57df3f
...
66e00529dc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
66e00529dc | ||
|
|
8e813398b7 | ||
|
|
86b76dd93e | ||
|
|
a405274ca1 | ||
|
|
6cac73f2bf | ||
|
|
3e0666281c | ||
|
|
d6acd42508 | ||
|
|
2fcc93d08f | ||
|
|
5a30c7bacb | ||
|
|
fa697004b4 |
Binary file not shown.
BIN
glib-networking-2.78.0.tar.xz
Normal file
BIN
glib-networking-2.78.0.tar.xz
Normal file
Binary file not shown.
@ -1,20 +1,18 @@
|
||||
Name: glib-networking
|
||||
Version: 2.72.0
|
||||
Release: 2
|
||||
Version: 2.78.0
|
||||
Release: 1
|
||||
Summary: Network-related modules for glib
|
||||
License: LGPLv2+
|
||||
URL: https://gitlab.gnome.org/GNOME/glib-networking
|
||||
Source0: https://download.gnome.org/sources/glib-networking/2.72/%{name}-%{version}.tar.xz
|
||||
|
||||
Patch0: test-skip-tls-exporter-test-for-TLS-1.2.patch
|
||||
Source0: https://download.gnome.org/sources/glib-networking/2.78/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: meson gcc ca-certificates gettext systemd
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.69.0 pkgconfig(gnutls)
|
||||
BuildRequires: pkgconfig(glib-2.0) >= 2.73.3 pkgconfig(gnutls) >= 3.7.4
|
||||
BuildRequires: pkgconfig(gio-2.0) pkgconfig(gsettings-desktop-schemas)
|
||||
BuildRequires: pkgconfig(libproxy-1.0) pkgconfig(p11-kit-1)
|
||||
|
||||
Requires: ca-certificates gsettings-desktop-schemas glib2 >= 2.69.0
|
||||
Recommends: libproxy-webkitgtk4
|
||||
Requires: ca-certificates gsettings-desktop-schemas glib2 >= 2.73.3
|
||||
Recommends: libproxy-duktape
|
||||
|
||||
%description
|
||||
glib-networking contains the implementations of certain GLib networking features
|
||||
@ -46,7 +44,6 @@ verify the Usability of the glib-networking package.
|
||||
%defattr(-,root,root)
|
||||
%license COPYING
|
||||
%doc NEWS README
|
||||
%{_libdir}/gio/modules/libgioenvironmentproxy.so
|
||||
%{_libdir}/gio/modules/libgiognomeproxy.so
|
||||
%{_libdir}/gio/modules/libgiognutls.so
|
||||
%{_libdir}/gio/modules/libgiolibproxy.so
|
||||
@ -60,6 +57,27 @@ verify the Usability of the glib-networking package.
|
||||
%{_datadir}/installed-tests
|
||||
|
||||
%changelog
|
||||
* Mon Feb 5 2024 yanglu <yanglu72@h-partners.com> - 2.78.0-1
|
||||
- update glib-networking version to 2.78.0:
|
||||
- disable PKCS#11 tests when GNuTLS is built without PKCS#11 support
|
||||
- fix connection tests on 32-bit systems with 64-bit time_t
|
||||
- updated translations
|
||||
|
||||
* Tue Jan 16 2024 yanglu <yanglu72@h-partners.com> - 2.76.1-2
|
||||
- Type:bugfix
|
||||
- ID:NA
|
||||
- SUG:NA
|
||||
- DESC:fix build error
|
||||
|
||||
* Tue Sep 26 2023 yanglu <yanglu72@h-partners.com> - 2.76.1-1
|
||||
- update version to 2.76.1 and enable test
|
||||
|
||||
* Wed Aug 9 2023 zhangpan <zhangpan@h-partners.com> - 2.74.0-2
|
||||
- disable make check
|
||||
|
||||
* Mon Jan 2 2023 lin zhang <lin.zhang@turbolinux.com.cn> - 2.74.0-1
|
||||
- Update to 2.74.0
|
||||
|
||||
* Thu Feb 02 2023 yangchenguang <yangchenguang@uniontech.com> - 2.72.0-2
|
||||
- tests skip tls-exporter test for TLS 1.2
|
||||
|
||||
|
||||
@ -1,81 +0,0 @@
|
||||
From 205b578c6de0a6b42dd24d97f08ab47d0347431a Mon Sep 17 00:00:00 2001
|
||||
From: Natanael Copa <ncopa@alpinelinux.org>
|
||||
Date: Wed, 2 Nov 2022 13:26:53 +0100
|
||||
Subject: [PATCH] test skip tls-exporter test for TLS 1.2
|
||||
|
||||
---
|
||||
tls/tests/connection.c | 47 +++++++++++++++++++++++++++---------------
|
||||
1 file changed, 30 insertions(+), 17 deletions(-)
|
||||
|
||||
diff --git a/tls/tests/connection.c b/tls/tests/connection.c
|
||||
index f6f1cf8..e4deb02 100644
|
||||
--- a/tls/tests/connection.c
|
||||
+++ b/tls/tests/connection.c
|
||||
@@ -2723,6 +2723,8 @@ test_connection_binding_match_tls_exporter (TestConnection *test,
|
||||
GByteArray *client_cb, *server_cb;
|
||||
gchar *client_b64, *server_b64;
|
||||
GError *error = NULL;
|
||||
+ gboolean client_supports_tls_exporter;
|
||||
+ gboolean server_supports_tls_exporter;
|
||||
|
||||
test->database = g_tls_file_database_new (tls_test_file_path ("ca-roots.pem"), &error);
|
||||
g_assert_no_error (error);
|
||||
@@ -2751,27 +2753,38 @@ test_connection_binding_match_tls_exporter (TestConnection *test,
|
||||
g_main_loop_run (test->loop);
|
||||
|
||||
/* Smoke test: ensure both sides support tls-exporter */
|
||||
- g_assert_true (g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->client_connection),
|
||||
- (GTlsChannelBindingType)100500, NULL, NULL));
|
||||
- g_assert_true (g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->server_connection),
|
||||
- (GTlsChannelBindingType)100500, NULL, NULL));
|
||||
+ client_supports_tls_exporter = g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->client_connection),
|
||||
+ (GTlsChannelBindingType)100500, NULL, NULL);
|
||||
+ server_supports_tls_exporter = g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->server_connection),
|
||||
+ (GTlsChannelBindingType)100500, NULL, NULL);
|
||||
|
||||
/* Real test: retrieve bindings and compare */
|
||||
- client_cb = g_byte_array_new ();
|
||||
- server_cb = g_byte_array_new ();
|
||||
- g_assert_true (g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->client_connection),
|
||||
- (GTlsChannelBindingType)100500, client_cb, NULL));
|
||||
- g_assert_true (g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->server_connection),
|
||||
- (GTlsChannelBindingType)100500, server_cb, NULL));
|
||||
+ g_assert_true (client_supports_tls_exporter == server_supports_tls_exporter);
|
||||
|
||||
- client_b64 = g_base64_encode (client_cb->data, client_cb->len);
|
||||
- server_b64 = g_base64_encode (server_cb->data, server_cb->len);
|
||||
- g_assert_cmpstr (client_b64, ==, server_b64);
|
||||
+ if (client_supports_tls_exporter)
|
||||
+ {
|
||||
+ /* Real test: retrieve bindings and compare */
|
||||
+ client_cb = g_byte_array_new ();
|
||||
+ server_cb = g_byte_array_new ();
|
||||
+ g_assert_true (g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->client_connection),
|
||||
+ (GTlsChannelBindingType)100500, client_cb, NULL));
|
||||
+ g_assert_true (g_tls_connection_get_channel_binding_data (G_TLS_CONNECTION (test->server_connection),
|
||||
+ (GTlsChannelBindingType)100500, server_cb, NULL));
|
||||
+ client_b64 = g_base64_encode (client_cb->data, client_cb->len);
|
||||
+ server_b64 = g_base64_encode (server_cb->data, server_cb->len);
|
||||
+ g_assert_cmpstr (client_b64, ==, server_b64);
|
||||
|
||||
- g_free (client_b64);
|
||||
- g_free (server_b64);
|
||||
- g_byte_array_unref (client_cb);
|
||||
- g_byte_array_unref (server_cb);
|
||||
+ g_free (client_b64);
|
||||
+ g_free (server_b64);
|
||||
+ g_byte_array_unref (client_cb);
|
||||
+ g_byte_array_unref (server_cb);
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ g_assert_true (g_tls_connection_get_protocol_version (
|
||||
+ G_TLS_CONNECTION (test->client_connection)) == G_TLS_PROTOCOL_VERSION_TLS_1_2);
|
||||
+ g_test_skip ("tls-exporter is not supported before TLS 1.3");
|
||||
+ }
|
||||
|
||||
/* drop the mic */
|
||||
close_server_connection (test);
|
||||
--
|
||||
2.20.1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user