guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/12: gnu: s3cmd: Fix program name in output.


From: guix-commits
Subject: 06/12: gnu: s3cmd: Fix program name in output.
Date: Fri, 18 Nov 2022 09:49:13 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 856b67f3021d1c764ef30b5a166edfb4244d9cad
Author: Matthew James Kraai <kraai@ftbfs.org>
AuthorDate: Thu Oct 20 20:16:00 2022 -0700

    gnu: s3cmd: Fix program name in output.
    
    * gnu/packages/python-xyz.scm (s3cmd)[arguments]: Add a new 'hide-wrapping
    phase.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/python-xyz.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e3d1ac05fa..c5ab9280eb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -16395,6 +16395,15 @@ the same purpose: to provide Python bindings for 
libmagic.")
        (sha256
         (base32 "0rdgwwmmp8mdxc84bxq6k9a7v7z2qgc3df47djzs2b84gw81dglx"))))
     (build-system python-build-system)
+    (arguments
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'hide-wrapping
+                 (lambda _
+                   (substitute* "S3/MultiPart.py"
+                     (("sys\\.argv\\[0\\]") "\"s3cmd\""))
+                   (substitute* "s3cmd"
+                     (("optparser\\.get_prog_name\\(\\)") "\"s3cmd\"")))))))
     (inputs
      (list python-dateutil
            python-magic))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]