From 026ac3c0106bbdd6d149ed7f80f6100fb1fc9604 Mon Sep 17 00:00:00 2001 From: jgart Date: Thu, 25 Nov 2021 04:50:07 -0500 Subject: gnu: Add pounce. * gnu/packages/messaging.scm (pounce): New variable. Signed-off-by: Nicolas Goaziou --- gnu/packages/messaging.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'gnu/packages/messaging.scm') diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 2e3afb510e..4856df732e 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -30,6 +30,7 @@ ;;; Copyright © 2020 Giacomo Leidi ;;; Copyright © 2021 Denis 'GNUtoo' Carikli ;;; Copyright © 2021 Vinicius Monego +;;; Copyright © 2021 jgart ;;; ;;; This file is part of GNU Guix. ;;; @@ -59,6 +60,7 @@ #:use-module (gnu packages bison) #:use-module (gnu packages boost) #:use-module (gnu packages check) + #:use-module (gnu packages code) #:use-module (gnu packages compression) #:use-module (gnu packages cpp) #:use-module (gnu packages crypto) @@ -3189,6 +3191,37 @@ API. Mattermost is not required.") (home-page "https://github.com/42wim/matterbridge") (license license:asl2.0))) +(define-public pounce + (package + (name "pounce") + (version "3.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://git.causal.agency/pounce/snapshot/pounce-" + version ".tar.gz")) + (sha256 + (base32 "1w4x34bspkqvk9p7bfj0zmvmbzvxb7lxrrr3g6lrfdj9f3qzfxpp")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ;there are no tests + #:make-flags + (list + (string-append "CC=" ,(cc-for-target)) + (string-append "PREFIX=" %output)))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("universal-ctags" ,universal-ctags))) + (inputs + `(("libressl" ,libressl))) + (home-page "https://code.causal.agency/june/pounce") + (synopsis "Simple multi-client TLS-only IRC bouncer") + (description + "@command{pounce} is a multi-client, TLS-only IRC bouncer. It maintains +a persistent connection to an IRC server, acting as a proxy and buffer for +a number of clients.") + (license license:gpl3+))) + (define-public weechat-matrix (package (name "weechat-matrix") -- cgit v1.2.3 From 4bf8348ff388246378e374db5fd2450c4cfb9fe5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 10 Dec 2021 04:46:29 +0100 Subject: gnu: gajim: Restore 'disable-failing-tests phase. Gajim consistently builds on my machines & bayfront, whilst raghavgururajan reports the exact same derivation consistently failing with the commented error. Odd. * gnu/packages/messaging.scm (gajim)[arguments]: Restore the old 'disable-failing-tests phase. --- gnu/packages/messaging.scm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'gnu/packages/messaging.scm') diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 4856df732e..3509327427 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1209,6 +1209,13 @@ of xmpppy.") (guix build utils)) #:phases (modify-phases %standard-phases + (add-after 'unpack 'disable-failing-tests + (lambda _ + ;; XXX Gajim builds fine on some (my) machines but fails elsewhere: + ;; ModuleNotFoundError: No module named 'gajim.gui.emoji_data' + ;; https://dev.gajim.org/gajim/gajim/-/issues/10478 + (delete-file "test/lib/gajim_mocks.py") + (delete-file "test/unit/test_gui_interface.py") (replace 'check (lambda _ ;; Tests require a running X server. -- cgit v1.2.3 From e1973ae74beb2880c11593155849f43e23ef620c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 10 Dec 2021 04:53:08 +0100 Subject: gnu: gajim: Fix typo. * gnu/packages/messaging.scm (gajim)[arguments]: Add missing brackets. All typos are my own. --- gnu/packages/messaging.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/messaging.scm') diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 3509327427..86a61cf41e 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1215,7 +1215,7 @@ of xmpppy.") ;; ModuleNotFoundError: No module named 'gajim.gui.emoji_data' ;; https://dev.gajim.org/gajim/gajim/-/issues/10478 (delete-file "test/lib/gajim_mocks.py") - (delete-file "test/unit/test_gui_interface.py") + (delete-file "test/unit/test_gui_interface.py"))) (replace 'check (lambda _ ;; Tests require a running X server. -- cgit v1.2.3