all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#50600: Problem with package perl-lingua-translit
@ 2021-09-15  8:55 Evgeny Pisemsky
  2022-10-23 14:23 ` bug#50600: [PATCH] Wrap translit program Evgeny Pisemsky
  2022-12-10  6:55 ` bug#50600: Reminder Evgeny Pisemsky
  0 siblings, 2 replies; 4+ messages in thread
From: Evgeny Pisemsky @ 2021-09-15  8:55 UTC (permalink / raw)
  To: 50600

After installing the package perl-lingua-translit and trying to use its accompanied utility translit the following error appears:

$ translit -l
Can't locate Lingua/Translit.pm in @INC (you may need to install the Lingua::Translit module) (@INC contains: /gnu/store/8zvc5mvk0xm3ygrxsgpyy5ilxb5rzjry-perl-5.30.2/lib/perl5/site_perl/5.30.2/x86_64-linux-thread-multi /gnu/store/8zvc5mvk0xm3ygrxsgpyy5ilxb5rzjry-perl-5.30.2/lib/perl5/site_perl/5.30.2 /gnu/store/8zvc5mvk0xm3ygrxsgpyy5ilxb5rzjry-perl-5.30.2/lib/perl5/5.30.2/x86_64-linux-thread-multi /gnu/store/8zvc5mvk0xm3ygrxsgpyy5ilxb5rzjry-perl-5.30.2/lib/perl5/5.30.2) at /home/user/.guix-profile/bin/translit line 17.
BEGIN failed--compilation aborted at /home/user/.guix-profile/bin/translit line 17.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#50600: [PATCH] Wrap translit program
  2021-09-15  8:55 bug#50600: Problem with package perl-lingua-translit Evgeny Pisemsky
@ 2022-10-23 14:23 ` Evgeny Pisemsky
  2022-12-10 19:48   ` Liliana Marie Prikler
  2022-12-10  6:55 ` bug#50600: Reminder Evgeny Pisemsky
  1 sibling, 1 reply; 4+ messages in thread
From: Evgeny Pisemsky @ 2022-10-23 14:23 UTC (permalink / raw)
  To: 50600

[-- Attachment #1: Type: text/plain, Size: 161 bytes --]

Here is a patch to fix the issue.

I added bash-minimal to inputs because guix lint said so:

> "bash-minimal" should be in 'inputs' when 'wrap-program' is used

[-- Attachment #2: 0001-Wrap-translit-program.patch --]
[-- Type: text/x-patch, Size: 2097 bytes --]

From 0f908098afd15a608e1254e58d472631dfdf400e Mon Sep 17 00:00:00 2001
From: Evgeny Pisemsky <evgeny@pisemsky.com>
Date: Sun, 23 Oct 2022 17:15:34 +0300
Subject: [PATCH] Wrap translit program

---
 gnu/packages/perl.scm | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index b6c33b2a36..69955f6408 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -32,6 +32,7 @@
 ;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
 ;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -6248,9 +6249,21 @@ (define-public perl-lingua-translit
         (base32
          "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
     (build-system perl-build-system)
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                  (add-after 'install 'wrap-translit
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      (let* ((out (assoc-ref outputs "out")))
+                        (wrap-program (string-append out "/bin/translit")
+                          `("PERL5LIB" ":" prefix
+                            (,(getenv "PERL5LIB")
+                             ,(string-append out "/lib/perl5/site_perl"))))
+                        #t))))))
+    (inputs (list bash-minimal))
     (home-page "https://metacpan.org/release/Lingua-Translit")
     (synopsis "Transliterate text between writing systems")
-    (description "@code{Lingua::Translit} can be used to convert text from one
+    (description
+     "@code{Lingua::Translit} can be used to convert text from one
 writing system to another, based on national or international transliteration
 tables.  Where possible a reverse transliteration is supported.")
     (license (package-license perl))))

base-commit: 1f734a6f0a7db5b0e12091a0c869c5c4810ac80e
-- 
2.38.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#50600: Reminder
  2021-09-15  8:55 bug#50600: Problem with package perl-lingua-translit Evgeny Pisemsky
  2022-10-23 14:23 ` bug#50600: [PATCH] Wrap translit program Evgeny Pisemsky
@ 2022-12-10  6:55 ` Evgeny Pisemsky
  1 sibling, 0 replies; 4+ messages in thread
From: Evgeny Pisemsky @ 2022-12-10  6:55 UTC (permalink / raw)
  To: 50600

Can someone review the patch?




^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#50600: [PATCH] Wrap translit program
  2022-10-23 14:23 ` bug#50600: [PATCH] Wrap translit program Evgeny Pisemsky
@ 2022-12-10 19:48   ` Liliana Marie Prikler
  0 siblings, 0 replies; 4+ messages in thread
From: Liliana Marie Prikler @ 2022-12-10 19:48 UTC (permalink / raw)
  To: Evgeny Pisemsky, 50600-done

Am Sonntag, dem 23.10.2022 um 17:23 +0300 schrieb Evgeny Pisemsky:
> Here is a patch to fix the issue.
> 
> I added bash-minimal to inputs because guix lint said so:
> 
> > "bash-minimal" should be in 'inputs' when 'wrap-program' is used
I cleaned up the noise introduced through guix style, converted
arguments to G-Expressions and pushed with a minimum-effort ChangeLog.

Cheers




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-12-10 19:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-15  8:55 bug#50600: Problem with package perl-lingua-translit Evgeny Pisemsky
2022-10-23 14:23 ` bug#50600: [PATCH] Wrap translit program Evgeny Pisemsky
2022-12-10 19:48   ` Liliana Marie Prikler
2022-12-10  6:55 ` bug#50600: Reminder Evgeny Pisemsky

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.