From 72dae07296fd6e3db6a77f48a014a80520d6e6d1 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 27 Apr 2018 01:14:48 +0200 Subject: gnu: quassel: Update to 0.12.5. * gnu/packages/irc.scm (quassel): Update to 0.12.5. [source]: Remove patch. * gnu/packages/patches/quassel-fix-tls-check.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it. --- gnu/packages/irc.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'gnu/packages/irc.scm') diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index 38a1fb3a2d..c376805f46 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -65,18 +65,17 @@ (define-public quassel (package (name "quassel") - (version "0.12.4") + (version "0.12.5") (source (origin (method url-fetch) (uri (string-append "http://quassel-irc.org/pub/quassel-" version ".tar.bz2")) - (patches (search-patches "quassel-fix-tls-check.patch")) (sha256 (base32 - "0ka456fb8ha3w7g74xlzfg6w4azxjjxgrhl4aqpbwg3lnd6fbr4k")) + "1qkl3sb4ijx4k17m0c42j2p5bc4jymypwhmplm942rbrzm6mg50q")) (modules '((guix build utils))) - ;; We don't want to install the bundles scripts + ;; We don't want to install the bundled scripts. (snippet '(begin (delete-file-recursively "data/scripts") -- cgit v1.2.3 From 5b292eac73d6dbc88b79a5ba9e122fca0b8af345 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 27 Apr 2018 01:39:31 +0200 Subject: gnu: quassel: Use HTTPS home page. * gnu/packages/irc.scm (quassel)[home-page]: Use HTTPS. --- gnu/packages/irc.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/irc.scm') diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index c376805f46..219e803089 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -103,7 +103,7 @@ ("qtscript" ,qtscript) ("snorenotify" ,snorenotify) ("zlib" ,zlib))) - (home-page "http://quassel-irc.org/") + (home-page "https://quassel-irc.org/") (synopsis "Distributed IRC client") (description "Quassel is a distributed IRC client, meaning that one or more clients can attach to and detach from the central core. It resembles the -- cgit v1.2.3