From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48032) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gN1Hd-00035N-20 for guix-patches@gnu.org; Wed, 14 Nov 2018 14:57:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gN1Ha-0001aI-Bs for guix-patches@gnu.org; Wed, 14 Nov 2018 14:57:04 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:48338) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gN1Ha-0001Zz-8I for guix-patches@gnu.org; Wed, 14 Nov 2018 14:57:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gN1HZ-00032o-Tm for guix-patches@gnu.org; Wed, 14 Nov 2018 14:57:01 -0500 Subject: [bug#33386] [PATCH 1/2] gnu: gajim: Add support for Guix packaged plugins. References: <87d0r7e8ox.fsf@lassieur.org> In-Reply-To: <87d0r7e8ox.fsf@lassieur.org> Resent-Message-ID: From: =?UTF-8?Q?Cl=C3=A9ment?= Lassieur Date: Wed, 14 Nov 2018 20:55:52 +0100 Message-Id: <20181114195553.27293-1-clement@lassieur.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33386@debbugs.gnu.org * gnu/packages/messaging.scm (gajim)[arguments]: Add an 'add-plugin-dirs' phase. Export PYTHONPATH in the wrapper. [inputs]: Remove python-axolotl and python-qrcode. --- gnu/packages/messaging.scm | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index c22cacfd3..f68b7e4eb 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -588,15 +588,29 @@ was initially a fork of xmpppy, but uses non-blocking sockets.") `(#:test-target "test_nogui" #:phases (modify-phases %standard-phases + (add-after 'unpack 'add-plugin-dirs + (lambda _ + (substitute* "gajim/common/configpaths.py" + (("_paths\\['PLUGINS_USER'\\]") + (string-append + "_paths['PLUGINS_USER'],os.path.expanduser" + "('~/.guix-profile/share/gajim/plugins')"))) + #t)) (add-after 'install 'wrap-program (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) (for-each (lambda (name) (let ((file (string-append out "/bin/" name)) - (gi-typelib-path (getenv "GI_TYPELIB_PATH"))) + (gi-typelib-path (getenv "GI_TYPELIB_PATH")) + (pythonpath (string-append + "$HOME/.guix-profile/lib/python" + ,(version-major+minor + (package-version python)) + "/site-packages"))) (wrap-program file - `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))))) + `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path)) + `("PYTHONPATH" ":" prefix (,pythonpath))))) '("gajim" "gajim-remote" "gajim-history-manager"))) #t)) (add-after 'install 'install-icons @@ -636,7 +650,6 @@ was initially a fork of xmpppy, but uses non-blocking sockets.") ("gtkspell3" ,gtkspell3) ("hicolor-icon-theme" ,hicolor-icon-theme) ("libsecret" ,libsecret) - ("python-axolotl" ,python-axolotl) ("python-cssutils" ,python-cssutils) ("python-dbus" ,python-dbus) ("python-gnupg" ,python-gnupg) @@ -646,8 +659,7 @@ was initially a fork of xmpppy, but uses non-blocking sockets.") ("python-precis-i18n" ,python-precis-i18n) ("python-pycairo" ,python-pycairo) ("python-pygobject" ,python-pygobject) - ("python-pyopenssl" ,python-pyopenssl) - ("python-qrcode" ,python-qrcode))) + ("python-pyopenssl" ,python-pyopenssl))) (home-page "https://gajim.org/") (synopsis "Jabber (XMPP) client") (description "Gajim is a feature-rich and easy to use Jabber/XMPP client. -- 2.19.1