minicom: Update to version 2.11

Message ID 20260227181838.3716442-8-adolf.belka@ipfire.org
State New
Headers
Series minicom: Update to version 2.11 |

Commit Message

Adolf Belka 27 Feb 2026, 6:18 p.m. UTC
- Update from version 2.9 to 2.11
- No change to rootfile
- Changelog
    2.11
 - fix baudrate setting on Linux when compiled against glibc >= 2.42
 - Support multi-column character for window drawing
 - Add 1843200 to the baud rate list
 - Allow any baud rate to be set
 - Updates translations: ka, fr, ro, pl, ko, de, ja, sv
    2.10
 - Add third locking method if file-based lock does not work.
   https://salsa.debian.org/minicom-team/minicom/-/issues/9
 - Make colors enabled the default.
 - ESC-] (OSC) sequences are recognized and discarded.
 - Code cleanups.
 - Updates translations: nb

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
---
 lfs/minicom | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)
  

Patch

diff --git a/lfs/minicom b/lfs/minicom
index c2d379b13..b644fa4a0 100644
--- a/lfs/minicom
+++ b/lfs/minicom
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2023  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2026  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        #
@@ -26,15 +26,15 @@  include Config
 
 SUMMARY    = A Terminal Program
 
-VER        = 2.9
+VER        = 2.11
 
 THISAPP    = minicom-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
+DL_FILE    = $(THISAPP).tar.bz2
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = minicom
-PAK_VER    = 3
+PAK_VER    = 4
 
 DEPS       =
 
@@ -50,7 +50,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 4c17f235d770ff9b4719c0ce9d3dfdb01603986d08cec245b1bfba5addbea597032bb06fc73c585886e035915dec990f37e9690b58d0a80a3e6faf8675485f96
+$(DL_FILE)_BLAKE2 = f86d9efc7512a9322dd40b767513a424cf692283690d56a344275450d520df3022312320405177daeb80fa22669ebf55ea5b0476aee99d9ff1fd7eb4d5520e98
 
 install : $(TARGET)
 
@@ -82,11 +82,10 @@  $(subst %,%_BLAKE2,$(objects)) :
 
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@$(PREBUILD)
-	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
 	$(UPDATE_AUTOMAKE)
-	cd $(DIR_APP) && \
-		./configure \
-			--prefix=/usr
+	cd $(DIR_APP) && ./configure \
+				--prefix=/usr
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install
 	@rm -rf $(DIR_APP)