gnu: deluge: Update to 2.1.1.
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 Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
fb2bbb0c3e
commit
5582bd9413
|
@ -46,11 +46,13 @@
|
||||||
#:use-module ((guix licenses) #:prefix l:)
|
#:use-module ((guix licenses) #:prefix l:)
|
||||||
#:use-module (guix gexp)
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
#:use-module ((guix search-paths) #:select ($SSL_CERT_DIR $SSL_CERT_FILE))
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages adns)
|
#:use-module (gnu packages adns)
|
||||||
#:use-module (gnu packages autotools)
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages boost)
|
#:use-module (gnu packages boost)
|
||||||
|
#:use-module (gnu packages certs)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages cmake)
|
#:use-module (gnu packages cmake)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
@ -574,7 +576,7 @@ the following features:
|
||||||
(define-public deluge
|
(define-public deluge
|
||||||
(package
|
(package
|
||||||
(name "deluge")
|
(name "deluge")
|
||||||
(version "2.0.5")
|
(version "2.1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -583,12 +585,13 @@ the following features:
|
||||||
(version-major+minor version) "/deluge-" version ".tar.xz"))
|
(version-major+minor version) "/deluge-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1n15dzfnz1gvb4cf046yhi404i3gs933qgz0ichna6r1znmh9gf4"))))
|
"1xyz8bscwqmd7d8b43svxl42w54pnisvwkkrndx46hifh0cx73bn"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(inputs (list bash-minimal))
|
(inputs (list bash-minimal))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list gtk+
|
(list gtk+
|
||||||
libtorrent-rasterbar
|
libtorrent-rasterbar
|
||||||
|
nss-certs
|
||||||
python-pycairo
|
python-pycairo
|
||||||
python-chardet
|
python-chardet
|
||||||
python-dbus
|
python-dbus
|
||||||
|
@ -606,6 +609,9 @@ the following features:
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list intltool python-wheel
|
(list intltool python-wheel
|
||||||
(librsvg-for-system)))
|
(librsvg-for-system)))
|
||||||
|
(native-search-paths
|
||||||
|
(list $SSL_CERT_DIR
|
||||||
|
$SSL_CERT_FILE))
|
||||||
;; TODO: Enable tests.
|
;; TODO: Enable tests.
|
||||||
;; After "pytest-twisted" is packaged, HOME is set, and an X server is
|
;; 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
|
;; started, some of the tests still fail. There are likely some tests
|
||||||
|
|
Reference in New Issue