guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/06: gnu: kodi: Update to 18.2.


From: guix-commits
Subject: 05/06: gnu: kodi: Update to 18.2.
Date: Mon, 29 Apr 2019 15:15:20 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 05e1534ee81a21b1d8046ac2e21d5da4ec107fb9
Author: Marius Bakke <address@hidden>
Date:   Fri Apr 26 15:51:44 2019 +0200

    gnu: kodi: Update to 18.2.
    
    * gnu/packages/kodi.scm (kodi): Update to 18.2.
    * gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch: Adjust for
    upstream changes.
---
 gnu/packages/kodi.scm                                      | 4 ++--
 gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch | 9 +++++----
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/kodi.scm b/gnu/packages/kodi.scm
index 58073b6..e885aaa 100644
--- a/gnu/packages/kodi.scm
+++ b/gnu/packages/kodi.scm
@@ -271,7 +271,7 @@ alternatives. In compilers, this can reduce the cascade of 
secondary errors.")
 (define-public kodi
   (package
     (name "kodi")
-    (version "18.1")
+    (version "18.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -280,7 +280,7 @@ alternatives. In compilers, this can reduce the cascade of 
secondary errors.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1w26aqvzxv4c70gcd1vw1pldapsc2xcacwq9b7dqx5m44j0zx1dc"))
+                "1yzi8171p1mnszyf80lqkl05ql25n73s5gn8pcgvv4jph4yvasnq"))
               (patches (search-patches "kodi-skip-test-449.patch"
                                        
"kodi-set-libcurl-ssl-parameters.patch"))
               (snippet
diff --git a/gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch 
b/gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch
index f977c6d..2f60737 100644
--- a/gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch
+++ b/gnu/packages/patches/kodi-set-libcurl-ssl-parameters.patch
@@ -4,13 +4,14 @@ connections work we can set them based on SSL_CERT_DIR and 
SSL_CERT_FILE.
 --- a/xbmc/filesystem/CurlFile.cpp
 +++ b/xbmc/filesystem/CurlFile.cpp
 @@ -626,5 +626,9 @@
-   // Setup allowed TLS/SSL ciphers. New versions of cURL may deprecate things 
that are still in use.
    if (!m_cipherlist.empty())
      g_curlInterface.easy_setopt(h, CURLOPT_SSL_CIPHER_LIST, 
m_cipherlist.c_str());
-+
+ 
 +  // Load certificate data from environment paths
 +  g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_CAPATH, 
getenv("SSL_CERT_DIR"));
 +  g_curlInterface.easy_setopt(m_state->m_easyHandle, CURLOPT_CAINFO, 
getenv("SSL_CERT_FILE"));
++
+   // enable HTTP2 support. default: CURL_HTTP_VERSION_1_1. Curl >= 7.62.0 
defaults to CURL_HTTP_VERSION_2TLS
+   g_curlInterface.easy_setopt(h, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
+-
  }
- 
- void CCurlFile::SetRequestHeaders(CReadState* state)
\ No newline at end of file



reply via email to

[Prev in Thread] Current Thread [Next in Thread]