all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tomas Volf <~@wolfsden.cz>
To: 67557@debbugs.gnu.org
Cc: Tomas Volf <~@wolfsden.cz>
Subject: [bug#67557] [PATCH v3 2/5] gnu: deluge: Update to 2.1.1.
Date: Sat,  2 Dec 2023 01:28:55 +0100	[thread overview]
Message-ID: <367e95748003ea62a27dc1b3a27ce13d1e0c7e6f.1701476938.git.~@wolfsden.cz> (raw)
In-Reply-To: <a121694b9f75eaa75dd31a2704d36e2f40ad8a74.1701476938.git.~@wolfsden.cz>

Dependency on nss-certs was added.  Most torrents do require SSL in some shape
or form, so it seems appropriate to add it by default.

* gnu/packages/bittorrent.scm (deluge)[version]: Update to 2.1.1.
[propagated-inputs]: Add nss-certs.
[native-search-paths]: Set to allow locating the certificates.

Change-Id: Ic6c79f24851d6917dc4e5b22b3bcb2f6b99e187a
---
 gnu/packages/bittorrent.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bittorrent.scm b/gnu/packages/bittorrent.scm
index e115c13017..3d79a3a159 100644
--- a/gnu/packages/bittorrent.scm
+++ b/gnu/packages/bittorrent.scm
@@ -46,11 +46,13 @@ (define-module (gnu packages bittorrent)
   #:use-module ((guix licenses) #:prefix l:)
   #:use-module (guix gexp)
   #:use-module (guix utils)
+  #:use-module ((guix search-paths) #:select ($SSL_CERT_DIR $SSL_CERT_FILE))
   #:use-module (gnu packages)
   #:use-module (gnu packages adns)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages bash)
   #:use-module (gnu packages boost)
+  #:use-module (gnu packages certs)
   #:use-module (gnu packages check)
   #:use-module (gnu packages cmake)
   #:use-module (gnu packages compression)
@@ -574,7 +576,7 @@ (define-public qbittorrent-enhanced-nox
 (define-public deluge
   (package
     (name "deluge")
-    (version "2.0.5")
+    (version "2.1.1")
     (source
      (origin
        (method url-fetch)
@@ -583,12 +585,13 @@ (define-public deluge
              (version-major+minor version) "/deluge-" version ".tar.xz"))
        (sha256
         (base32
-         "1n15dzfnz1gvb4cf046yhi404i3gs933qgz0ichna6r1znmh9gf4"))))
+         "1xyz8bscwqmd7d8b43svxl42w54pnisvwkkrndx46hifh0cx73bn"))))
     (build-system python-build-system)
     (inputs (list bash-minimal))
     (propagated-inputs
      (list gtk+
            libtorrent-rasterbar
+           nss-certs
            python-pycairo
            python-chardet
            python-dbus
@@ -606,6 +609,9 @@ (define-public deluge
     (native-inputs
      (list intltool python-wheel
            (librsvg-for-system)))
+    (native-search-paths
+     (list $SSL_CERT_DIR
+           $SSL_CERT_FILE))
     ;; TODO: Enable tests.
     ;; After "pytest-twisted" is packaged, HOME is set, and an X server is
     ;; started, some of the tests still fail.  There are likely some tests
-- 
2.41.0





  reply	other threads:[~2023-12-02  0:31 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-30 23:19 [bug#67558] [PATCH 0/5] Update libtorrent-rasterbar and dependent programs Tomas Volf
2023-12-01 12:14 ` [bug#67557] [PATCH 1/5] gnu: libtorrent-rasterbar: Update to 1.2.19 Tomas Volf
2023-12-01 12:14 ` [bug#67557] [PATCH 2/5] gnu: deluge: Update to 2.1.1 Tomas Volf
2023-12-01 12:14 ` [bug#67557] [PATCH 3/5] gnu: qbittorrent-enhanced: Update to 4.6.1.10 Tomas Volf
2023-12-01 12:14 ` [bug#67557] [PATCH 4/5] gnu: qbittorrent: Update to 4.6.2 Tomas Volf
2023-12-01 12:14 ` [bug#67557] [PATCH 5/5] gnu: libtorrent-rasterbar: Update to 2.0.9 Tomas Volf
2023-12-01 23:15 ` [bug#67557] [PATCH v2 1/5] gnu: libtorrent-rasterbar: Update to 1.2.19 Tomas Volf
2023-12-01 23:15   ` [bug#67557] [PATCH v2 2/5] gnu: deluge: Update to 2.1.1 Tomas Volf
2023-12-01 23:15   ` [bug#67557] [PATCH v2 3/5] gnu: qbittorrent-enhanced: Update to 4.6.1.10 Tomas Volf
2023-12-01 23:15   ` [bug#67557] [PATCH v2 4/5] gnu: qbittorrent: Update to 4.6.2 Tomas Volf
2023-12-01 23:15   ` [bug#67557] [PATCH v2 5/5] gnu: libtorrent-rasterbar: Update to 2.0.9 Tomas Volf
2023-12-02  0:28 ` [bug#67557] [PATCH v3 1/5] gnu: libtorrent-rasterbar: Update to 1.2.19 Tomas Volf
2023-12-02  0:28   ` Tomas Volf [this message]
2023-12-02  0:28   ` [bug#67557] [PATCH v3 3/5] gnu: qbittorrent-enhanced: Update to 4.6.1.10 Tomas Volf
2023-12-02  0:28   ` [bug#67557] [PATCH v3 4/5] gnu: qbittorrent: Update to 4.6.2 Tomas Volf
2023-12-02  0:28   ` [bug#67557] [PATCH v3 5/5] gnu: libtorrent-rasterbar: Update to 2.0.9 Tomas Volf
2023-12-06 22:49 ` bug#67557: [PATCH 0/5] Update libtorrent-rasterbar and dependent programs Ludovic Courtès
2023-12-07 15:31   ` [bug#67557] " Tomas Volf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='367e95748003ea62a27dc1b3a27ce13d1e0c7e6f.1701476938.git.~@wolfsden.cz' \
    --to=~@wolfsden.cz \
    --cc=67557@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.