From 8f64fc556141dbd1668e0d1599d465a2c7619fb6 Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Mon, 17 Feb 2025 17:47:58 +0000 Subject: [PATCH] gnu: gajim: Update to 1.9.5. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/messaging.scm (gajim): Update to 1.9.5. [arguments]<#:phases>: Update build-metadata, and install-metadata phases. Change-Id: I7c83fb8c53066c1c704f562a24e4334e6f14beab Signed-off-by: Ludovic Courtès --- gnu/packages/messaging.scm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 794aca7d4fa..e8c25e78815 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1198,7 +1198,7 @@ of xmpppy.") (define-public gajim (package (name "gajim") - (version "1.9.3") + (version "1.9.5") (source (origin (method url-fetch) @@ -1206,7 +1206,7 @@ of xmpppy.") (version-major+minor version) "/gajim-" version ".tar.gz")) (sha256 - (base32 "10rz8pd43a9308kj6csixsmvdc6ccnqkw83adc5cggh1798b45ag")) + (base32 "0g2nhy6ypj4jbz216sgiy37spq34bwa0ydn2g73fp9qnxfq4vpvz")) (patches (search-patches "gajim-honour-GAJIM_PLUGIN_PATH.patch")))) (build-system python-build-system) @@ -1226,8 +1226,7 @@ of xmpppy.") 'generate-gdk-pixbuf-loaders-cache-file)) (add-before 'build 'build-metadata (lambda _ - (invoke "./pep517build/build_metadata.py" - "-o" "dist/metadata"))) + (invoke "./make.py" "build"))) ;; TODO: Change to pyproject-build-system once it supports ;; in-tree build backends. (replace 'build @@ -1241,7 +1240,7 @@ of xmpppy.") (find-files "dist" "\\.whl$")))) (add-after 'install 'install-metadata (lambda _ - (invoke "./pep517build/install_metadata.py" "dist/metadata" + (invoke "./make.py" "install" (string-append "--prefix=" #$output)))) (replace 'check (lambda* (#:key tests? #:allow-other-keys)