texinfo: Update to version 7.1.1

Message ID 20240913162520.2352467-5-adolf.belka@ipfire.org
State Staged
Commit bfa582d8d5f2bd9a50a16160c3ccd63205754b62
Headers
Series texinfo: Update to version 7.1.1 |

Commit Message

Adolf Belka Sept. 13, 2024, 4:25 p.m. UTC
  - Update from version 7.1 to 7.1.1
- Update of rootfile not required
- Changelog
    7.1.1
	* texi2any
	  . fix potential crash when @include is used inside a table
	  . do not complain about presence of @anchor inside @item in a table
	  . C source files that are generated from *.xs files are no no longer
	    distributed, so xsubpp from Perl is needed to build XS modules.
	  . fix bug that led to memory alignment error on SPARC
	  . performance improvement and fixes for MinGW
	  . test failures due to floating point rounding error fixed (observed
	    on IBM POWER9 processor)
	* info
	  . crash when setting style to invalid value fixed
	  . potential call of memcpy with null argument fixed

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/texinfo | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
  

Patch

diff --git a/lfs/texinfo b/lfs/texinfo
index 4210ea89e..58cd05ba8 100644
--- a/lfs/texinfo
+++ b/lfs/texinfo
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@ 
 
 include Config
 
-VER        = 7.1
+VER        = 7.1.1
 
 THISAPP    = texinfo-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -47,7 +47,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 4385ca6250daeaa4f6bfedd9ab41f25993613031bcb8da55360365701213f4f3cf786d958749c59dc1c9dda328eca42f028aa051a7062313142aa92f55a96ecd
+$(DL_FILE)_BLAKE2 = 64dbd315e65d5b7cb0bb06c918e9924bb15a25a4bb26322db10b7ee98e9e6626b62592f8edd0ff016256f4a84837dabacb5278c3826e34fa3e080a5e8c0fb626
 
 install : $(TARGET)
 
@@ -77,7 +77,9 @@  $(subst %,%_BLAKE2,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && ./configure --prefix=$(PREFIX) --disable-nls
+	cd $(DIR_APP) && ./configure \
+				--prefix=$(PREFIX) \
+				--disable-nls
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)