mtr: Update to version 0.96

Message ID 20250912200814.3489573-4-adolf.belka@ipfire.org
State New
Headers
Series mtr: Update to version 0.96 |

Commit Message

Adolf Belka 12 Sep 2025, 8:08 p.m. UTC
- Update from version 0.95 to 0.96
- Update of rootfile not required
- Changelog
    0.96
         Merge branch 'traviscross:master' into master
         Change UDP and ICMP sockets binding to accept a source IP from the -a CLI option
         Adjust MIN_PORT to match other implementations
         Handle EHOSTDOWN and refine error handling better granularity
         add braille graph support with --displaymode 3
         fix legend for braille display
         fix documentation/comment for ENABLE_BRAILLE
         use addrs for static host ordering in curses
         add --max-display-paths option
         Add a compact mode in curses
         mtr.8.in: spell --mark argument type properly
         Fix tiny typo in target
         Implement ASN lookups in well-known nat64 prefix
         net: implement addrcmp for AF_UNSPEC
         Initialize lines to empty string in split mode
         Add error code ETIMEOUT(110) handle logic
         fixed the sizes passed into snprintf
         Allow signed integers in the utils function
         Split the strtonum function into two parts to create a better structure
         Remove redundant code
         Fix https://github.com/traviscross/mtr/issues/475
         xml report: remove leading spaces
         Set UTF-8 encoding for XML reports
         Update Cygwin ICMP service thread for asynchronous pipes
         Prevent icmp_socket leak on error
         Markus pointed out useless statement.
         merged
         Merge branch 'master' of github.com:traviscross/mtr
         Fixed typo noted by @szczot3k
         Changed how conflicitng first/max TTL works.
         Increased max probes
         Added protection against use of MTR_PACKET under special circumstances
         Merge branch 'master' of github.com:traviscross/mtr
         Added Arad Cohen to NEWS
         Set SO_BINDTODEVICE for -I
         Check if SO_BINDTODEVICE is defined
         ui: make interactive and non-interactive exit code the same
         Add WSL method to Windows Install
         Add Ubuntu as specific distribution
         Update section title
         Github actions added to perform lint and compile
         configure.ac: fix broken cap check
         Add option to use custom ipinfo provider
         Fix Capability Management, Retain CAP_NET_ADMIN
         Fix interface binding by retaining CAP_NET_RAW
         Linux-Only Interface, Marking, and IP Unit Tests
         Annotate `set_privileged_socket_opt` with UNUSED
         Drop capabilities when `setsockopt` errors
         Fix flake8 linting
         Change B101->S101 to reflect flake8
         Use a uint32 for the type of a Linux mark
         Use Packet Marking for IP Address Selection
         Support Hexadecimal Arguments for Packet Marking
         ipv6 udp checksums like ipv4 but with ipv6 pseudoheader
         fix typo
         Merge branch 'master' into compact-layout
         Add help info for option -E
         Brought an unlikely privilege escalation scenario to my attention.

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

Patch

diff --git a/lfs/mtr b/lfs/mtr
index dd190a90f..a80df177d 100644
--- a/lfs/mtr
+++ b/lfs/mtr
@@ -1,7 +1,7 @@ 
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2020  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2025  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,7 +26,7 @@  include Config
 
 SUMMARY    = Ping and Traceroute Network Diagnostic Tool
 
-VER        = 0.95
+VER        = 0.96
 
 THISAPP    = mtr-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -34,7 +34,7 @@  DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = mtr
-PAK_VER    = 6
+PAK_VER    = 7
 
 DEPS       =
 
@@ -48,7 +48,7 @@  objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_BLAKE2 = 3c972675b97945b96562802c5d0f10de963160682c93c0ea2991b72eca33d136d18948c5e746ca3dfb280ebc9c3ab154e7774f8409ed4e5f7470a8feb128e71b
+$(DL_FILE)_BLAKE2 = c7dff18b6f6e48a648783d719a6cedd14b141fe2013b75031f3ee830e8c4fb9c93639259c860047c8108c21519df30740f7515256ed08552f7697a42e938257b
 
 install : $(TARGET)
 
@@ -83,7 +83,8 @@  $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
 	$(UPDATE_AUTOMAKE)
 	cd $(DIR_APP) && ./bootstrap.sh
-	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)