emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#41255: closed ([PATCH] gnu: exo: Fix exo-compose-mail.)


From: GNU bug Tracking System
Subject: bug#41255: closed ([PATCH] gnu: exo: Fix exo-compose-mail.)
Date: Thu, 14 May 2020 14:50:01 +0000

Your message dated Thu, 14 May 2020 16:49:37 +0200
with message-id <address@hidden>
and subject line Re: [bug#41255] [v2 PATCH] gnu: exo: Fix exo-compose-mail.
has caused the debbugs.gnu.org bug report #41255,
regarding [PATCH] gnu: exo: Fix exo-compose-mail.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
41255: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=41255
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: exo: Fix exo-compose-mail. Date: Thu, 14 May 2020 12:28:46 +0200
Fixes https://issues.guix.gnu.org/issue/41244.

* gnu/packages/xfce.scm (exo)[arguments]: Add wrap-exo-compose-mail phase so it 
can find URI::Escape from perl-uri.
---
 gnu/packages/xfce.scm | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index 4217023cf8..ce26c62857 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -213,6 +213,19 @@ to share commonly used Xfce widgets among the Xfce 
applications.")
                (base32
                 "1dp5s64g6572h9zvx9js7qc72s728qsd9y7hl7hg6rwaq0cjb2gc"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         ;; exo won't find URI::Escape otherwise
+         (add-after 'install 'wrap-exo-compose-mail
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (perl5lib (getenv "PERL5LIB")))
+               (wrap-program (string-append out 
"/lib/xfce4/exo/exo-compose-mail")
+                 `("PERL5LIB" ":" prefix
+                   (,(string-append perl5lib ":" out
+                                    "/lib/perl5/site_perl")))))
+             #t)))))
     (native-inputs
      `(("pkg-config" ,pkg-config)
        ("intltool" ,intltool)))
--
2.26.2




--- End Message ---
--- Begin Message --- Subject: Re: [bug#41255] [v2 PATCH] gnu: exo: Fix exo-compose-mail. Date: Thu, 14 May 2020 16:49:37 +0200 User-agent: mu4e 1.4.4; emacs 26.3
Jonathan Brielmaier <address@hidden> writes:

> Fixes https://issues.guix.gnu.org/issue/41244.
>
> * gnu/packages/xfce.scm (exo)[arguments]: Add wrap-exo-compose-mail
> phase so it can find URI::Escape from perl-uri.

Applied and pushed with commit 5c7e477c6cfe89aa4dfce557ea181e5aa8ba8a05.
Thanks!

-- 
Ricardo


--- End Message ---

reply via email to

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