aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshish SHUKLA <ashish.is@lostca.se>2025-02-17 17:47:58 +0000
committerLudovic Courtès <ludo@gnu.org>2025-03-26 22:51:16 +0100
commit8f64fc556141dbd1668e0d1599d465a2c7619fb6 (patch)
treea29e725aba6a3498aef44877d0bc2d5389350345
parent858f9eb39b163bd0330e18a3b6cde7d8b4b4e6c5 (diff)
downloadguix-8f64fc556141dbd1668e0d1599d465a2c7619fb6.tar.gz
guix-8f64fc556141dbd1668e0d1599d465a2c7619fb6.zip
gnu: gajim: Update to 1.9.5.
* 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 <ludo@gnu.org>
-rw-r--r--gnu/packages/messaging.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 794aca7d4f..e8c25e7881 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)