guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: info-reader: Inherit from texinfo-7.


From: guix-commits
Subject: 03/03: gnu: info-reader: Inherit from texinfo-7.
Date: Wed, 20 Nov 2024 11:37:26 -0500 (EST)

pelzflorian pushed a commit to branch master
in repository guix.

commit a6b497441110b5a0b6223e122380a4954fde1ed9
Author: Florian Pelz <pelzflorian@pelzflorian.de>
AuthorDate: Sun Nov 3 15:14:51 2024 +0100

    gnu: info-reader: Inherit from texinfo-7.
    
    Otherwise `LC_ALL=pt_BR.utf8 info` crashes.
    
    * gnu/packages/texinfo.scm (info-reader): Inherit from texinfo-7.
    
    Change-Id: I9eb5873fbc115e0c45f96a16aa05dbca76b92c57
---
 gnu/packages/texinfo.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm
index 81afdaf7a7..cd474bb566 100644
--- a/gnu/packages/texinfo.scm
+++ b/gnu/packages/texinfo.scm
@@ -194,7 +194,9 @@ is on expressing the content semantically, avoiding 
physical markup commands.")
 (define-public info-reader
   ;; The idea of this package is to have the standalone Info reader without
   ;; the dependency on Perl that 'makeinfo' drags.
-  (package/inherit texinfo
+  ;; Texinfo version must be at least 7.0, which fixed crashes in a pt_BR
+  ;; locale; see <https://git.savannah.gnu.org/cgit/texinfo.git/plain/NEWS>.
+  (package/inherit texinfo-7
     (name "info-reader")
     (arguments
      `(,@(substitute-keyword-arguments (package-arguments texinfo)



reply via email to

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