diff --git a/weechat-0.4.1-capath.diff b/weechat-0.4.1-capath.diff new file mode 100644 index 0000000..1a2896e --- /dev/null +++ b/weechat-0.4.1-capath.diff @@ -0,0 +1,49 @@ +From 209c09a6b1b2151a6ce83a2c2a3cb49a5a9bacb6 Mon Sep 17 00:00:00 2001 +From: Ludwig Nussel +Date: Tue, 6 Aug 2013 15:12:04 +0200 +Subject: [PATCH] use system's default certificate store + +--- + CMakeLists.txt | 7 +++---- + src/core/wee-config.c | 3 +++ + src/core/wee-network.c | 6 ++++++ + 3 files changed, 12 insertions(+), 4 deletions(-) + +Index: weechat-0.4.1/src/core/wee-config.c +=================================================================== +--- weechat-0.4.1.orig/src/core/wee-config.c ++++ weechat-0.4.1/src/core/wee-config.c +@@ -61,7 +61,6 @@ + #include "../gui/gui-window.h" + #include "../plugins/plugin.h" + +- + struct t_config_file *weechat_config_file = NULL; + struct t_config_section *weechat_config_section_debug = NULL; + struct t_config_section *weechat_config_section_color = NULL; +@@ -2961,7 +2960,7 @@ config_weechat_init_options () + "gnutls_ca_file", "string", + N_("file containing the certificate authorities (\"%h\" will be " + "replaced by WeeChat home, \"~/.weechat\" by default)"), +- NULL, 0, 0, "/etc/ssl/certs/ca-certificates.crt", NULL, 0, NULL, NULL, ++ NULL, 0, 0, NULL, NULL, 1, NULL, NULL, + &config_change_network_gnutls_ca_file, NULL, NULL, NULL); + config_network_gnutls_handshake_timeout = config_file_new_option ( + weechat_config_file, ptr_section, +Index: weechat-0.4.1/src/core/wee-network.c +=================================================================== +--- weechat-0.4.1.orig/src/core/wee-network.c ++++ weechat-0.4.1/src/core/wee-network.c +@@ -87,6 +87,12 @@ network_set_gnutls_ca_file () + } + free (ca_path); + } ++#if LIBGNUTLS_VERSION_NUMBER >= 0x030013 // was introduced in 3.0.19 ++ else ++ { ++ gnutls_certificate_set_x509_system_trust(gnutls_xcred); ++ } ++#endif + #endif + } + diff --git a/weechat.changes b/weechat.changes index 2db9422..a99997c 100644 --- a/weechat.changes +++ b/weechat.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Aug 6 13:57:58 UTC 2013 - lnussel@suse.de + +- use system's default certificate store instead of hardcoding the + path to a bundle file (weechat-0.4.1-capath.diff, bnc#829471) + ------------------------------------------------------------------- Tue May 21 07:31:45 UTC 2013 - gber@opensuse.org diff --git a/weechat.spec b/weechat.spec index 38af3e8..c1b9e30 100644 --- a/weechat.spec +++ b/weechat.spec @@ -28,6 +28,8 @@ License: GPL-3.0+ Group: Productivity/Networking/IRC Source: http://www.weechat.org/files/src/weechat-%{version}.tar.bz2 Source1: weechat.desktop +# PATCH-FIX-UPSTREAM https://savannah.nongnu.org/patch/index.php?8153 lnussel@suse.de -- use system's default certificate store +Patch0: weechat-0.4.1-capath.diff Url: http://www.weechat.org BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: cmake @@ -137,6 +139,7 @@ Spell-checking support for %{name}, using the aspell library. %prep %setup -q +%patch0 -p1 modified="$(sed -n '/^----/n;s/ - .*$//;p;q' "%{_sourcedir}/%{name}.changes")" DATE="\"$(date -d "${modified}" "+%%b %%e %%Y")\"" TIME="\"$(date -d "${modified}" "+%%R")\""